List of Keyboard Shortcuts in Windows XP
General keyboard shortcuts
• CTRL+C (Copy)
• CTRL+X (Cut)
• CTRL+V (Paste)
• CTRL+Z (Undo)
• DELETE (Delete)
• SHIFT+DELETE (Delete the selected item permanently without placing the item in the Recycle Bin)
• CTRL while dragging an item (Copy the selected item)
• CTRL+SHIFT while dragging an item (Create a shortcut to the selected item)
• F2 key (Rename the selected item)
• CTRL+RIGHT ARROW (Move the insertion point to the beginning of the next word)
• CTRL+LEFT ARROW (Move the insertion point to the beginning of the previous word)
• CTRL+DOWN ARROW (Move the insertion point to the beginning of the next paragraph)
• CTRL+UP ARROW (Move the insertion point to the beginning of the previous paragraph)
• CTRL+SHIFT with any of the arrow keys (Highlight a block of text)
• SHIFT with any of the arrow keys (Select more than one item in a window or on the desktop, or select text in a document)
• CTRL+A (Select all)
• F3 key (Search for a file or a folder)
Continue Reading »
Creating and Merging PDFs
PDF995 is a freeware that can create pdf files from any file that can be printed. It gets installed as a printer driver in your system. To create a pdf, just print the file using PDF995 printer driver by pressing “ctrl P” and choosing PDF995 from the drop-down list.
Ever wanted to merge two pdf files into one without paying a dollar !! Pdftk is a free command based toolkit that can do that and much more with pdf files. Pdftk allows you to manipulate PDF easily and freely. It does not require Acrobat, and it runs on Windows, Linux, Mac OS X, FreeBSD and Solaris. It can Merge, Split, Decrypt, Encrypt, Apply a Background Watermark, Update PDF Metadata, Burst a PDF Document into Single Pages and much more.
Configuring PHP and MySql on IIS (For Windows XP)
I was once asked to develop a web based database project which I had to do either using PHP or Java and I was not familiar with either of them. I searched on Google and felt that PHP is easy to learn and use. So I started learning PHP using the tutorials available online and building my project on the same time. Today I feel PHP has everything that one may need for any kind of web application which may require a back end database.
Installing PHP can be a mess so here are the instructions are for the following versions: PHP 5.2.3, MySql 5.0 and IIS 6.0
Steps may change a little with other versions.
Installing PHP
Step 1: Create a folder on C: called “PHP” and unzip the files from the PHP download into that folder.
Step 2: Open IIS6 Manager Right Click -> Default Website -> Properties -> Select Home Directory -> Select Configuration. On Application configuration check to see if .php is in list. If not click “Add”. For executable browse to “c:\php” folder and select “php5isapi.dll”. Click “OK” and then “OK” again.
Step 3: In the “C:\PHP” folder copy the file “php.ini-recommended” to your C:\WINDOWS folder. Rename this file to “php.ini”
Step 4: Create a test file in the root of your web folder called “phpinfo.php” and insert the code below:
<php
phpinfo();
?>
Step 5: Click Start –> Run and type IISRESET and press enter.
Step 6: Open Internet Explorer and type “http://127.0.0.1/phpinfo.php” and you should see it give you information about the PHP version.
Continue Reading »





