6/17/2011

Watch Hidden Star Wars in Windows XP, Vista and 7


Everyone of us has watched Star Wars either on television, computers or in theaters. It is the same movie with aliens fighting each other for galaxies and such stuff. There is nothing new in it. But wait, have you watched an ASCII( American Standard Code for Information Interchange) version of Star Wars and that too in Windows using telnet. A word mostly linked with computer wizards. Well if you have not, then you must do it now!

There is a complete copy of Star Wars done entirely in ASCII characters in the
 Windows operating system. The only thing required to watch it is an internet connection; speed does not matter.




To watch it on Windows XP,
1.       Go to Start, Run.
2.       Now type "telnet towel.blinkenlights.nl" without the quotes and press Enter.

On Windows 7 and Windows Vista
1.       Go to Start, Run.
2.       Now type cmd.
3.       Now in Command Prompt, type telnet and press Enter.
4.       When telnet is enabled, type " o" without quotes and press enter.
5.       Now type "towel.blinkenlights.nl" without the quotes and press Enter.

A command prompt window like one in the image will open with the movie being played in it. See the movie yourself. Did you enjoy watching this new version of Star Wars. Well, I did and know it for sure that you would have too.

Matrix Falling Code Effect - Notepad CMD (.BAT) Tricks


Inspired by the movie Matrix, this falling code trick is extremely popular on social networking websites. Copy and paste the code given below in Notepad and save the file as "Matrix.bat" or *.bat. 


@echo off
color 02
:tricks
echo %random%%random%%random%%random%%random%%random%%random%%random%
echo %random%%random%%random%%random%%random%%random%%random%%random%
echo %random%%random%%random%%random%%random%%random%%random%%random%
goto tricks


Matrix Falling Code Effect - Notepad Trick

Upon running the bat file, you will see the "Matrix falling code" effect.

Make a Personal Diary(Log) with Notepad (Easter Eggs)



Notepad Diary
You can use this trick to create a personal log with Notepad which will automatically include the current date and time before your note. To do so, open Notepad and type .LOG in capital letters and press Enter. Save the file. Now, every time you open this file, notepad will automatically insert the current time and date before the note. Just enter your note and save the file each time after making an entry.

All these Notepad tricks are totally harmless and would not harm your PC in any way.  To close any of the VBS trick given, open task manager and close the wscript.exe process. These tricks work on
 Windows 7, Windows Vista and Windows XP.

Create a Harmless Funny Virus with Notepad-Continuously eject CD/DVD drives


This VBS trick will create a code which will continuously eject all your connected Optical drives. If you put them back in, it will pop them out again. Copy this code and paste it in Notepad as Virus.vbs or *.vbs.


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

Double click to open this file and you will be impressed by this awesome trick.
To undo this just open task manager, in the processes tab select wscript.exe right click on it and click on end process.