E=mc^2 ( this is the height)

Formula: E=mc^2

Where,

E = Education
M = money
C = Caste

Final Sem Exam!!!!

My final semester BE exams are from 2 June–9 June! I am doing prepartion for it!

BE A REBEL

Be a rebel! Do check out following blogs and links supporting anti reservation campaign.
My friend Rahul is actively working on it. I hate reservations.

http://yfemumbai.blogspot.com/ Youth For Equality, Mumbai
http://mandal286.blogspot.com/ by Rahul, Pune
http://youthforequality.blogspot.com Official from Delhi
http://antireservation.org/ Register urself to get latest updates about mandal2 events happening in ur city
http://www.petitiononline.com/anti6162/petition.html plz sign it

Seven Rules of Motivation

Simply great!!

#1 Set a major goal, but follow a path.
#2 Finish what you start.
#3 Socialize with others of similar interest.
#4 Learn how to learn.
#5 Harmonize natural talent with interest that motivates.
#6 Increase knowledge of subjects that inspires.
#7 Take risk.

Want the rules in detail, click here

How to install ANYTHING in Ubuntu!

I found this very useful blog post about How to install ANYTHING in Ubuntu!. The procedures are explained in a very simple manner with screenshots. I am using Ubuntu for long time. Information on it, will definitely help you!

10,000 and counting

Hurrey! I am a lucky person! I just opened my blog and saw the sitemeter count reached 10,000!

My blog is on internet for more than a year! It is great to see 10,000.

BASH HOTKEYS I use

Bash provides many hot keys to ease use. Like

ctrl-l — clear screen
ctrl-r — does a search in the previously given commands so that you don’t have to repeat long command.
ctrl-u — clears the typing before the hotkey.
ctrl-a — takes you to the beginning of the command you are currently typing.
ctrl-e — takes you to the end of the command you are currently typing in.
esc-b — takes you back by one word while typing a command.
ctrl-c — kills the current command or process.
ctrl-d — kills the shell.
ctrl-h — deletes one letter at a time from the command you are typing in.
ctrl-z — puts the currently running process in background, the process can be brought back to run state by using fg command.
esc-p — like ctrl-r lets you search through the previously given commands.
esc-. — gives the last command you typed.

These proved extremely useful for me.