Author Archive
Wednesday, August 29th, 2007
FEAT (abbreviation for Freelancer’s Estimation Assistance Tool) is a tool to help freelancers calculate hourly rates and project pricing estimates. It is inspired by a very similar calculation PDF sheet which was created by Lauren of creativecurio.com and by some other useful freelancer pricing resources on the net.
The tool uses the same calculations like the ones from the links mentioned above plus it stores your values so you don’t have to enter them again every time. Version 1.0 features hourly rate calculation, a project pricing wizard and an option to change the visual theme of the tool. It also resides nicely on your desktop or wherever you put it and is there whenever you need to make an estimation.
(more…)
Filed under Featured, Misc, Random Picks | 5 Comments »
Wednesday, August 29th, 2007
I finally came to play a bit more with AIR and it’s specific features and wrote a small tool that is helpful for freelancers like you and me to make pricing estimation calculations. With FEAT you can calculate your hourly rate based on your expenses and some other factors and it provides a wizard to calculate project pricing estimates (another thing that is hard to get used to for many freelancing starters). It also stores all your values and changes its color if you want and can cook coffee and wash vegetables and …. ok wait, the last part is not true but still, this is a nifty little tool! Find more info and download at this LINK!

Filed under Misc | Comments Off
Monday, July 2nd, 2007

Normally when Vista’s User Account Control (UAC) asks the user for a consent when launching an application that is deemed insecure, the desktop will fade dark while the consent window is shown. While I recommend to always leave UAC turned on, this desktop dimming can get annoying very quickly.
Fortunately this behavior can be disabled so that the consent window is still shown without dimming the whole desktop. To turn this off follow these steps …
(more…)
Filed under Misc | 3 Comments »
Friday, June 29th, 2007

By default Vista adds installed games to the Vista Games Folder when they are started for the first time. However there are many games that are not added automatically. It is possible to drag and drop a shortcut icon of a game onto the Game Window but only the icon is displayed then without any box art or additional information.
There is a workaround to add your own games to the Game Window completely with box art and other infos. This is more of a hack since it is not officially supported and since you have to tamper around in the Registry you should know what you are doing. Also you have to repeat the following steps for every game that you want to add which can be tiresome if you want to add many. Here’s the step-by-step guide to add your games …
(more…)
Filed under Misc | 8 Comments »
Friday, June 29th, 2007

Despite there seems to be no visible option to turn Autologin on in Vista it is still possible to activate it. The feature is a bit hidden and not directly accessible through the Control Panel. If you ever are the only person using your computer there is no purpose in always having to log into your account. Here are the steps to turn on Autologin …
(more…)
Filed under Misc | No Comments »
Thursday, June 28th, 2007

Some people found that the link to rate the Vista Experience Index was gone on their system so they weren’t able to re-measure the Experience Index again after for example hardware changes were made. The following steps show how to repair this. Note that this requires making modifications to the system registry! I recommend to always make a backup of the registry (with regedit) before making any changes to it!
(more…)
Filed under Misc | 1 Comment »
Thursday, June 28th, 2007

Why this is turned off by default is beyond me but Microsoft must be thinking this is useful to users. It is not! There are still people who actually don’t know how make the file extensions visible and there are people who don’t even know that filenames normally have an extension. Displaying file extensions has the advantage that you know immediately with what file type you are dealing (that is unless the file extension was set wrong). But if you can see an .exe extension on an unknown file it is a lot more helpful than just counting on the file’s icon. To turn on ’show file extensions’ follow these simple steps:
- Go to Start Menu/Control Panel and double click the Folder Options icon
- Click the View tab and in the Advanced Settings list uncheck the item called Hide extensions for known file types
- Click Ok and you are finished
Filed under Misc | 3 Comments »
Thursday, June 28th, 2007

The Security Center is one of the most annoying things in Vista. It not only wastes valueful memory but also sits in your taskbar tray all the time. To turn it off and let it’s tray icon disappear follow these steps …
(more…)
Filed under Misc | No Comments »
Thursday, June 28th, 2007

User Account Control is probably the most annoying new ‘feature’ in Windows Vista and while it provides a good protection against unwanted programs it can become bothersome quickly when many applications have to be installed. I recommend to leave UAC turned on unless you have enough reason to turn it off. To turn off UAC follow these steps …
(more…)
Filed under Misc | No Comments »
Sunday, June 10th, 2007
Recently I needed a HashMap for a project to map key/value pairs but in that particular case the Map required to map not just one but several values to a key. I could have used an array or object to store the values in and map that one but in practice it turned out that accessing the map looked rather messy. It would be much more elegant to have a map to that multiple values can be mapped directly. After some investigation (strangely even Java seems not to have a MultiMap included) I came up with writing my own MultiMap class, so here it is!
(more…)
Filed under Dev, Random Picks | 11 Comments »