One politician, One thief & One Scientist died and went straight to hell.
Politician said "I miss my country. I want to call my country and see how everybody is doing there." She called and talked for about 5 minutes, then she asked "Well, devil how much do I need to pay for the call????
The devil says "Five million dollars". The Politician wrote him a cheque and went to sit back on her chair.
Thief was so jealous, he starts screaming, "My turn! I wanna call the my group members, I want to see how everybody is doing there too". He called and talked for about 2 minutes, then he asked "Well, devil, how much do I need to pay for the call????
The devil says "Ten million dollars". With a smug look on his face, he made a cheque and went to sit back on his chair.
The scientist was even more jealous & starts screaming, "I want to call my institute and talk to my fellow Scientists, Project Leaders, Research fellows, Project fellows/assistants. He called all those people and talked for twenty hours about promotions, publications, impact factor, CRs, inter-departmental and intra-departmental politics. He talked & talked & talked,
then he asked "Well, devil how much do I need to pay for the call????
The devil says "Ten dollars". The Scientist is stunned & says "Ten dollars??? Only ??"
Devil says "Hell to Hell is a Local Call " :D :D :D
Sunday, September 26, 2010
Saturday, September 18, 2010
Study tips for GRE-CBT
Few tips based on my personal experience which are useful for acing gre..
1. For verbal, Barrons is more than enough. But make sure you are acquainted with the synonyms for the words over there. An easy way to learn the synonyms is to install softwares like WordWeb on your computer. While reading the word lists it is good to follow this website to measure your ability.
http://learnwordlist.com/tests/gre-word-list-test-letter-a/2 -> This is for 'a'. For all the alphabets, tests are available.
2. For maths, Novas material is good and should suffice. If you are from Maths background, you will not find any difficulty in answering the questions.
3. Check the above(learnwordlist.com) website for different other practice tests like Synonyms, Antonyms, sentence completions, etc.
4. Check online communities of gre for more info about recently appeared questions n other suggestions from the past test takers.
5. Once u r done with wordlists, for practice:
5.1. Install GreBible on ur system.Contains numerous tests and are very helpful.
5.2. Kaplan tests are a bit tough but you can give them a try.
5.3. While doing these tests, you should practice BIG BOOK. This book was compiled by ETS guys.
6. For revision of important words you can go through this website: http://majortests.com/gre/wordlist.php
7. One or two days before the actual GRE exam, install powerprep by ETS and practice the 2 tests. They are helpful in predicting your score( by +/- 100 marks).
8. Last but not the least tip: "STAY CALM!"
Good luck!
1. For verbal, Barrons is more than enough. But make sure you are acquainted with the synonyms for the words over there. An easy way to learn the synonyms is to install softwares like WordWeb on your computer. While reading the word lists it is good to follow this website to measure your ability.
http://learnwordlist.com/tests/gre-word-list-test-letter-a/2 -> This is for 'a'. For all the alphabets, tests are available.
2. For maths, Novas material is good and should suffice. If you are from Maths background, you will not find any difficulty in answering the questions.
3. Check the above(learnwordlist.com) website for different other practice tests like Synonyms, Antonyms, sentence completions, etc.
4. Check online communities of gre for more info about recently appeared questions n other suggestions from the past test takers.
5. Once u r done with wordlists, for practice:
5.1. Install GreBible on ur system.Contains numerous tests and are very helpful.
5.2. Kaplan tests are a bit tough but you can give them a try.
5.3. While doing these tests, you should practice BIG BOOK. This book was compiled by ETS guys.
6. For revision of important words you can go through this website: http://majortests.com/gre/wordlist.php
7. One or two days before the actual GRE exam, install powerprep by ETS and practice the 2 tests. They are helpful in predicting your score( by +/- 100 marks).
8. Last but not the least tip: "STAY CALM!"
Good luck!
Friday, July 2, 2010
Add a folder to the windows path
Modifying the path statement will enable an MS-DOS window as well as older programs to locate files that may be required to run the program.
TO set the path, follow these steps:
1. From the desktop, right-click "My Computer" and click "Properties".
2. In the System Properties window, click on the "Advanced" tab.
3. In the "Advanced" section, click the "Environment Variables" button.
4. Finally, in the Environment Variables window, highlight the Path variable in the Systems Variable section and click the Edit button.
5. Add or modify the path lines with the paths you wish the computer to access.
6. Each different directory is separated with a semicolon as shown as:-
C:\Program Files\MiKTeX2.7\miktex\bin;C:\Python25\PyQt4\bin;
TO set the path, follow these steps:
1. From the desktop, right-click "My Computer" and click "Properties".
2. In the System Properties window, click on the "Advanced" tab.
3. In the "Advanced" section, click the "Environment Variables" button.
4. Finally, in the Environment Variables window, highlight the Path variable in the Systems Variable section and click the Edit button.
5. Add or modify the path lines with the paths you wish the computer to access.
6. Each different directory is separated with a semicolon as shown as:-
C:\Program Files\MiKTeX2.7\miktex\bin;C:\Python25\PyQt4\bin;
You can now able to run your program.
Monday, June 28, 2010
using SCREEN command in Linux
There are times when you want to log off your system, but you want the programs to be executed on the server machine which you've initiated from your system. You can use screen command which serves this purpose. It starts a session within the session that you have logged in. Even if you logout from your system, the screen will keep on running until the server stops or you forcefully exit.
Here are the commands which you should use.
$screen //starts a new session in the logged session
$./a.out > output //some command which you want to get it executed
$ CTRL + a + d //closes the screen and brings you back to the original session
$screen -r //displays the screens running on your machine
Hope this is helpful :-)
Here are the commands which you should use.
$screen //starts a new session in the logged session
$./a.out > output //some command which you want to get it executed
$ CTRL + a + d //closes the screen and brings you back to the original session
$screen -r //displays the screens running on your machine
Hope this is helpful :-)
View, Start, Stop, Pause, Restart a service in Windows
Hi here I am giving you the commands which you should use them from the command line prompt in windows.
There are many a times when you want to know what are the services running while you have logged in to your computer.
Use this command which display a list of services that are running on your computer:
net start
To start a new service, use:
net start
To stop a running service, use:
net stop
To pause a service, use:
net pause
To restart a service, use:
net continue
Hope this is helpful :-)
There are many a times when you want to know what are the services running while you have logged in to your computer.
Use this command which display a list of services that are running on your computer:
net start
To start a new service, use:
net start
To stop a running service, use:
net stop
To pause a service, use:
net pause
To restart a service, use:
net continue
Hope this is helpful :-)
Saturday, June 19, 2010
Installing gnuplot on windows
You can install gnuplot on windows easily to plot the graphs.
Download gnuplot from this
There is no need to run any exe file but directly copy them to some directory on your system and then make a shortcut to wgnuplot.
It is also useful to install ghostview which allows you to view postscript graphs made with gnuplot. You need gs860w32.exe and gs49w32.exe (or higher?).
Download gnuplot from this
There is no need to run any exe file but directly copy them to some directory on your system and then make a shortcut to wgnuplot.
It is also useful to install ghostview which allows you to view postscript graphs made with gnuplot. You need gs860w32.exe and gs49w32.exe (or higher?).
Instructions for installing ghostview can be found here;
http://pages.cs.wisc.edu/~ghost/gsview/
Friday, June 11, 2010
Identify the ports in linux
For socket programming, you need to use the port. If you want to identify the ports which are active, you can use the following commands. Generally in linux, the ports from 0 to 1023 are reserved and can be accessed only as a root user.
For checking the information about the port, you can use netstat
If you want to know more about this command, you can check its man page
$ man netstat
But for quick reference, you can use any of these for the appropriate purpose.
For finding the open ports:
$ netstat --listen
For finding the open ports and established TCP connections:
$ netstat -vatn
For checking information about a port,
$ netstat -anp | grep <port>
For identifying the ports already in use:
$ netstat -atnp | grep LISTEN
For checking the information about the port, you can use netstat
If you want to know more about this command, you can check its man page
$ man netstat
But for quick reference, you can use any of these for the appropriate purpose.
For finding the open ports:
$ netstat --listen
For finding the open ports and established TCP connections:
$ netstat -vatn
For checking information about a port,
$ netstat -anp | grep <port>
For identifying the ports already in use:
$ netstat -atnp | grep LISTEN
Subscribe to:
Posts (Atom)