Welcome to www.taxkingsandqueens.com

Writers Block: What Causes it and How to Overcome it (writers block) If you are a writer then you know what I am talking about. You have everything ready, a drink, a snack, the topic, and even reference material. You sit down ready to start typing or writing, which ever you prefer, and it happens. You are stuck, your mind is blank and you have no idea how to fill that blank canvas in front of you. It is a writer’s worse nightmare come true. You have writers block. First you need to figure out what is causing it. There are a multitude of things that can be causing it. Stress is one of the biggest factors that cause writers block. Whether it is stress caused by personal matters, deadline dates, or fearing your article won’t be good enough it can block the words from flowing as easily as the should. Sleep deprivation doesn’t let your mind function to its full potential. Getting a good night’s sleep is imperative to having a clear mind and being able to focus. The project itself could be causing the writers block. A topic you are not interested in can easily turn your normally resourceful mind into jelly. The research on that topic turns into a grueling task. Then trying to put the words on paper that make sense and will peak someone’s interest seem impossible. If a topic has personal meaning to you it can be hard to write objectively about it. A simple informative topic can easily become a personal rant session. Writing because you have to, not because you want to makes it hard to concentrate and focus. Now that the basic causes have been covered, you need to know how to fix it. Writers block is not permanent. Identifying the reason is the hard part. Relax. The world is not going to end if the article isn’t as perfect as you feel it should be. Just because you don’t think it is perfect doesn’t mean someone else won’t. Go and read some of your previous writings. Even if what you read has nothing to do with your current topic, it can be inspirational to you. Don’t burn yourself out on a topic. Try to split up the writing process. Research and brainstorm one day and write the next. This will give you time to think about your topic and figure out the angle you want to write. Talk your way through it. Call a friend or colleague and chat. Tell them the topic you are working on and get their opinions or ideas. They may be able to offer fresh insight and ideas. Work on multiple projects at one time if you can. Bouncing back and forth between a few topics can keep your mind hopping and will keep boredom at bay. Take a break from you current project and write about something that motivates you. Chances are once you get those creative juices flowing they will continue into your next project. Make yourself a schedule and stick to it. If your schedule says 500 words by noon, write your 500 words and stop. Even if you don’t have a project going, by writing daily you will stick to your schedule and keeps your imagination going. If you write from home, which most of freelance writers do, make a quiet time and treat it like a real job. If you have young children at home, write while they nap. Let your answering machine be your secretary. If it is important they will leave a message. Most importantly remember why you started writing in the first place. Even the best of the best have gotten writers block at one time or another.

Software copyright Software Copyright Difficult to Enforce For those of you who love computer games, you probably know more about software copyright than you ever thought you'd want to know-especially if you have or have ever owned multiple computers. Most new games not only come with special copyrights but also built in security features that are designed to enforce those copyrights. Some have even gone so far as selling you the right to 'use' the material you are purchasing rather than providing you with actual ownership of the software to which they own the software copyright. That bothered me a bit at first, but I've come to understand it's another way of protecting them and their rights as well as controlling or limiting how you use the software they provide. Software copyright is actually quite confusing and hotly debated. Many stores will not accept opened software as returns because the software companies won't reimburse them for the product and they are left holding the bag. It doesn't sound like much but when you think of literally thousands of consumers attempting to return opened software because they didn't like or worse, they only needed to download and install it for it to actually run. Companies that produce computer software have become savvy to the ways of the modern consumer. Those companies that produce computer games especially require that the disk actually be in your player in order for the game to operate properly. This enforced the software copyright to the extent that two people can't reasonably share ownership of the same game, as they both need an actual disk in order to operate the games. But for every solution there is a hacker or budding programmer that creates a new problem for software makers and holders of software copyright to face. One of the latest problems is the virtual CD. The long and short of this is that the computer is tricked into 'seeing' the CD where it should be and carries out the game as though it were. Another important thing to note about software copyright is that there are many programs available that mimic some of the more notable applications for no fee. These are often referred to as open source software and often have excellent if not superior quality to similar programs that are available for fees. One thing I've noticed is that I will often find free open source software, download it, love it and a few months later I will find a more polished version of the same software, by the same company available with a few more bells and whistles for a fee. The new improved software has a software copyright and is not free to consumers but it is also a much better version than what I currently have. It's a great way for new software developers to make names for themselves and get volunteers for the testing process of their development phase. A software copyright offers protection and recognition to the owner of the software. The problem with protecting software is that it is impossible to police properly. That would require walking into every home on the planet and checking each computer to make sure there are no duplicate copies extra copies, illegal copies, etc. Plus, who keeps the actual boxes from all their software? I certainly do not. I could never prove that I was honoring the software copyright if the packaging or receipts were the only way I have of doing so. Most people in the world today honestly want to do the right thing. Software is one of the most expensive purchases people will often make for their home computers, it only makes sense to buy actual copies that have an actual software copyright in order to protect your investment not only in your software but also in your computer.

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.