Monday, March 25, 2013

Top ten software quotes

My top ten favorite software quotes


First a few Anonymous quotes

“ It’s not a bug – it’s an undocumented feature. ”

“ The best thing about a boolean is even if you are wrong, you are only off by a bit. ”

“ The best method for accelerating a computer is the one that boosts it by 9.8 m/s2. ”

“ In order to understand recursion, one must first understand recursion. ”

Michael Sinz
“ Programming is like sex. One mistake and you have to support it for the rest of your life. ”

John Johnson
“ First, solve the problem. Then, write the code. ”

 Andrew Hunt and David Thomas
“ It's not at all important to get it right the first time. It's vitally important to get it right the last time. ”

Fred Brooks
“ Adding manpower to a late software project makes it later ”

Tom Cargill
“ The first 90% of the code accounts for the first 90% of the development time. The remaining 10% of the code accounts for the other 90% of the development time. ”

Cory Doctorow
“ Engineers are all basically high-functioning autistics who have no idea how normal people do stuff. ”


John F. Woods
“ Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live. ”










Friday, March 22, 2013

16 Gigabit Transformer USB flash memory

I know that this post is going to re-validate me being a total nerd and geek but,
look what I received in the mail this week.

A 16 Gigabit Transformer USB flash memory drive.

COOL !!!


You can get it on eBay for about 9$ http://www.ebay.com/itm/Cute-16-GB-Black-Transformers-USB2-0-Flash-Memory-Stick-Pen-Drive-Free-Shipping-/390563912811

Wednesday, March 20, 2013

Install Windows 8 From USB Drive

I bravely decided that its time to upgrade to the new Windows 8.
For me, To actually go ahead with the upgrade, one of two things need to happen, a total system crash that cant recover or a period of two weeks of taking inventory of everything on my desktop and making a total backup of everything.

This time, I didn't wait for the crash.

Having almost everything set, after downloading the ISO from Microsoft, I wanted to burn the image to a DVD only to realize that the DVD decided to die and I threw the spare out months ago.

Since I'm not big on waiting to get a new one (I will Monday) I looked for a more immediate solution, Installing Windows 8 from a USB thumb drive.

There are two ways to get this accomplished as explained below:

Windows 7 USB / DVD download tool

The windows 7 USB / DVD download tool will copy the ISO file to your USB drive and make the USB drive bootable. It seems to be the most common and easiest way to create the bootable USB drive for Windows 7 or 8 installation.

Download the Windows 7 USB/DVD download tool from Microsoft here:  
http://images2.store.microsoft.com/prod/clustera/framework/w7udt/1.0/en-us/Windows7-USB-DVD-tool.exe

You can also read about it here:

Install the tool, its a fairly simple next, install, finish procedure.
Once installed, run the program. An icon should be placed on your desktop.
You will be asked to select the windows installation ISO file.

Next Choose the USB device option.

Select The correct USB  device and click on Begin copying.

The Tool will format your USB drive and set it up as a bootable device.

This was the simple Fool Proof way.

Create a bootable USB Drive

Some people prefer not to install unneeded programs or like creating things on their own.
lucky for them, its not that hard to create a bootable USB drive.

Connect your USB drive to the computer.
Open a command prompt with administrator rights.  
Start->All programs->Accessories->right click Command Prompt and select Run as administrator.

Now run "diskpart" from the command line to open the Microsoft DiskPart application.
Next type "list disk" into the application like in the above screen to obtain information about each disk in the computer. Note that for me Disk 1 was the Flash drive I inserted into the USB port.


We need to select the flash drive by entering "Select disk 1" and then remove any existing partition or volume formatting from the drive by clean the flash drive with the "clean" command.



Now we need to create a new partition on the drive we do this by entering "create partition primary"

Next we choose our new partition and activate it by entering "select partition 1" and then entering the "activate" command.

Now we can format the drive with a NTFS file system using "format fs=ntfs"
You need to be patient since this might take a few minutes.

Once we're done formatting our drive we can assign it a letter so it will be reachable on our system with the "assign" command.
At this point, were done with the DiskPart util and can close the util with the "exit" command.






Basically were done with the USB drive itself and now need to add the Windows 8 portion.
If you have Windows 8 on a CD, all you need to do is run "bootsect.exe /nt60 f:" from the boot directory in the CD, where f: of course stands for the USB drives assigned letter.
Since I had Windows 8 as an ISO file I had to unpack the directory first.


The final stage to get the USB drive ready is copy the contents of the CD to the USB drive or unpack the Windows 8 ISO file onto the Drive and restart your computer.

Don't forget to set your BIOS to support Boot from USB.

Good Luck !