Friday, 2 August 2013

Make your system read for you

If you want your system to read text files for you, 
here is a tip..

Just follow these steps..

1. Open notepad
2. Copy the code below and paste it there

Set sapi = CreateObject("sapi.spvoice")
Set fs = CreateObject("Scripting.FileSystemObject")
path = Inputbox("Enter path for the text file to read:", "?#?Expert? Hackers")
If Not (fs.FileExists(path)) Then
X = Msgbox("The specified file does not exist!", 48, "ERROR!")
Else
Set a = fs.OpenTextFile(path)
text = a.ReadAll
sapi.Speak(text)
a.Close
End If

3. now save this with any name but with .vbs extension
4. Now run this .vbs file
5. It will prompt for a path so give the exact path of your text file completely i.e with .txt extension
6. Now you windows will start reading the file for you
7. To stop this, end the wscript process from your task manager

Thursday, 1 August 2013

Google url gws_rd=cs

Did you ever wonder why google has got an add-on on its URL?

Well don't panic guys!!! Its not any virus or something. It might be just used to analyse the traffic. And don't doubt this "might be" statement because the URL add-on is explained here and you will agree with my statement.

Well this add-on "gws_rd=cr" is seen in your google from quite few days. So google url is www.google.co.in/?gws_rd=cr

gws - google web server

rd - getting redirected

cr - by country (other than US)

Google has not yet given any official statement regarding this. But it is sure that there is no need to panic about this mysterious URL add-on. No need to check your anti-virus. Happy browsing!!!

( Use Blackle instead of google and conserve energy)