When you receive an email, you receive more than just the message. The email comes with headers that carry important information that can tell where the email was sent from and possibly who sent it. For that, you would need to find the IP address of the sender. The tutorial below can help you find the IP address of the sender. Note that this will not work if the sender uses anonymous proxy servers.
Finding IP address in Gmail
1. Log into your Gmail account with your username and password.
2. Open the mail.
3. To display the headers,
* Click on More options corresponding to that thread. You should get a bunch of links.
* Click on Show original
4. You should get headers like this:
Gmail headers : name
Look for Received: from followed by a few hostnames and an IP address between square brackets. In this case, it is
65.119.112.245.
That is be the IP address of the sender!
5. Track the IP address of the sender
Finding IP address in Yahoo! Mail
1. Log into your Yahoo! mail with your username and password.
2. Click on Inbox or whichever folder you have stored your mail.
3. Open the mail.
4. If you do not see the headers above the mail message, your headers are not displayed. To display the headers,
* Click on Options on the top-right corner
* In the Mail Options page, click on General Preferences
* Scroll down to Messages where you have the Headers option
* Make sure that Show all headers on incoming messages is selected
* Click on the Save button
* Go back to the mails and open that mail
5. You should see similar headers like this:
Yahoo! headers : name
Look for Received: from followed by the IP address between square brackets [ ]. Here, it is 202.65.138.109.
That is be the IP address of the sender!
6. Track the IP address of the sender
Finding IP address in Hotmail
1. Log into your Hotmail account with your username and password.
2. Click on the Mail tab on the top.
3. Open the mail.
4. If you do not see the headers above the mail message, your headers are not displayed. To display the headers,
* Click on Options on the top-right corner
* In the Mail Options page, click on Mail Display Settings
* In Message Headers, make sure Advanced option is checked
* Click on Ok button
* Go back to the mails and open that mail
5. If you find a header with X-Originating-IP: followed by an IP address, that is the sender's IP address
Hotmail headers : name ,In this case the IP address of the sender is [68.34.60.59]. Jump to step 9.
6. If you find a header with Received: from followed by a Gmail proxy like this
Hotmail headers : name
Look for Received: from followed by IP address within square brackets[].
In this case, the IP address of the sender is [69.140.7.58]. Jump to step 9.
7. Or else if you have headers like this
Hotmail headers : name
Look for Received: from followed by IP address within square brackets[].
In this case, the IP address of the sender is [61.83.145.129] (Spam mail). Jump to step 9.
8. * If you have multiple Received: from headers, eliminate the ones that have proxy.anyknownserver.com.
9. Track the IP address of the sender
Latest and Most Viewed Articles
PC-Maintenance
Maintaining your computer to keep it working healthy.
Increase Your RAM and so system speed
Free up your computer RAM to increase speed.
Increase Bittorent Download Speed
Tweak to increase bittorent p2p download speed.
Sunday, 25 December 2011
Friday, 23 December 2011
Single Click Shutdown for Windows OS
Did you know that in Windows XP you can shut down your computer from the (eventually DOS prompt) command line box? Moreover, you can do this by clicking your mouse only once.
All you need to do is... right-click on an empty Desktop spot -> select New -> Shortcut -> type shutdown followed by a space, and then enter one or more of the parameters listed below -> click Next -> type a suggestive name for your new shortcut -> finally, click Finish.
This is the Shutdown.exe (located in %systemroot%\System32, usually C:\Windows\System32) syntax:
shutdown [-i|-l|-s|-r|-a] [-f] [-m \\computername] [-t xx] [-c "Text"] [-d[u][p]:xx:yy]>
Valid command line switches:
-a = Abort system shutdown in progress ONLY IF the -t xx timeout option was already set to ANY value other than 0. ALL switches except -l and -m are ignored during abort.
-c "Text" = Text comment (case insensitive) to be displayed in the Message area of the System Shutdown window. MUST be enclosed between quotes. Maximum allowed 127 ASCII characters.
-d [u][p]:xx:yy = Reason code for shutdown:
u = User code.
p = Planned shutdown code.
xx = Major reason code. Positive integer number less than 256.
yy = Minor reason code. Positive integer number less than 65536.
-f = Force running applications to close without warning.
-i = Display the shutdown interface (GUI). MUST be the first option!
-l = Log off the current user of the local computer (default action). Can NOT be used with the -m option unless the current user has Sysadmin rights, in which case the -m switch takes precedence.
-m \\computername = Remote/network computer name (most always case sensitive) to log off/restart/shut down. Current user MUST have Sysadmin rights to be allowed to use this switch!
-s = Shut down the local computer.
-r = Shut down and restart (reboot) the local computer.
-t xx = Set shutdown timer to timeout for xx seconds. IF NOT specified defaults to 20 seconds. Allowed values between 0 and 99 seconds. The -a switch is the ONLY one that CAN be used during the timeout period.
NOTE:
The dash (-) in front of these switches can be replaced by a forward slash (/).
Spaces are NOT required to separate the shutdown command from ANY following switches, but ARE required to separate ANY switch from its following parameter(s), if any.
For example:
shutdown -s -c "Shutting down!" -t 3
tells your computer to shutdown after waiting for 3 seconds while the System Shutdown window will display text above in the Message area.
Optional: after you're done creating your customized shortcut for shutdown -> right-click on it -> select Properties -> enter your desired key "combo" in the Shortcut Key box (e.g. Ctrl + Alt + End) -> click OK/Apply.
From now on just left-click on your shutdown shortcut or hit that key combination to turn off/restart/log off your computer.
All you need to do is... right-click on an empty Desktop spot -> select New -> Shortcut -> type shutdown followed by a space, and then enter one or more of the parameters listed below -> click Next -> type a suggestive name for your new shortcut -> finally, click Finish.
This is the Shutdown.exe (located in %systemroot%\System32, usually C:\Windows\System32) syntax:
shutdown [-i|-l|-s|-r|-a] [-f] [-m \\computername] [-t xx] [-c "Text"] [-d[u][p]:xx:yy]>
Valid command line switches:
-a = Abort system shutdown in progress ONLY IF the -t xx timeout option was already set to ANY value other than 0. ALL switches except -l and -m are ignored during abort.
-c "Text" = Text comment (case insensitive) to be displayed in the Message area of the System Shutdown window. MUST be enclosed between quotes. Maximum allowed 127 ASCII characters.
-d [u][p]:xx:yy = Reason code for shutdown:
u = User code.
p = Planned shutdown code.
xx = Major reason code. Positive integer number less than 256.
yy = Minor reason code. Positive integer number less than 65536.
-f = Force running applications to close without warning.
-i = Display the shutdown interface (GUI). MUST be the first option!
-l = Log off the current user of the local computer (default action). Can NOT be used with the -m option unless the current user has Sysadmin rights, in which case the -m switch takes precedence.
-m \\computername = Remote/network computer name (most always case sensitive) to log off/restart/shut down. Current user MUST have Sysadmin rights to be allowed to use this switch!
-s = Shut down the local computer.
-r = Shut down and restart (reboot) the local computer.
-t xx = Set shutdown timer to timeout for xx seconds. IF NOT specified defaults to 20 seconds. Allowed values between 0 and 99 seconds. The -a switch is the ONLY one that CAN be used during the timeout period.
NOTE:
The dash (-) in front of these switches can be replaced by a forward slash (/).
Spaces are NOT required to separate the shutdown command from ANY following switches, but ARE required to separate ANY switch from its following parameter(s), if any.
For example:
shutdown -s -c "Shutting down!" -t 3
tells your computer to shutdown after waiting for 3 seconds while the System Shutdown window will display text above in the Message area.
Optional: after you're done creating your customized shortcut for shutdown -> right-click on it -> select Properties -> enter your desired key "combo" in the Shortcut Key box (e.g. Ctrl + Alt + End) -> click OK/Apply.
From now on just left-click on your shutdown shortcut or hit that key combination to turn off/restart/log off your computer.
Trick to lock your private folder
Do you worry about privacy or do you maintain some personal files on the office system or at Friends pc, then you must lock that folder. I know many software's that most people use to lock their Personal files. But this trick is the safest and locks files or folders without use of any software's.
Suppose you want to lock the folder movies in d: which has the path D:\movies.
In the same drive create a text file and type
ren movies movies.{21EC2020-3AEA-1069-A2DD-08002B30309D}
Now save this text file as loc.bat
Create another text file and type in it
ren movies.{21EC2020-3AEA-1069-A2DD-08002B30309D} movies
Now save this text file as key.bat
Now you can see 2 batch files loc and key. Press loc and the folder movies will change to control panel and you cannot view its contents. Press key and you will get back your original folder.
try it out!!!!!!!
Note: It is safe as in case if you loose the key file, you can create it again but the folder name must be correct.
Suppose you want to lock the folder movies in d: which has the path D:\movies.
In the same drive create a text file and type
ren movies movies.{21EC2020-3AEA-1069-A2DD-08002B30309D}
Now save this text file as loc.bat
Create another text file and type in it
ren movies.{21EC2020-3AEA-1069-A2DD-08002B30309D} movies
Now save this text file as key.bat
Now you can see 2 batch files loc and key. Press loc and the folder movies will change to control panel and you cannot view its contents. Press key and you will get back your original folder.
try it out!!!!!!!
Note: It is safe as in case if you loose the key file, you can create it again but the folder name must be correct.
Pop a banner each time Windows Boots
To pop a banner which can contain any message you want to display just before a user is going to log on, go to the key: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WinLogon
Now create a new string Value in the right pane named LegalNoticeCaption and enter the value that you want to see in the Menu Bar.
Now create yet another new string value and name it:
LegalNoticeText
Modify it and insert the message you want to display each time Windows boots. This can be effectively used to display the company's private policy each time the user logs on to his NT box.
It's .reg file would be:
REGEDIT4 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Winlogon] "LegalNoticeCaption"="Caption here."
Now create a new string Value in the right pane named LegalNoticeCaption and enter the value that you want to see in the Menu Bar.
Now create yet another new string value and name it:
LegalNoticeText
Modify it and insert the message you want to display each time Windows boots. This can be effectively used to display the company's private policy each time the user logs on to his NT box.
It's .reg file would be:
REGEDIT4 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Winlogon] "LegalNoticeCaption"="Caption here."
Improve Windows XP Shutdown Speed
This tweak reduces the time XP waits before automatically closing any running programs when you give it the command to shutdown.
Go to Start then select Run
Type 'Regedit' and click ok
Find 'HKEY_CURRENT_USER\Control Panel\Desktop\'
Select 'WaitToKillAppTimeout'
Right click and select 'Modify'
Change the value to '1000'
Click 'OK'
Now select 'HungAppTimeout'
Right click and select 'Modify'
Change the value to '1000'
Click 'OK'
Now find 'HKEY_USERS\.DEFAULT\Control Panel\Desktop'
Select 'WaitToKillAppTimeout'
Right click and select 'Modify'
Change the value to '1000'
Click 'OK'
Now find 'HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\'
Select 'WaitToKillServiceTimeout'
Right click and select 'Modify'
Change the value to '1000'
Click 'OK'
Go to Start then select Run
Type 'Regedit' and click ok
Find 'HKEY_CURRENT_USER\Control Panel\Desktop\'
Select 'WaitToKillAppTimeout'
Right click and select 'Modify'
Change the value to '1000'
Click 'OK'
Now select 'HungAppTimeout'
Right click and select 'Modify'
Change the value to '1000'
Click 'OK'
Now find 'HKEY_USERS\.DEFAULT\Control Panel\Desktop'
Select 'WaitToKillAppTimeout'
Right click and select 'Modify'
Change the value to '1000'
Click 'OK'
Now find 'HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\'
Select 'WaitToKillServiceTimeout'
Right click and select 'Modify'
Change the value to '1000'
Click 'OK'
Trick to Complete Formatting Mobile Phone
Here is the trick for complete formatting of your virus infected or other problem arriving mobile phone...
This trick is for almost all Nokia models.
1. Switch off your phone...
2. Remove SIM card & memory chip...
3. Now press & hold keys - 3,*,call green) ...
4. Then without leaving these three buttons press power button...
5. Formatting task will be started...
6. Remember its a very rare trick....
Yes its true its call hard format.
key * , 3 , Call button (green) press and hold when display is on than formatting screen is displayed.
Wait for formatting to be finished,
Before carrying out this process make sure you have copied all your contacts and notes onto your Memory, because every thing will be deleted. When its finished the formatted phone may be like new, just like when u have brought it from showroom.
This trick is for almost all Nokia models.
1. Switch off your phone...
2. Remove SIM card & memory chip...
3. Now press & hold keys - 3,*,call green) ...
4. Then without leaving these three buttons press power button...
5. Formatting task will be started...
6. Remember its a very rare trick....
Yes its true its call hard format.
key * , 3 , Call button (green) press and hold when display is on than formatting screen is displayed.
Wait for formatting to be finished,
Before carrying out this process make sure you have copied all your contacts and notes onto your Memory, because every thing will be deleted. When its finished the formatted phone may be like new, just like when u have brought it from showroom.
Some Useful Nokia mobile phone Secret Codes list
On the main screen type
*#06# for checking the IMEI (International Mobile Equipment Identity).
*#7780# reset to factory settings.
*#67705646# This will clear the LCD display (operator logo).
*#0000# To view software version.
*#2820# Bluetooth device address.
*#746025625# Sim clock allowed status.
*#62209526# - Display the MAC address of the WLAN adapter. This is available only in the newer devices that support WLAN
#pw+1234567890+1# Shows if sim have restrictions.
*#92702689# - takes you to a secret menu where you may find some of the information below:
1. Displays Serial Number.
2. Displays the Month and Year of Manufacture
3. Displays (if there) the date where the phone was purchased (MMYY)
4. Displays the date of the last repair - if found (0000)
5. Shows life timer of phone (time passes since last start)
*#3370# - Enhanced Full Rate Codec (EFR) activation. Increase signal strength, better signal reception. It also help if u want to use GPRS and the service is not responding or too slow. Phone battery will drain faster though.
*#3370* - (EFR) deactivation. Phone will automatically restart. Increase battery life by 30% because phone receives less signal from network.
*#4720# - Half Rate Codec activation.
*#4720* - Half Rate Codec deactivation. The phone will automatically restart
If you forgot wallet code for Nokia S60 phone, use this code reset: *#7370925538#
Note, your data in the wallet will be erased. Phone will ask you the lock code. Default lock code is: 12345
Press *#3925538# to delete the contents and code of wallet.
Unlock service provider: Insert sim, turn phone on and press vol up-arrow keys) for 3 seconds, should say pin code. Press C, then press * message should flash, press * again and 04*pin*pin*pin#
*#7328748263373738# resets security code.
Default security code is 12345
*#06# for checking the IMEI (International Mobile Equipment Identity).
*#7780# reset to factory settings.
*#67705646# This will clear the LCD display (operator logo).
*#0000# To view software version.
*#2820# Bluetooth device address.
*#746025625# Sim clock allowed status.
*#62209526# - Display the MAC address of the WLAN adapter. This is available only in the newer devices that support WLAN
#pw+1234567890+1# Shows if sim have restrictions.
*#92702689# - takes you to a secret menu where you may find some of the information below:
1. Displays Serial Number.
2. Displays the Month and Year of Manufacture
3. Displays (if there) the date where the phone was purchased (MMYY)
4. Displays the date of the last repair - if found (0000)
5. Shows life timer of phone (time passes since last start)
*#3370# - Enhanced Full Rate Codec (EFR) activation. Increase signal strength, better signal reception. It also help if u want to use GPRS and the service is not responding or too slow. Phone battery will drain faster though.
*#3370* - (EFR) deactivation. Phone will automatically restart. Increase battery life by 30% because phone receives less signal from network.
*#4720# - Half Rate Codec activation.
*#4720* - Half Rate Codec deactivation. The phone will automatically restart
If you forgot wallet code for Nokia S60 phone, use this code reset: *#7370925538#
Note, your data in the wallet will be erased. Phone will ask you the lock code. Default lock code is: 12345
Press *#3925538# to delete the contents and code of wallet.
Unlock service provider: Insert sim, turn phone on and press vol up-arrow keys) for 3 seconds, should say pin code. Press C, then press * message should flash, press * again and 04*pin*pin*pin#
*#7328748263373738# resets security code.
Default security code is 12345
Trace Mobile numbers or Ip-Address
Recently I came accross a website in which we can easily trace a Mobile number. For example , when we enter the 10 digit mobile number, then we get the Mobile Service provider, Location, City along with area. Thats really awesome.
This tool will be really helpful specially for business persons to verify the location etc...
The site link is indiatrace.com
Features of this site is
Trace Mobile Number
Trace Vehical Number
Trace Pin Code
Trace IP Address
WHOIS Trace
This tool will be really helpful specially for business persons to verify the location etc...
The site link is indiatrace.com
Features of this site is
Trace Mobile Number
Trace Vehical Number
Trace Pin Code
Trace IP Address
WHOIS Trace
BSNL 3G Hack trick to Unlimited Browsing at normal GPRS rate
Here is a 100 % working trick to unlimited use BSNL 3G at the cost of
Normal GPRS
First of all Buy a normal 2g bsnl's sim card and keep balance 50+ rs.
now activate gprs by sending sms GPRS PRE to 53733 It will be
activated in 24 hours, after activation get gprs settings by calling customer care
Now do e-recharge with 230 rs (or whatever unlimited plan exists in your area)
in it, After activation You have to chnage only one thing in yor 3G enabled cell.
Go to settings>tools>settings>phone&g
t;network>network mode> now select UMTS
THEN do manual searching for network u will fing bsnl 3g network there wid small 3g logo along wid its name, select it as default
Now see your data singnals logo, it is converted into 3G
You will get near about 500kbps to 1200 kbps speed
Remember use BSNLEGPRS or BSNLPREPAID as your access point
Normal GPRS
First of all Buy a normal 2g bsnl's sim card and keep balance 50+ rs.
now activate gprs by sending sms GPRS PRE to 53733 It will be
activated in 24 hours, after activation get gprs settings by calling customer care
Now do e-recharge with 230 rs (or whatever unlimited plan exists in your area)
in it, After activation You have to chnage only one thing in yor 3G enabled cell.
Go to settings>tools>settings>phone&g
t;network>network mode> now select UMTS
THEN do manual searching for network u will fing bsnl 3g network there wid small 3g logo along wid its name, select it as default
Now see your data singnals logo, it is converted into 3G
You will get near about 500kbps to 1200 kbps speed
Remember use BSNLEGPRS or BSNLPREPAID as your access point
HACK or Simply Change XP Start Button Name
I’ve read a number of articles on the internet about changing the text on the Start button in XP. On more than one occasion I’ve seen references to a five (5) letter limitation when the button is renamed. I always wondered if this was true or just an assumption someone made because the default ‘start’ just happened to fit the button size. So, I decided to run a test and see if there really was a five character limit.
First of all just u need to do is download Resource hacker.
Resource HackerTM is a freeware utility to view, modify, rename, add, delete and extract resources in 32bit Windows executables and resource files (*.res). It incorporates an internal resource script compiler and decompiler and works on Win95, Win98, WinME, WinNT, Win2000 and WinXP operating systems.
ll its just 541Kb in the size.. Click here to go to the Download Page
First Step The first step is to make a backup copy of the file explorer.exe located at C:\Windows\explorer. Place it in a folder somewhere on your hard drive where it will be safe. Start Resource Hacker and open explorer.exe located at C:\Windows\explorer.exe
The category we are going to be using is String Table In Resource Hacker. Expand it by clicking the plus sign then navigate down to and expand string 37 followed by highlighting 1033. If you are using the Classic Layout rather than the XP Layout, use number 38. The right hand pane will display the stringtable as shown in Fig. 02. We’re going to modify item 578, currently showing the word “start” just as it displays on the current Start button.
There is no magic here. Just double click on the word “start” so that it’s highlighted, making sure the quotation marks are not part of the highlight. They need to remain in place, surrounding the new text that you’ll type. Go ahead and type your new entry
Second Step – Modify the Registry Now that the modified explorer.exe has been created it’s necessary to modify the registry so the file will be recognized when the user logs on to the system. If you don’t know how to access the registry I’m not sure this article is for you, but just in case it’s a temporary memory lapse, go to Start (soon to be something else) Run and type regedit in the Open: field. Navigate to:
HKEY_LOCAL_MACHINE\ SOFTWARE\ Microsoft\ Windows NT\ CurrentVersion\ Winlogon
the Right pane (Fig. 05), double click the Shell entry to open the Edit String dialog box as shown in Fig. 06. In Value data: line, enter the name that was used to save the modified explorer.exe file. Click OK.
Close Registry Editor and either log off the system and log back in, or reboot the entire system if that’s your preference. If all went as planned you should see your new Start button with the revised text.
First of all just u need to do is download Resource hacker.
Resource HackerTM is a freeware utility to view, modify, rename, add, delete and extract resources in 32bit Windows executables and resource files (*.res). It incorporates an internal resource script compiler and decompiler and works on Win95, Win98, WinME, WinNT, Win2000 and WinXP operating systems.
ll its just 541Kb in the size.. Click here to go to the Download Page
First Step The first step is to make a backup copy of the file explorer.exe located at C:\Windows\explorer. Place it in a folder somewhere on your hard drive where it will be safe. Start Resource Hacker and open explorer.exe located at C:\Windows\explorer.exe
The category we are going to be using is String Table In Resource Hacker. Expand it by clicking the plus sign then navigate down to and expand string 37 followed by highlighting 1033. If you are using the Classic Layout rather than the XP Layout, use number 38. The right hand pane will display the stringtable as shown in Fig. 02. We’re going to modify item 578, currently showing the word “start” just as it displays on the current Start button.
There is no magic here. Just double click on the word “start” so that it’s highlighted, making sure the quotation marks are not part of the highlight. They need to remain in place, surrounding the new text that you’ll type. Go ahead and type your new entry
Second Step – Modify the Registry Now that the modified explorer.exe has been created it’s necessary to modify the registry so the file will be recognized when the user logs on to the system. If you don’t know how to access the registry I’m not sure this article is for you, but just in case it’s a temporary memory lapse, go to Start (soon to be something else) Run and type regedit in the Open: field. Navigate to:
HKEY_LOCAL_MACHINE\ SOFTWARE\ Microsoft\ Windows NT\ CurrentVersion\ Winlogon
the Right pane (Fig. 05), double click the Shell entry to open the Edit String dialog box as shown in Fig. 06. In Value data: line, enter the name that was used to save the modified explorer.exe file. Click OK.
Close Registry Editor and either log off the system and log back in, or reboot the entire system if that’s your preference. If all went as planned you should see your new Start button with the revised text.
Hacking Windows SEND TO MENU
How often do you copy songs from a CD? Or some photos from a CD?
What do you do? You select the required files and do a CTRL –C. Open the destination folder and do a CTRL-V. Here is something you can benefit time from. Customize your SEND TO MENU.
This sounds simple and you can do it in less than sixty seconds.
You can create your own BASKET.
First you’ll need access to hidden files. So change your view settings to make all hidden files visible.
Tools -> folder options -> view (tab) and select the show hidden files and folders.
go to parent drive:/documents and settings/(user name)/send to
Open up my computer and locate your most used folders.
Create a shortcut of the most used folders in SEND TO FOLDER.You can do this in a number of ways.
Right click -> send to desktop(create shortcut) and move the shortcut from the desktop to the SEND TO FOLDER
Copy the most used folder and go to SEND TO FOLDER and right click -> paste shortcut.
Also remember to rename the shortcuts to send to videos or send to potos. We don’t need confusion when we use the same later.
5. DONE.
What do you do? You select the required files and do a CTRL –C. Open the destination folder and do a CTRL-V. Here is something you can benefit time from. Customize your SEND TO MENU.
This sounds simple and you can do it in less than sixty seconds.
You can create your own BASKET.
First you’ll need access to hidden files. So change your view settings to make all hidden files visible.
Tools -> folder options -> view (tab) and select the show hidden files and folders.
go to parent drive:/documents and settings/(user name)/send to
Open up my computer and locate your most used folders.
Create a shortcut of the most used folders in SEND TO FOLDER.You can do this in a number of ways.
Right click -> send to desktop(create shortcut) and move the shortcut from the desktop to the SEND TO FOLDER
Copy the most used folder and go to SEND TO FOLDER and right click -> paste shortcut.
Also remember to rename the shortcuts to send to videos or send to potos. We don’t need confusion when we use the same later.
5. DONE.
Thursday, 22 December 2011
Make Money By Sharing Links Earn Everage $ 1 Easy And Simple
Dear Friends,
Now we discuss about earn money by sharing files like any software, Image, Key gen, Document. Simply we upload file to affiliated website and get a download link, then spread it on web by any way. When any one download this file you will get average $0.60 to 1.0. Click below to registrar-
Click Here To Start Earning
Have Fun
Wish You All The Best
Get Life Time Antivirus
Get Photon Plus/Reliance Netconnect Plus

