Welcome to www.minisinbox.com

Software copyright statement A Software Copyright Statement Protects Current and Future Works If you have a site that is dedicated to the sharing and distribution of open source software it is a great idea to have a software copyright statement that explains the limits of use for your software as well as the limits of your responsibility for those uses. I also recommend getting an attorney to look over the statement before posting it just to be sure there are no legal issues that you may be unaware of. A software copyright statement doesn't have to be a 10 page booklet on the law or the protections that copyright offers, it should be a simple short paragraph stating the basics and hopefully covering your rear from litigation and/or responsibility should someone use the software you are allowing them to use for something insanely stupid or frighteningly criminal while establishing your ownership of the material and expectations of those you are allowing to use your creation. This for some is a no brainer because they've done it before and know the ropes. There are new software developers born and made each and every day and this type of software copyright statement may serve to save them a little grief of their own some day. If you are being kind enough to freely share the software you created with others, you'd like to think that they would at least return the favor of using it within the letter of the law or the manner in which it was intended. This, however, is rarely the case so protecting yourself, your copyright, and your future interests by posting a software copyright statement on your website is really the best way to go in a situation such as this. Trust me I'm not trying to talk anyone out of sharing his or her software with the world. I rather like open source software and admit to using it freely (no pun intended). I love saving money almost as much as I love playing around with new technology. Software allows me to do that and find likes and dislikes about all kinds of programs. Issuing a software copyright statement is one way of protecting your investment of time, effort, energy, and sheer brilliance in the making and design of your technological masterpiece. Hopefully that flattery will keep you going a bit longer at any rate. It is important to know that a software copyright statement is only part of the process required to protect your software but for the most part poses a significant deterrent to those that would abuse your copyright and/or your kindness in allowing the distribution of your software. Even if you are charging people for the use of your software (we are a nation of capitalists after all) you still need to protect the labor you have put into making not only the software but the distribution method, the website, the payment method and the thousands of other things that are part and parcel of the business model for your software distribution. Your software copyright statement is a very small protection for your software don't expect it to be the brunt of your protection. Most of the software developers, coders, and programmers (and any other name you wish to call them) that I know aren't as concerned nearly as much about associating their name with the products they create as they are with protecting future potential income from both the products they are currently designing and the future, improvements they will make to the software and the much improved finished product that comes later. By protecting all your work with a software copyright statement you are not only protecting current works but future works as well.

Music copyright infringement How Does Music Copyright Infringement Affect Me? Music copyright infringement happens all around us every day, by both well meaning people downloading music from their favorite social networking site to the guy who’s reselling MP3s. To be certain, most people who commit music copyright infringement don’t realize what’s going on, and are in turn doing something very illegal and prosecutable in the United States. Copyright Infringement, as defined by Wikipedia.org states: “Copyright infringement (or copyright violation) is the unauthorized use of material that is protected by intellectual property rights law particularly the copyright in a manner that violates one of the original copyright owner's exclusive rights, such as the right to reproduce or perform the copyrighted work, or to make derivative works that build upon it. The slang term bootleg (derived from the use of the shank of a boot for the purposes of smuggling) is often used to describe illicitly copied material.” We’ve all heard of ‘bootleg’ recordings – usually audio recordings taken from concerts and sold on home made cassettes or CDs and distributed (sometimes out of the trunk of a car) to anyone that will buy. Bootleg recordings have changed, however, as music copyright infringement has branched into video recordings. Music copyright infringement has exploded with the advent of the internet, and now people from all over the world are sharing every type of imaginable file – from eBooks to audio to music – and small label artists began feeling the pinch years ago. However, many new and older artists are beginning to see the beauty of the internet, and are offering their music for sale track-by-track on iTunes and other MP3 sales websites, as well as through their own band websites and MySpace pages. The internet has exploded in the possibilities it’s given up and coming musicians to become visible, while at the same time drastically increasing the number of music copyright infringement cases – some of which were against innocent people who just weren’t informed. Music copyright infringement cases have helped to create organizations that protect the fair use of an item, such as a song. Organizations such as CreativeCommons.com and the Electronic Frontier Foundation help individuals to know their rights under copyright acts. While there are organizations that help you understand your rights as a purchaser of copyright use, there are organizations that want to limit the ways in which you use the products you buy. It is rumored, for example, that record distribution and production companies want to limit the ways in which you use the music you buy – they don’t want you to put it on your computer or make a Mix Tape or CD from it – for fear of ‘sharing.’ It seems to me, however, when music publishers and distribution companies limit uses like this, they’re opening up a tidal wave of music copyright infringement cases. By limiting the use of purchased material, the companies are alienating their client base and pushing all their sales away from physical products and toward electronic ones – which are much harder to control. A way in which these companies tried to limit the uses was by creating a DRM program, which severely limited the where a CD could be played (on one computer, for instance). And, in one drastic measure, Sony placed a DRM program on all their CDs in the Winter of 2005, and severely crippled several networks when their ‘program’ was actually malware that seriously crippled network security. As you can see, music copyright infringement is something that is currently being fought between end users and music production and distribution companies. In this new century, we must find a way to retain copyright, and allow the customers to use the products they buy in a meaningful way, or otherwise the market will shift and the industry as we know it will be abandoned.

Web Hosting - Databases, What Are They and Do You Need One? 'Database' is one of the most commonly used terms that one encounters in web site design. Yet, what they really are and whether they're essential is often not clear to novices. A database is a collection of organized data, stored in files that have a specific structure. It's that organization and structure that allows for easy and rapid storage and retrieval. The need for a database generally only arises when you have a certain amount of information and that information needs to have some structure. If you have a half-dozen names and addresses to store, a database is usually overkill. If you have a blob of data with no relationships between any of the items in that blob, maintaining a database is usually more trouble than it's worth. Maintain a database? Yes, like other complex systems a database, to be effective, needs to be designed properly at the outset then kept 'tuned' for good performance. The alternative is to gradually allow the database to become more and more disorganized. That leads to difficulty in use, poor speed of retrieval and more frequent failures. With MySQL, Access or MS SQL Server, the three most common choices of database product for web sites today, setting up a database is relatively simple. Even those with limited technical skill can get one up and running just by following some simple instructions. But some thought should be given to how you want the information organized, and to maintaining the system during its lifetime. Suppose you have a set of names, addresses, email addresses, products purchased, date purchased and amount. If you have only a few dozen records it matters very little how these pieces are arranged and related. A database usually isn't even warranted in this scenario. Once you have several thousand or more records, it matters a lot. Speed, the ease of expanding the set of attributes (like adding, say, product category), and other issues come into play. Even those with little technical expertise, but a willingness to exert logical thought and invest some time, can build a very robust database. Think about how you would organize a set of data (called 'tables'). Should Name, Address, and Product be in the same table? Or should the personal information be stored in one table and any product information (product, price, ...) in another? Some experimentation may be needed to get it right, but the choices have an impact on how easy the tables are to maintain. It also affects the speed with which programs can fetch old data and store the new. Having a database also introduces new maintenance issues for the server administrator, since backups usually need to be done differently. Recovering a failed database is usually more complicated than simply re-copying files from yesterday. Ask your hosting company what tools and skills they have for dealing with any database system you consider. It's true that introducing a database creates more complexity and the need for additional thought and administrative effort. At a certain level, professional expertise will be needed. But clearly the advantages outweigh the costs in many cases. Companies large and small eventually use databases to store and organize data. At some point, you may be fortunate enough to be one of them.