<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Lets share "Every Thing" in Computer &#187; Tips &amp; Tricks</title>
	<atom:link href="http://vishalshah.wordpress.com/category/tips-tricks/feed/" rel="self" type="application/rss+xml" />
	<link>http://vishalshah.wordpress.com</link>
	<description>latest computer news- software - hacking, Win Xp, Mobile, Tutorials ,Magazine, Fun unlimited</description>
	<lastBuildDate>Sun, 08 Nov 2009 17:16:33 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='vishalshah.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/0cb7428bb73ed8277c525cc6f7d23e65?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Lets share "Every Thing" in Computer &#187; Tips &amp; Tricks</title>
		<link>http://vishalshah.wordpress.com</link>
	</image>
			<item>
		<title>Pc tips and tricks,</title>
		<link>http://vishalshah.wordpress.com/2009/02/18/pc-tips-and-tricks/</link>
		<comments>http://vishalshah.wordpress.com/2009/02/18/pc-tips-and-tricks/#comments</comments>
		<pubDate>Wed, 18 Feb 2009 18:01:35 +0000</pubDate>
		<dc:creator>vishalshah</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>

		<guid isPermaLink="false">http://vishalshah.wordpress.com/?p=385</guid>
		<description><![CDATA[Create desktop icon for restart and shutdown
Do the following:
1. Right click on your desktop
2. Then in NEW click on SHORTCUT
3. A shortcut wizard will appear
4. Type this in the box:
shutdown -s -t 00
5. Your done now right click on the folder&#62;properties&#62;Change Icon
And then choose any appropriate icon
For restart instead of -s type -r
 
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-
Lock any folder [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vishalshah.wordpress.com&blog=48908&post=385&subd=vishalshah&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><strong>Create desktop icon for restart and shutdown</strong></p>
<p>Do the following:<br />
1. Right click on your desktop<br />
2. Then in NEW click on SHORTCUT<br />
3. A shortcut wizard will appear<br />
4. Type this in the box:<br />
shutdown -s -t 00<br />
5. Your done now right click on the folder&gt;properties&gt;Change Icon<br />
And then choose any appropriate icon<br />
For restart instead of -s type -r</p>
<p> </p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<div id="post_message_8861901"><strong>Lock any folder without using any software</strong></p>
<p>1. Suppose you have a folder named abcd in D:\abcd.<br />
2. In the same drive next to the folder create a new notepad file with the exact statement<br />
ren abcd abcd.{21EC2020-3AEA-1069-A2DD-08002B30309D}<br />
3. Now save this text file as loc.bat<br />
4. Create another notepad file and type<br />
ren abcd.{21EC2020-3AEA-1069-A2DD-08002B30309D} abcd<br />
5. Save this as key.bat<br />
6. Now there are two batch files. Double click loc.bat and your folder will change into Control Panel and its contents cannot be viewed .<br />
7. To open the folder double click key.bat and you get back your original folder.<br />
8. For more safety keep the key.bat in another location . Only for unlocking copy paste to the original location and double click<br />
(don&#8217;t forget to replace abcd with the folder name)</p>
<p>OR</p>
<p>Paste it in notepad</p>
<div style="margin:5px 20px 20px;">
<div class="smallfont" style="margin-bottom:2px;">Quote:</div>
<table border="0" cellspacing="0" cellpadding="6" width="100%">
<tbody>
<tr>
<td class="alt2" style="border:1px inset;">cls<br />
@ECHO OFF<br />
title Folder Locker<br />
if EXIST &#8220;Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}&#8221; goto UNLOCK<br />
if NOT EXIST Locker goto MDLOCKER<br />
:CONFIRM<br />
echo Are you sure u want to Lock the folder(Y/N)<br />
set/p &#8220;cho=&gt;&#8221;<br />
if %cho%==Y goto LOCK<br />
if %cho%==y goto LOCK<br />
if %cho%==n goto END<br />
if %cho%==N goto END<br />
echo Invalid choice.<br />
goto CONFIRM<br />
:LOCK<br />
ren Locker &#8220;Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}&#8221;<br />
attrib +h +s &#8220;Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}&#8221;<br />
echo Folder locked<br />
goto End<br />
:UNLOCK<br />
echo Enter password to Unlock folder<br />
set/p &#8220;pass=&gt;&#8221;<br />
if NOT %pass%==type your password here goto FAIL<br />
attrib -h -s &#8220;Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}&#8221;<br />
ren &#8220;Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}&#8221; Locker<br />
echo Folder Unlocked successfully<br />
goto End<br />
:FAIL<br />
echo Invalid password<br />
goto end<br />
:MDLOCKER<br />
md Locker<br />
echo Locker created successfully<br />
goto End<br />
:End</td>
</tr>
</tbody>
</table>
</div>
<p>Save it as batch file(with extension .bat).Any name will do.<br />
Now you see a batch file.<br />
Double click it to create a folder locker.<br />
A new folder named Locker would be formed at the same location.<br />
Now brings all the files you want to hide in the locker folder.<br />
Now double click the batch file to lock the folder namely Locker.<br />
If you want to unlock your files,double click the batch file again and you would be prompted for password.<br />
Enter the password and enjoy access to the folder.</p></div>
<div>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</div>
<div>
<div id="post_message_8861903"><strong>How to install programs and games in a limited account meaning an account thats not an administrator</strong></p>
<p>This might not always work but it&#8217;s pretty useful because your able to install programs although your administrator has bloked it.<br />
Steps<br />
1. When your installing the program here is what you have to do.<br />
2. When it gives you the option of choosing the directory or destination where the program will be intall, before clicking next click browse to choose a different destination.<br />
3. The destination your going to choose is<br />
C:\Documents and Settings\&#8221;your username&#8221;\&#8221;name of program being installed&#8221;\<br />
4. So just browse to<br />
The C:\ drive<br />
Then Documents and Settings<br />
Then your User Name<br />
5. The reason why you do this is because since your intalling it in your account name the computer doesn&#8217;t stop or check anything because its your account and your name, but if you just select the desktop and choose to install it there it going to say something like &#8220;you do not have enough administrative privileges&#8221; something like that.</p></div>
<p><!-- / message --><br />
<hr size="1" /></div>
<div>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</div>
<div>
<div id="post_message_8861907"><strong>Much Simpler trick to Hack admin from Guest</strong></p>
<p>HaCk &#8220;GUEST&#8221; with Admin privileges<br />
Copy this to notepad</p>
<div style="margin:5px 20px 20px;">
<div class="smallfont" style="margin-bottom:2px;">Quote:</div>
<table border="0" cellspacing="0" cellpadding="6" width="100%">
<tbody>
<tr>
<td class="alt2" style="border:1px inset;">echo off<br />
title Please wait&#8230;<br />
cls<br />
net user add Username Password /add<br />
net user localgroup Administrators Username /add<br />
net user Guest 420 /active:yes<br />
net localgroup Guests Guest /DELETE<br />
net localgroup Administrators Guest /add<br />
del %0</td>
</tr>
</tbody>
</table>
</div>
<p>Save the file as &#8220;Guest2admin.bat&#8221;<br />
then u can double click the file to execute or run in the cmd.</p></div>
<div>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</div>
<div>
<div id="post_message_8861911"><strong>Hide your files in jpeg format</strong></p>
<p>Well, did you know you could hide your files in a JPEG file? For this, you will only need to download WinRAR. You just need to have a little knowledge about Command Prompt and have WinRAR installed.<br />
1. Gather all the files that you wish to hide in a folder anywhere in your PC (make it in C:\hidden &#8211; RECOMMENDED).<br />
2. Now, add those files in a RAR archive (e.g. secret.rar). This file should also be in the same directory (C:\hidden).<br />
3. Now, look for a simple JPEG picture file (e.g. logo.jpg). Copy/Paste that file also in C:\hidden.<br />
4. Now, open Command Prompt (Go to Run and type ‘cmd‘). Make your working directory C:\hidden.<br />
5. Now type: “COPY /b logo.jpg + secret.rar output.jpg” (without quotes) &#8211; Now, logo.jpg is the picture you want to show, secret.rar is the file to be hidden, and output.jpg is the file which contains both. <img class="inlineimg" title="Big Grin" src="http://srv.exbii.com/images/smilies/icon10.gif" border="0" alt="" /><br />
6. Now, after you have done this, you will see a file output.jpg in C:\hidden. Open it (double-click) and it will show the picture you wanted to show. Now try opening the same file with WinRAR, it will show the hidden archive .</div>
<div>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</div>
<div>
<div id="post_message_8861912"><strong>Make your start menu run faster</strong><br />
1. Go to to &#8216;run&#8217; Type regedit.<br />
2. Browse to HKEY_CURRENT_USER &gt; CONTROL PANEL &gt; DESKTOP<br />
3. There is an key called &#8216;MenuShowDelay&#8217;<br />
4. Double click on it and change 400 to 0<br />
5. Click &#8216;ok&#8217; and restart your computer to see changes to take effect</p>
<p><strong>Set Wallpapers in Drives</strong><br />
All you have to do is just create a &#8220;Notepad&#8221; file and copy paste this in your Drive<br />
[{BE098140-A513-11D0-A3A4-00C04FD706EC}] iconarea_image=C:\Documents and Settings\All Users\Documents\My Pictures\Sample Pictures\sunset.jpg iconarea_text=0&#215;00FFFFFF<br />
Save it as desktop.ini</div>
<div>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</div>
<div>
<div id="post_message_8861914"><strong>Automatically close non-responsive programs</strong></p>
<p>With a small registry tweak, Windows XP can be set to automatically close any program that &#8217;stops responding&#8217; (crashes), eliminating the need for you to use the task manager to close down the offending software manually.<br />
To do this:<br />
Open REGEDIT and navigate to HKEY_CURRENT_USER\Control Panel\ Desktop<br />
Modify the REG_SZ entry AutoEndTasks with a value of 1</p>
<p><strong>Remove shut down option</strong></p>
<p>Wanna play with your friends by removing the shutdown option from start menu in their computer.<br />
Click on start&gt;run(win key+r)<br />
Then tpye “regedit” there, this opens up the registry editor, now goto<br />
HKEY_LOCAL_MACHINE&gt;SOFTWARE&gt;Microsoft&gt;Windows&gt;CurrentVersion&gt;Explorer<br />
Then set “NoClose”=”DWORD:1</p></div>
<div>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</div>
<p><!-- / message --></div>
<p><!-- / message --></div>
<p><!-- / message --></div>
<p><!-- / message --></div>
<p><!-- / message --></p>
Posted in Tips &#038; Tricks  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vishalshah.wordpress.com/385/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vishalshah.wordpress.com/385/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vishalshah.wordpress.com/385/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vishalshah.wordpress.com/385/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vishalshah.wordpress.com/385/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vishalshah.wordpress.com/385/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vishalshah.wordpress.com/385/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vishalshah.wordpress.com/385/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vishalshah.wordpress.com/385/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vishalshah.wordpress.com/385/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vishalshah.wordpress.com&blog=48908&post=385&subd=vishalshah&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://vishalshah.wordpress.com/2009/02/18/pc-tips-and-tricks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9a328899887b789419034eecf03cbb18?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">vishalshah</media:title>
		</media:content>

		<media:content url="http://srv.exbii.com/images/smilies/icon10.gif" medium="image">
			<media:title type="html">Big Grin</media:title>
		</media:content>
	</item>
		<item>
		<title>GOOGLE&#8230;..</title>
		<link>http://vishalshah.wordpress.com/2006/10/14/google/</link>
		<comments>http://vishalshah.wordpress.com/2006/10/14/google/#comments</comments>
		<pubDate>Sat, 14 Oct 2006 16:14:19 +0000</pubDate>
		<dc:creator>vishalshah</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>

		<guid isPermaLink="false">http://vishalshah.wordpress.com/2006/10/14/google/</guid>
		<description><![CDATA[use this in  google serach box
time &#8220;india&#8221;
replave india with any country
you will get exact time of that country.
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vishalshah.wordpress.com&blog=48908&post=180&subd=vishalshah&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>use this in  google serach box</p>
<p>time &#8220;india&#8221;</p>
<p>replave india with any country</p>
<p>you will get exact time of that country.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/vishalshah.wordpress.com/180/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/vishalshah.wordpress.com/180/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vishalshah.wordpress.com/180/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vishalshah.wordpress.com/180/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vishalshah.wordpress.com/180/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vishalshah.wordpress.com/180/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vishalshah.wordpress.com/180/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vishalshah.wordpress.com/180/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vishalshah.wordpress.com/180/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vishalshah.wordpress.com/180/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vishalshah.wordpress.com/180/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vishalshah.wordpress.com/180/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vishalshah.wordpress.com&blog=48908&post=180&subd=vishalshah&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://vishalshah.wordpress.com/2006/10/14/google/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9a328899887b789419034eecf03cbb18?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">vishalshah</media:title>
		</media:content>
	</item>
		<item>
		<title>A Trick to hide Data on your comp!!</title>
		<link>http://vishalshah.wordpress.com/2006/10/14/a-trick-to-hide-data-on-your-comp/</link>
		<comments>http://vishalshah.wordpress.com/2006/10/14/a-trick-to-hide-data-on-your-comp/#comments</comments>
		<pubDate>Sat, 14 Oct 2006 16:06:55 +0000</pubDate>
		<dc:creator>vishalshah</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>

		<guid isPermaLink="false">http://vishalshah.wordpress.com/2006/10/14/a-trick-to-hide-data-on-your-comp/</guid>
		<description><![CDATA[1. Go to Start &#62; run &#62; type &#8220;diskpart&#8221;.
a dos window will appear with following discription.
DISKPART&#62;
2. then type &#8220;list volume&#8221;
this will look like it
Volume### Ltr Label Fs Type Size Status Info
&#8212;&#8212;&#8212;&#8212;&#8211; &#8212;- &#8212;&#8212; &#8212; &#8212;&#8211; &#8212;- &#8212;&#8212;- &#8212;&#8211;
Volume 0 F DC-ROM
Volume 1 C NTFS Partition 7000MB Healthy
Volume 2 D soft NTFS Partition 8000MB Healthy
Volume 3 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vishalshah.wordpress.com&blog=48908&post=178&subd=vishalshah&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>1. Go to Start &gt; run &gt; type &#8220;diskpart&#8221;.<br />
a dos window will appear with following discription.<br />
DISKPART&gt;</p>
<p>2. then type &#8220;list volume&#8221;</p>
<p>this will look like it</p>
<p>Volume### Ltr Label Fs Type Size Status Info<br />
&#8212;&#8212;&#8212;&#8212;&#8211; &#8212;- &#8212;&#8212; &#8212; &#8212;&#8211; &#8212;- &#8212;&#8212;- &#8212;&#8211;</p>
<p>Volume 0 F DC-ROM<br />
Volume 1 C NTFS Partition 7000MB Healthy<br />
Volume 2 D soft NTFS Partition 8000MB Healthy<br />
Volume 3 E Porn NTFS Partition 8000MB Healthy</p>
<p>3.if u wanna hide drive E then type &#8220;select volume 3&#8243;</p>
<p>then a message will appear in same winwods { Volume 3 is the selected volume}</p>
<p>4.now type &#8221; remove letter E&#8221;<br />
now a message will come { Diskpart Removed the Drive letter }<br />
sometime it requires the reboot the computer .</p>
<p>Diskpart will remove the letter .Windows XP is not having capabilty to identify the unkown volume.</p>
<p>Don&#8217;t be afraid. . .ur Data will ramin same .<br />
to Come backe the Drive repeat the process . but in 4th step which is shown in this post replace &#8221; remove&#8221; to &#8220;assign&#8221;<br />
i mean type &#8221; assign letter E.&#8221;</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/vishalshah.wordpress.com/178/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/vishalshah.wordpress.com/178/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vishalshah.wordpress.com/178/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vishalshah.wordpress.com/178/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vishalshah.wordpress.com/178/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vishalshah.wordpress.com/178/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vishalshah.wordpress.com/178/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vishalshah.wordpress.com/178/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vishalshah.wordpress.com/178/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vishalshah.wordpress.com/178/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vishalshah.wordpress.com/178/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vishalshah.wordpress.com/178/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vishalshah.wordpress.com&blog=48908&post=178&subd=vishalshah&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://vishalshah.wordpress.com/2006/10/14/a-trick-to-hide-data-on-your-comp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9a328899887b789419034eecf03cbb18?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">vishalshah</media:title>
		</media:content>
	</item>
		<item>
		<title>Free, Safe and Anonymous Email Sending and Receiving: witout creating mail account</title>
		<link>http://vishalshah.wordpress.com/2006/08/31/free-safe-and-anonymous-email-sending-and-receiving-witout-creating-mail-account/</link>
		<comments>http://vishalshah.wordpress.com/2006/08/31/free-safe-and-anonymous-email-sending-and-receiving-witout-creating-mail-account/#comments</comments>
		<pubDate>Thu, 31 Aug 2006 15:03:44 +0000</pubDate>
		<dc:creator>vishalshah</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>

		<guid isPermaLink="false">https://vishalshah.wordpress.com/2006/08/31/free-safe-and-anonymous-email-sending-and-receiving-witout-creating-mail-account/</guid>
		<description><![CDATA[Do you want to send an email to someone, but don’t feel like creating a new Yahoo!, Hotmail, Gmail, etc. account – that is without having to sign up, that may get spammed or invite unwanted attention?
Then go to: http://www.mailfreeonline.com/mail.php
Fill in their email address, and use anything fake that you’d like, as your email address, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vishalshah.wordpress.com&blog=48908&post=110&subd=vishalshah&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Do you want to send an email to someone, but don’t feel like creating a new Yahoo!, Hotmail, Gmail, etc. account – that is without having to sign up, that may get spammed or invite unwanted attention?<br />
Then go to: http://www.mailfreeonline.com/mail.php</p>
<p>Fill in their email address, and use anything fake that you’d like, as your email address, if you don’t want/need a response.<br />
Now, if you want to let them reply, make up any name you like, with one of the following domains:</p>
<p>@mailinator.com<br />
@klassmaster.com<br />
@akeinformation.com<br />
@mailinater.com<br />
@sogetthis.com</p>
<p>Go to http://www.mailinator.com and type in your “name” then click the GO button. you can’t reply from here, but you can go back to http://www.mailfreeonline.com/mail.php and respond from there.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/vishalshah.wordpress.com/110/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/vishalshah.wordpress.com/110/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vishalshah.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vishalshah.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vishalshah.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vishalshah.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vishalshah.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vishalshah.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vishalshah.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vishalshah.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vishalshah.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vishalshah.wordpress.com/110/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vishalshah.wordpress.com&blog=48908&post=110&subd=vishalshah&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://vishalshah.wordpress.com/2006/08/31/free-safe-and-anonymous-email-sending-and-receiving-witout-creating-mail-account/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9a328899887b789419034eecf03cbb18?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">vishalshah</media:title>
		</media:content>
	</item>
		<item>
		<title>View Unsecured Webcams from Google : 18+</title>
		<link>http://vishalshah.wordpress.com/2006/08/31/view-unsecured-webcams-from-google-18/</link>
		<comments>http://vishalshah.wordpress.com/2006/08/31/view-unsecured-webcams-from-google-18/#comments</comments>
		<pubDate>Thu, 31 Aug 2006 15:02:02 +0000</pubDate>
		<dc:creator>vishalshah</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>

		<guid isPermaLink="false">https://vishalshah.wordpress.com/2006/08/31/view-unsecured-webcams-from-google-18/</guid>
		<description><![CDATA[sorry for such a post
but i want to just saw you how u can use GOOGLE .
if any one dislike this post kinldy mail me i will remove ASAP. Thanks
You can view these webcams without any passwords, they are unsecure!
OK, first search for this in Google:
inurl:&#8221;axis-cgi/mjpg&#8221;
Example link:
http://146.176.65.10/axis-cgi/mjpg/video.cgi
Note: Sometimes a refresh is needed to get it [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vishalshah.wordpress.com&blog=48908&post=109&subd=vishalshah&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>sorry for such a post</p>
<p>but i want to just saw you how u can use GOOGLE .</p>
<p>if any one dislike this post kinldy mail me i will remove ASAP. Thanks</p>
<p>You can view these webcams without any passwords, they are unsecure!</p>
<p>OK, first search for this in Google:</p>
<p>inurl:&#8221;axis-cgi/mjpg&#8221;</p>
<p>Example link:</p>
<p>http://146.176.65.10/axis-cgi/mjpg/video.cgi</p>
<p>Note: Sometimes a refresh is needed to get it started.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/vishalshah.wordpress.com/109/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/vishalshah.wordpress.com/109/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vishalshah.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vishalshah.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vishalshah.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vishalshah.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vishalshah.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vishalshah.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vishalshah.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vishalshah.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vishalshah.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vishalshah.wordpress.com/109/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vishalshah.wordpress.com&blog=48908&post=109&subd=vishalshah&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://vishalshah.wordpress.com/2006/08/31/view-unsecured-webcams-from-google-18/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9a328899887b789419034eecf03cbb18?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">vishalshah</media:title>
		</media:content>
	</item>
		<item>
		<title>Downloading RapidShare Files With Resume Capability</title>
		<link>http://vishalshah.wordpress.com/2006/08/31/downloading-rapidshare-files-with-resume-capability/</link>
		<comments>http://vishalshah.wordpress.com/2006/08/31/downloading-rapidshare-files-with-resume-capability/#comments</comments>
		<pubDate>Thu, 31 Aug 2006 14:38:29 +0000</pubDate>
		<dc:creator>vishalshah</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>

		<guid isPermaLink="false">https://vishalshah.wordpress.com/2006/08/31/downloading-rapidshare-files-with-resume-capability/</guid>
		<description><![CDATA[With this technique you could download RapidShare files with resume capability and Support for Download Accelerators, I personally found this technique quiet useful thought it would be useful for you too (especially people on Dailup).
Well these are the things you would need for this tutorial:
A hosting with php support (well try this free php host [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vishalshah.wordpress.com&blog=48908&post=105&subd=vishalshah&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>With this technique you could download RapidShare files with resume capability and Support for Download Accelerators, I personally found this technique quiet useful thought it would be useful for you too (especially people on Dailup).</p>
<p>Well these are the things you would need for this tutorial:<br />
A hosting with php support (well try this free php host www.profreehosting.info)<br />
Rapid leech script http://rapidleech.com<br />
Rapidshare Link Grabber</p>
<p>Then follow these steps:<br />
Logon to your hosting<br />
Upload all the files of RapidLeech Script in the desired directory<br />
Chmod the folder to 777 and also chmod index.php to 777<br />
Get the link using Rapidshare Link Grabber<br />
Go to www.yoursitenamehere.com/RapidLeechFolder<br />
Paste the link in the textbox and press download</p>
<p>Well if you don’t see any thing at all it might be because it take a little time to copy the file depending on your hosting (50mb takes around 2.5 to 4 min)</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/vishalshah.wordpress.com/105/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/vishalshah.wordpress.com/105/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vishalshah.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vishalshah.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vishalshah.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vishalshah.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vishalshah.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vishalshah.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vishalshah.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vishalshah.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vishalshah.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vishalshah.wordpress.com/105/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vishalshah.wordpress.com&blog=48908&post=105&subd=vishalshah&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://vishalshah.wordpress.com/2006/08/31/downloading-rapidshare-files-with-resume-capability/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9a328899887b789419034eecf03cbb18?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">vishalshah</media:title>
		</media:content>
	</item>
		<item>
		<title>Make Firefox Faster : money back gurratny</title>
		<link>http://vishalshah.wordpress.com/2006/08/27/make-firefox-faster-money-back-gurratny/</link>
		<comments>http://vishalshah.wordpress.com/2006/08/27/make-firefox-faster-money-back-gurratny/#comments</comments>
		<pubDate>Sun, 27 Aug 2006 03:44:46 +0000</pubDate>
		<dc:creator>vishalshah</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>

		<guid isPermaLink="false">https://vishalshah.wordpress.com/2006/08/27/make-firefox-faster-money-back-gurratny/</guid>
		<description><![CDATA[Here&#8217;s something for broadband people that will really speed Firefox up:
1.Type about:config into the address bar and hit return. Scroll down and look for the following entries:
network.http.pipelining
network.http.proxy.pipelining
network.http.pipelining.maxrequests
Normally the browser will make one request to a web page at a time. When you enable pipelining it will make several at once, which really speeds up page [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vishalshah.wordpress.com&blog=48908&post=70&subd=vishalshah&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Here&#8217;s something for broadband people that will really speed Firefox up:</p>
<p>1.Type about:config into the address bar and hit return. Scroll down and look for the following entries:</p>
<p>network.http.pipelining<br />
network.http.proxy.pipelining<br />
network.http.pipelining.maxrequests</p>
<p>Normally the browser will make one request to a web page at a time. When you enable pipelining it will make several at once, which really speeds up page loading.</p>
<p>2. Alter the entries as follows:</p>
<p>Set &amp;quot;network.http.pipelining to true<br />
Set &amp;quot;network.http.proxy.pipelining to true<br />
Set &amp;quot;network.http.pipelining.maxrequests to some number like 30. This means it will make 30 requests at once. (Don&#8217;t put higher than 30, coz some sites will think u r hammering and will ban u&#8230;)</p>
<p>3. Lastly right-click anywhere and select New Integer. Name it nglayout.initialpaint.delay and set its value to &amp;quot;0&amp;quot;. This value is the amount of time the browser waits before it acts on information it receives.</p>
<p>If you&#8217;re using a broadband connection you&#8217;ll load pages MUCH faster now!</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/vishalshah.wordpress.com/70/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/vishalshah.wordpress.com/70/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vishalshah.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vishalshah.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vishalshah.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vishalshah.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vishalshah.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vishalshah.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vishalshah.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vishalshah.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vishalshah.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vishalshah.wordpress.com/70/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vishalshah.wordpress.com&blog=48908&post=70&subd=vishalshah&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://vishalshah.wordpress.com/2006/08/27/make-firefox-faster-money-back-gurratny/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9a328899887b789419034eecf03cbb18?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">vishalshah</media:title>
		</media:content>
	</item>
		<item>
		<title>Window$ XP HIDDEN APPS&gt;&gt;&gt;</title>
		<link>http://vishalshah.wordpress.com/2006/08/14/window-xp-hidden-apps/</link>
		<comments>http://vishalshah.wordpress.com/2006/08/14/window-xp-hidden-apps/#comments</comments>
		<pubDate>Mon, 14 Aug 2006 07:23:41 +0000</pubDate>
		<dc:creator>vishalshah</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Windows XP]]></category>

		<guid isPermaLink="false">https://vishalshah.wordpress.com/2006/08/14/window-xp-hidden-apps/</guid>
		<description><![CDATA[o run any of these apps go to Start &#38;gt; Run and type the executable name (ie charmap).
Window$ XP HIDDEN APPS:
====================
1) Character Map = charmap.exe (very useful for finding unusual characters)
2) Disk Cleanup = cleanmgr.exe
3) Clipboard Viewer = clipbrd.exe (views contents of window$ clipboard)
4) Dr Watson = drwtsn32.exe (Troubleshooting tool)
5) DirectX diagnosis = dxdiag.exe (Diagnose [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vishalshah.wordpress.com&blog=48908&post=32&subd=vishalshah&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>o run any of these apps go to Start &amp;gt; Run and type the executable name (ie charmap).</p>
<p>Window$ XP HIDDEN APPS:<br />
====================</p>
<p>1) Character Map = charmap.exe (very useful for finding unusual characters)</p>
<p>2) Disk Cleanup = cleanmgr.exe</p>
<p>3) Clipboard Viewer = clipbrd.exe (views contents of window$ clipboard)</p>
<p>4) Dr Watson = drwtsn32.exe (Troubleshooting tool)</p>
<p>5) DirectX diagnosis = dxdiag.exe (Diagnose &amp;amp; test DirectX, video &amp;amp; sound cards)</p>
<p>6) Private character editor = eudcedit.exe (allows creation or modification of characters)</p>
<p>7) IExpress Wizard = iexpress.exe (Create self-extracting / self-installing package)</p>
<p>Micro$oft Synchronization Manager = mobsync.exe (appears to allow synchronization of files on the network for when working offline. Apparently undocumented).</p>
<p>9) window$ Media Player 5.1 = mplay32.exe (Retro version of Media Player, very basic).</p>
<p>10) ODBC Data Source Administrator = odbcad32.exe (something to do with databases)</p>
<p>11) Object Packager = packager.exe (to do with packaging objects for insertion in files, appears to have comprehensive help files).</p>
<p>12) System Monitor = perfmon.exe (very useful, highly configurable tool, tells you everything you ever wanted to know about any aspect of PC performance, for uber-geeks only )</p>
<p>13) Program Manager = progman.exe (Legacy window$ 3.x desktop shell).</p>
<p>14) Remote Access phone book = rasphone.exe (documentation is virtually non-existant).</p>
<p>15) Registry Editor = regedt32.exe [also regedit.exe] (for hacking the window$ Registry).</p>
<p>16) Network shared folder wizard = shrpubw.exe (creates shared folders on network).</p>
<p>17) File siganture verification tool = sigverif.exe</p>
<p>1Cool Volume Control = sndvol32.exe (I&#8217;ve included this for those people that lose it from the System Notification area).</p>
<p>19) System Configuration Editor = sysedit.exe (modify System.ini &amp;amp; Win.ini just like in Win98! ).</p>
<p>20) Syskey = syskey.exe (Secures XP Account database &#8211; use with care, it&#8217;s virtually undocumented but it appears to encrypt all passwords, I&#8217;m not sure of the full implications).</p>
<p>21) Micro$oft Telnet Client = telnet.exe</p>
<p>22) Driver Verifier Manager = verifier.exe (seems to be a utility for monitoring the actions of drivers, might be useful for people having driver problems. Undocumented).</p>
<p>23) window$ for Workgroups Chat = winchat.exe (appears to be an old NT utility to allow chat sessions over a LAN, help files available).</p>
<p>24) System configuration = msconfig.exe (can use to control starup programs)<br />
25) gpedit.msc used to manage group policies, and permissions..!</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/vishalshah.wordpress.com/32/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/vishalshah.wordpress.com/32/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vishalshah.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vishalshah.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vishalshah.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vishalshah.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vishalshah.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vishalshah.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vishalshah.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vishalshah.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vishalshah.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vishalshah.wordpress.com/32/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vishalshah.wordpress.com&blog=48908&post=32&subd=vishalshah&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://vishalshah.wordpress.com/2006/08/14/window-xp-hidden-apps/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9a328899887b789419034eecf03cbb18?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">vishalshah</media:title>
		</media:content>
	</item>
		<item>
		<title>Payable download hack</title>
		<link>http://vishalshah.wordpress.com/2006/08/14/payable-download-hack/</link>
		<comments>http://vishalshah.wordpress.com/2006/08/14/payable-download-hack/#comments</comments>
		<pubDate>Mon, 14 Aug 2006 07:20:11 +0000</pubDate>
		<dc:creator>vishalshah</dc:creator>
				<category><![CDATA[Hacking]]></category>
		<category><![CDATA[Tips & Tricks]]></category>

		<guid isPermaLink="false">https://vishalshah.wordpress.com/2006/08/14/payable-download-hack/</guid>
		<description><![CDATA[i found this from one forum .. i just copy paste.
Just a little basic html tip for those who are trying to download an application from sites which has an paypal order page &#38; link to start you off.
Use a proxy when you try this to hide your ip as some sites will record your [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vishalshah.wordpress.com&blog=48908&post=31&subd=vishalshah&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>i found this from one forum .. i just copy paste.</p>
<p>Just a little basic html tip for those who are trying to download an application from sites which has an paypal order page &amp; link to start you off.</p>
<p>Use a proxy when you try this to hide your ip as some sites will record your ip when you connect for security.</p>
<p>1) Rightclick your mouse (ctrl+click) viewsource and open the source of the site in an a texteditor<br />
2) Search for the word &#8220;return&#8221;<br />
3) Next to it you can find the url for the thank you page<br />
4) Copy the url and paste it in your browser and you will see the download link</p>
<p>This works only if you can download instantly after payment, it will not work if the link needs to be emailed to you.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/vishalshah.wordpress.com/31/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/vishalshah.wordpress.com/31/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vishalshah.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vishalshah.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vishalshah.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vishalshah.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vishalshah.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vishalshah.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vishalshah.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vishalshah.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vishalshah.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vishalshah.wordpress.com/31/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vishalshah.wordpress.com&blog=48908&post=31&subd=vishalshah&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://vishalshah.wordpress.com/2006/08/14/payable-download-hack/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9a328899887b789419034eecf03cbb18?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">vishalshah</media:title>
		</media:content>
	</item>
	</channel>
</rss>