Free counters
Now we discuss about earn money by sharing files like any software, Image, Key gen, Document. Simply we upload file to affiliated website and get a download link, then spread it on web by any way. When any one download this file you will get average $0.60 to 1.0. Click below to registrar-
Click Here To Start Earning
Have Fun
Wish You All The Best
Get Life Time Antivirus
Get Photon Plus/Reliance Netconnect Plus
Free counters
Saturday, 17 December 2011
100% Free Online Learning All type of Courses, Best Site for Online learning
Dear all,
The Internet has made the lifelong pursuit of knowledge easier for nearly everyone in the world. There are tons of websites dedicated to providing free courses, reference books, education apps, and other learning materials. Here are 25 stand-out sites that would be useful to almost any lifelong learner.
Clusty – This unique search engine sorts results into clusters of related information so that it is easier to sort out the relevant from the irrelevant.
Schoolr – Schoolr is a fully-customizable search engine that can be used to search Google, Wikipedia, and other popular sites. It can also be used to translate text, convert units, and cite sources.
MyStickies – This site offers an alternative to bookmarking. Instead of saving URLs and page titles, MyStickies allows you to place digital sticky notes with annotations around the web so that you can retrieve previously viewed pages and understand immediately why they are important.
Diigo is a handy research tool that can be used to highlight and annotate pages on the web. Anything that is marked with Diigo can be accessed later on from any PC.
Hooey – Hooey is a unique tool for people who like to surf the web. It records browser history, measures productivity, and offers tips to help you better understand your browsing habits.
Internet Public Library – The IPL is a free public library for the Internet community. Resources include books, magazines, reference materials, subject collections, a physical library locator, and an “Ask the Librarian” section.
RefDesk – This award-winning, family-friendly website is a great place to find reference materials online. RefDesk also offers one of the best fact checkers on the Internet.
SparkNotes – SparkNotes is an incredibly useful resource. In addition to an enormous literature section, the site also offers study guides and discussion forums for a wide range of academic subjects.
Schmoop – This free beta site makes it fun to study literature, poetry, and U.S. history. Schmoop features include easy-to-read study guides, homework helpers, and other educational materials.
History.com – The official History Channel website is one of the best places on the web to learn about a broad range of history topics. You can read articles, watch videos, and explore many other resources.
Wolfram MathWorld – This extensive math resource contains contributions from all over the world. Entries include information about algebra, geometry, calculus, applied mathematics, discrete mathematics, number theory, statistics, and other math topics.
OpenCourseWare (OCW) Consortium – The OCW Consortium is a collaboration of more than 200 higher education institutions. The Consortium’s website is an excellent place to find free courses and course materials from some of the world’s best colleges and universities.
Lecturefox – Lecturefox is an online directory of free audio, video, and text-based lectures from universities like MIT and Yale.
LearnOutLoud – This Internet catalog contains more than 20,000 free educational materials, including books, videos, audio lectures, and podcasts.
The Online Books Page – The University of Pennsylvania’s Online Books Page is one of the best places to find free unabridged books online. The site lists more than 35,000 books that can be downloaded or viewed at no cost.
The Free Library – Farlex’s Free Library contains more than five million books and articles that can be viewed online for free. The site also allows you to create your own home page with your favorite bookmarks and RSS feeds.
BookMooch – This book swapping site makes it easy to get rid of the books you don’t need and get books you want in exchange. Membership is free and books can be exchanged worldwide.
wePapers – This site is geared toward college students, but it is also an excellent resource for lifelong learners. At wePapers, you can find academic papers, study groups, and a venue to share your knowledge.
Livemocha – Livemocha is an international community of foreign language learners. You can use it to study almost any world language at your own pace.
VerbaLearn – VerbaLearn is a good place to practice English vocabulary. You can review words, make flashcards, and customize the way you learn.
Class Marker – At ClassMarker, you can create online quizzes that test your knowledge on any subject. No software or download required.
Mikogo – This free screen sharing tool makes it easy to share your computer screen with other people who are online. Mikogo works well for online meetings, presentations, and collaborative learning.
Bloglines – This web-based tool makes your home page look like a newspaper. It allows you to assemble all of your favorite sites and blogs amidst information like local weather, sports, and other items of your choosing.
ThinkFree – ThinkFree offers Internet-based file sharing and storage as well as a Microsoft Office compatible application suite that allows you to access documents without opening the necessary application.
The Internet has made the lifelong pursuit of knowledge easier for nearly everyone in the world. There are tons of websites dedicated to providing free courses, reference books, education apps, and other learning materials. Here are 25 stand-out sites that would be useful to almost any lifelong learner.
Clusty – This unique search engine sorts results into clusters of related information so that it is easier to sort out the relevant from the irrelevant.
Schoolr – Schoolr is a fully-customizable search engine that can be used to search Google, Wikipedia, and other popular sites. It can also be used to translate text, convert units, and cite sources.
MyStickies – This site offers an alternative to bookmarking. Instead of saving URLs and page titles, MyStickies allows you to place digital sticky notes with annotations around the web so that you can retrieve previously viewed pages and understand immediately why they are important.
Diigo is a handy research tool that can be used to highlight and annotate pages on the web. Anything that is marked with Diigo can be accessed later on from any PC.
Hooey – Hooey is a unique tool for people who like to surf the web. It records browser history, measures productivity, and offers tips to help you better understand your browsing habits.
Internet Public Library – The IPL is a free public library for the Internet community. Resources include books, magazines, reference materials, subject collections, a physical library locator, and an “Ask the Librarian” section.
RefDesk – This award-winning, family-friendly website is a great place to find reference materials online. RefDesk also offers one of the best fact checkers on the Internet.
SparkNotes – SparkNotes is an incredibly useful resource. In addition to an enormous literature section, the site also offers study guides and discussion forums for a wide range of academic subjects.
Schmoop – This free beta site makes it fun to study literature, poetry, and U.S. history. Schmoop features include easy-to-read study guides, homework helpers, and other educational materials.
History.com – The official History Channel website is one of the best places on the web to learn about a broad range of history topics. You can read articles, watch videos, and explore many other resources.
Wolfram MathWorld – This extensive math resource contains contributions from all over the world. Entries include information about algebra, geometry, calculus, applied mathematics, discrete mathematics, number theory, statistics, and other math topics.
OpenCourseWare (OCW) Consortium – The OCW Consortium is a collaboration of more than 200 higher education institutions. The Consortium’s website is an excellent place to find free courses and course materials from some of the world’s best colleges and universities.
Lecturefox – Lecturefox is an online directory of free audio, video, and text-based lectures from universities like MIT and Yale.
LearnOutLoud – This Internet catalog contains more than 20,000 free educational materials, including books, videos, audio lectures, and podcasts.
The Online Books Page – The University of Pennsylvania’s Online Books Page is one of the best places to find free unabridged books online. The site lists more than 35,000 books that can be downloaded or viewed at no cost.
The Free Library – Farlex’s Free Library contains more than five million books and articles that can be viewed online for free. The site also allows you to create your own home page with your favorite bookmarks and RSS feeds.
BookMooch – This book swapping site makes it easy to get rid of the books you don’t need and get books you want in exchange. Membership is free and books can be exchanged worldwide.
wePapers – This site is geared toward college students, but it is also an excellent resource for lifelong learners. At wePapers, you can find academic papers, study groups, and a venue to share your knowledge.
Livemocha – Livemocha is an international community of foreign language learners. You can use it to study almost any world language at your own pace.
VerbaLearn – VerbaLearn is a good place to practice English vocabulary. You can review words, make flashcards, and customize the way you learn.
Class Marker – At ClassMarker, you can create online quizzes that test your knowledge on any subject. No software or download required.
Mikogo – This free screen sharing tool makes it easy to share your computer screen with other people who are online. Mikogo works well for online meetings, presentations, and collaborative learning.
Bloglines – This web-based tool makes your home page look like a newspaper. It allows you to assemble all of your favorite sites and blogs amidst information like local weather, sports, and other items of your choosing.
ThinkFree – ThinkFree offers Internet-based file sharing and storage as well as a Microsoft Office compatible application suite that allows you to access documents without opening the necessary application.
Free counters
Friday, 16 December 2011
Earn Money Online Very Simple And Easy
Dear Friends,
Every person wants to make money. How to make money online? Internet is more than entertainment.There are many genuine and legitimate opportunities to make money online.Greatest advantage of working online is the fact that it allows you to work from home.This blog makes an effort to introduce and educate you about all the opportunities online.These opportunities are open to all including working, housewives, teens, kids, students etc.A computer and an internet connection is the basic requirement.
Some simple way is as below-
1. By sharing links- We can earn money by sharing useful links to our friends, on our blog, website, by chat. Try this site for better performance simply create your link and spread it. When any person click on it you will earn money. Click Here For Start

