Pages

Wednesday, October 31, 2012

How to Access Web Sites When They’re Down

When sites go down, there are actually a few ways to access them through the magic of caches and archives.
 

Access Cached Pages Through Google

Google caches a large portion of the internet, and it’s easy to access those caches when a site isn’t available. All you have to do is search for a URL prepended with “cache:” like this:
 
That’ll take you to the cached version of sanzar-adnan.blogspot.com. You can replace it with any URL to get the latest version Google currently has in its cache. 

Monday, September 10, 2012

iPhone Application Development Tutorial

This is a free tutorial by the Stanford University.

download part-1

download part-2

Create Multiple Folders And Sub-Folders Easily In One Go

Using Batch (BAT) Command

The First method for creating multiple folders requires using the Batch (BAT) file. First you create a root folder in which you want your other folders to appear. Once done, create a text file in root folder and enter the md command in following way.
md <folder name>/<sub-folder name>

For example,
md Music
md Videos
md Pictures
md Documents
md C:\User\Test\Desktop\AddictiveTips\Documents\Home


Saturday, August 25, 2012

Master These Keyboard Shortcuts For Text Editing

Selecting Text

One of the most useful things you can do with text editing keyboard shortcuts is selecting bits of text. It speeds things along a great deal when writing.

Select one character at a time. – Shift+Left or Right Arrow
Select one line at a time. – Shift+Up or Down Arrow Keys
Select one word with each arrow press. – Shift+Ctrl+Left or Right Arrow
Select current paragraph. – Shift+Ctrl+Up or Down Arrow
Select text between the cursor and the end of the current line. – Shift+Home
Select text between the cursor and the end of the current line. – Shift+End
Select all text. – Ctrl+A

Saturday, June 30, 2012

Make Your Computer Speak Whatever You Type

1.Open Notepad and copy and paste the following code into it

Dim message, sapi
message=InputBox("What do you want me to say?","Speak to Me")
Set sapi=CreateObject("sapi.spvoice")
sapi.Speak message

2.Now save the notepad file with the name speak.vbs at your desktop.



3.Now double click on speak.vbs type in the box whatever you want your computer to speak for you.

Monday, April 16, 2012