2. By Doing Some online Works- We can also earn by doing some online works like simple sign up for any website. ect. Try this site for fast payout Click here to start
So best of luck my friends for start earning money online.
Every person wants to make money. How to make money online? Internet is more than entertainment.There are many genuine and legitimate opportunities to make money online.Greatest advantage of working online is the fact that it allows you to work from home.This blog makes an effort to introduce and educate you about all the opportunities online.These opportunities are open to all including working, housewives, teens, kids, students etc.A computer and an internet connection is the basic requirement.
Some simple way is as below-

1. By sharing links- We can earn money by sharing useful links to our friends, on our blog, website, by chat. Try this site for better performance simply create your link and spread it. When any person click on it you will earn money. Click Here For Start

2. By Doing Some online Works- We can also earn by doing some online works like simple sign up for any website. ect. Try this site for fast payout Click here to start
So best of luck my friends for start earning money online.
Free counters
Thursday, 15 December 2011
How to withdraw money from paypal in India, How to veriry your paypal account
Dear Friends,
Now IRB has changed some low regarding to PayPal in India. Now Indian citizen can withdraw money form PayPal to there bank account directly. For this you must follow following conditions-
1. You must have account in National Bank like OBC, DCB, SBI, DENA
2. You must have a valid PAN card in India
3. You have to show par-pus code.
If you have these things then you will be able to withdraw money from PayPal in India.
If you have any Problem please call 7405511604 or e mail yogendra@khwahish.in
Now IRB has changed some low regarding to PayPal in India. Now Indian citizen can withdraw money form PayPal to there bank account directly. For this you must follow following conditions-
1. You must have account in National Bank like OBC, DCB, SBI, DENA
2. You must have a valid PAN card in India
3. You have to show par-pus code.
If you have these things then you will be able to withdraw money from PayPal in India.
If you have any Problem please call 7405511604 or e mail yogendra@khwahish.in
Free counters
Tuesday, 29 November 2011
Get Life Time Antivirus @ 2500/-
Get Life Time Antivirus @ 2500/-
Dear Friends,
We all need a good antivirus to prevent our system from spyware and virus.
We have to purchase antivirus provided by varies companies for a period like one year or two year.
I have a very good Deal for you, I am providing antivirus for lifetime. Once you purchased our antivirus there is no need to purchase again.
So fell free and call us 7405511603,04 Or visit www.alliance-india.in
Regards,
Yogendra Singh
Free counters
Reliance Netconnect Plus
Dear Friends,
Reliance net-connect + is India's first cheap wireless broadband internet service modem provided by Reliance communication Ltd. It's download speed is up to 3.1 Mbps and upload speed is 1.5 Mbps. It;s plans starts from Rs. 400 +
Want to know more about please visit http://alliance-india.in/Internet-solution-Silvassa.html
Want to Buy just @1299 in Surat, Vapi, Silvassa
Please call us to 7405511604
First we provide demo in your area to insure speed and signal strength. So please feel free to call us 7405511604, 9375750511, 7405511603
Thank You
Yogendra singh
Free counters
Subscribe to:
Posts (Atom)