<?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/"
	>

<channel>
	<title>HackOshit &#187; funny stuf</title>
	<atom:link href="http://hackoshit.com/category/funny-stuf/feed/" rel="self" type="application/rss+xml" />
	<link>http://hackoshit.com</link>
	<description>Learn to Secure Yourself and make fun</description>
	<lastBuildDate>Sun, 25 Dec 2011 12:37:28 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Trick To Rotate Images Of Any Website</title>
		<link>http://hackoshit.com/trick-to-rotate-images-of-any-website/</link>
		<comments>http://hackoshit.com/trick-to-rotate-images-of-any-website/#comments</comments>
		<pubDate>Fri, 12 Aug 2011 12:23:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[funny stuf]]></category>
		<category><![CDATA[Some Fun]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Webx]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Google Chrome]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[Trick To Rotate Images Of Any Website]]></category>

		<guid isPermaLink="false">http://hackoshit.com/?p=321</guid>
		<description><![CDATA[You can rotate images of any website to create wonderful effect’s.To Rotate images we will use javascript codes.Using this trick you can rotate images in Circular, Horizontal, Combination of Circular and horizontal trajectory.The images can also be made to revolve with your mouse movement. Google Chrome,Internet Explorer,Firefox etc and on all websites as well. Trick To Rotate Images in Circular [...]]]></description>
			<content:encoded><![CDATA[<p>You can rotate images of any website to create wonderful effect’s.To Rotate images we will use javascript codes.Using this trick you can rotate images in <strong>Circular</strong>, <strong>Horizontal</strong>, Combination of <strong>Circular and horizontal</strong> trajectory.The images can also be made to revolve with your mouse movement.<br />
<img class="alignnone size-full wp-image-332" title="image-javascript-trick-dance-address-bar-small" src="https://127.0.0.1/HackOShit/wp-content/uploads/2011/08/image-javascript-trick-dance-address-bar-small.jpg" alt="" width="500" height="375" /></p>
<p><strong>Google Chrome</strong>,<strong>Internet Explorer</strong>,<strong>Firefox</strong> etc and on all websites as well.</p>
<p><strong><span style="color: #ff0000;">Trick To Rotate Images in Circular Trajectory in Any Website</span><br />
</strong></p>
<p><span id="more-321"></span>Open any website, copy and paste the following  javascript code in your browser address bar and press <strong>Enter</strong>.The images will start rotating in circular trajectory.</p>
<blockquote>
<blockquote><p><code>javascript:R=0; x1=.1; y1=.05; x2=.25; y2=.24; x3=1.6; y3=.24; x4=300; y4=200; x5=300; y5=200; DI=document.getElementsByTagName("img"); DIL=DI.length; function A(){for(i=0; i-DIL; i++){DIS=DI[ i ].style; DIS.position='absolute'; DIS.left=(Math.sin(R*x1+i*x2+x3)*x4+x5)+"px"; DIS.top=(Math.cos(R*y1+i*y2+y3)*y4+y5)+"px"}R++}setInterval('A()',5); void(0);</code></p>
<p><span style="color: #ff0000;"><strong>Trick To Rotate Images in Horizontal Trajectory in Any Website</strong></span></p>
<p>To rotate images in horizontal trajectory Copy and paste the following javascript code in your browser address bar and press Enter.</p>
<p><code>javascript:R=0; x1=.1; y1=.05; x2=.25; y2=.24; x3=1.6; y3=.24; x4=300; y4=200; x5=300; y5=200; DI=document.getElementsByTagName("img"); DIL=DI.length; function A(){for(i=0; i-DIL; i++){DIS=DI[ i ].style; DIS.position='absolute'; DIS.left=(Math.sin(R*x1+i*x2+x3)*x4+x5)+ "px"; DIS.top=(Math.cos(R*y1+i*y2+y3)*y4+y5)+" px"}R++}setInterval( 'A()',5); void(0);</code></p>
<p><span style="color: #ff0000;"><strong>Trick To Rotate Images in Circular as well as Horizontal Trajectory in Any Website</strong></span></p>
<p>Using this code you will add both the horizontal as well as Circular rotaion effect to images.</p>
<div> <code>javascript:R=0; x1=.1; y1=.05; x2=.25; y2=.24; x3=1.6; y3=.24; x4=300; y4=200; x5=300; y5=200; var DI= document.images; DIL=DI.length; function A(){for(i=0; i &lt; DIL; i++){DIS=DI[ i ].style; DIS.position='absolute'; DIS.left=Math.sin(R*x1+i*x2+x3)*x4+x5+"px"; DIS.top=Math.cos(R*y1+i*y2+y3)*y4+y5+"px"}R++}tag=setInterval('A()',5 );document.onmousedown=function(){clearInterval(tag);for(i=0; i &lt; DIL; i++){DI.style.position="static";}}; void(0)</code></div>
<p><span style="color: #ff0000;"><strong>Trick To Rotate Images in Circular Trajectory on Mouse Movement in Any Website</strong></span></p>
<p>This will add the rotaion effect to images only on mouse movements.Whenever you will move your mouse your images will start rotating.</p>
<blockquote><p><code>javascript:R=0; x1=.1; y1=.05; x2=.25; y2=.24; x3=1.6; y3=.24; x4=100; y4=100; var DI= document.images; DIL=DI.length; function A(_X,_Y){for(i=0; i &lt; DIL; i++){DIS=DI[ i ].style; DIS.position='absolute'; DIS.left=Math.sin(R*x1+i*x2+x3)*x4+_X+"px"; DIS.top=Math.cos(R*y1+i*y2+y3)*y4+_Y+"px"}R++}document.onmousemove=function(event){_X = event.clientX; _Y = event.clientY; A(_X,_Y);};document.onmousedown=function(){for(i=0; i &lt; DIL; i++){DI.style.position="static";}};void(0)</code></p></blockquote>
<p>Use these codes on webpages will large number of images to get better effects.</p></blockquote>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://hackoshit.com/trick-to-rotate-images-of-any-website/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Download Facebook Chat Instant Messenger</title>
		<link>http://hackoshit.com/download-facebook-chat-instant-messenger-for-your-desktop/</link>
		<comments>http://hackoshit.com/download-facebook-chat-instant-messenger-for-your-desktop/#comments</comments>
		<pubDate>Sat, 03 Jul 2010 05:06:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[funny stuf]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Chit Chat Private Message]]></category>
		<category><![CDATA[Download Facebook Chat Instant Messenger For Your Desktop]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Facebook Chat]]></category>
		<category><![CDATA[Facebook Chat Messenger Facebook Instant Messenger Friends Facebook Wall Chat History Chit Chat Private Message Facebook Emoticons Save Facebook Messages Wall To Wall]]></category>
		<category><![CDATA[Facebook Emoticons]]></category>
		<category><![CDATA[Facebook Wall]]></category>
		<category><![CDATA[Friends]]></category>
		<category><![CDATA[Instant Messenger]]></category>
		<category><![CDATA[Messenger]]></category>
		<category><![CDATA[Wall To Wall]]></category>

		<guid isPermaLink="false">http://hackoshit.com/?p=265</guid>
		<description><![CDATA[Chit Chat for Facebook Chit Chat for Facebook is a free instant messenger that allows you to chat with all your Facebook contacts. Chit Chat connects to Facebook Chat and removes the need to use a web-browser to talk over Facebook Chat. Benefits of Chit Chat for Facebook Fun and Free &#8211; Convenient and fun [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Chit Chat for Facebook</strong></p>
<div style="text-align: center;"><img src="http://www.chitchat.org.uk/images/CCFB-MainMenu01.png" border="0" alt="" /></div>
<p><strong>Chit Chat for Facebook </strong>is a <em>free instant  messenger</em> that  allows you to chat with all your Facebook contacts.<br />
Chit Chat connects to Facebook Chat and removes the need to use a   web-browser to talk over Facebook Chat.<br />
<strong> <a rel="nofollow" href="http://files.chitchat.org.uk/CCFFacebookSetup-v1.35.exe" target="_blank"> <span id="more-265"></span><br />
</a></strong><br />
<strong>Benefits of Chit Chat for Facebook</strong></p>
<ul>
<li> <strong>Fun and Free</strong> &#8211; Convenient and fun way to chat with   your Facebook contacts without the hassle of surfing Facebook</li>
<li> <strong>Free Your Web-Browser</strong> &#8211; No need to keep your web  browser  logged into Facebook</li>
<li> <strong>Easy To Use</strong> &#8211; Download, install and then login  with your  Facebook username and password &#8211; easy!</li>
<li> <strong>Popular?</strong> &#8211; Swift and fast tabbed chat Interface  making it  easy to talk to many friends at once</li>
<li> <strong>Instant Message Notification</strong> &#8211; Lets you know when  you  receive an instant message.</li>
</ul>
<p><strong>Below: </strong> Chit Chat  Tabbed Message Window</p>
<p style="text-align: center;"><img src="http://www.chitchat.org.uk/images/CCFB-Conversation01.png" border="0" alt="" /></p>
<p><strong>Above: </strong> Chit Chat  Buddy List<br />
<strong>System Requirements:</strong> Windows XP,Vista,7</p>
<p><strong> <a rel="nofollow" href="http://files.chitchat.org.uk/CCFFacebookSetup-v1.35.exe" target="_blank"></a></strong></p>
<p style="text-align: center;"><strong><a rel="nofollow" href="http://files.chitchat.org.uk/CCFFacebookSetup-v1.35.exe" target="_blank"><img src="http://www.chitchat.org.uk/php/home/button_download_up_english.gif" border="0" alt="" /></a></strong></p>
<p><strong> </strong></p>
<p><strong> </strong><strong>2010-06-23</strong> &#8211; A minority of our users of Facebook  Messenger  users have encountered and error on Chit Chat that reads  &#8220;Login Failed.  Please Try again.&#8221; The issue can be resolved by modifying  your  Facebook account settings. Read the solution to a Failed <a rel="nofollow" href="http://www.chitchat.org.uk/english/press/chit-chat-for-facebook-login-failed-solution/" target="_blank">Chit  Chat for Facebook Login</a> here.</p>
]]></content:encoded>
			<wfw:commentRss>http://hackoshit.com/download-facebook-chat-instant-messenger-for-your-desktop/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Speed Up Your Net By 20%</title>
		<link>http://hackoshit.com/speed-up-your-net-by-20/</link>
		<comments>http://hackoshit.com/speed-up-your-net-by-20/#comments</comments>
		<pubDate>Thu, 03 Dec 2009 09:50:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[funny stuf]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Webx]]></category>
		<category><![CDATA[Winodws hacks]]></category>
		<category><![CDATA[By 20%]]></category>
		<category><![CDATA[Speed Up]]></category>
		<category><![CDATA[Speed Up Your Net By 20%]]></category>
		<category><![CDATA[Your Net]]></category>

		<guid isPermaLink="false">http://hackoshit.com/?p=245</guid>
		<description><![CDATA[Microsoft reserves 20% of your available bandwidth for their own purposes like Windows Updates and interrogating your PC etc You can get it back: Click Start then Run and type &#8220;gpedit.msc&#8221; without quotes.This opens the group policy editor. Then go to: Local Computer Policy &#62; Computer Configuration &#62; Administrative Templates &#62; Network &#62; QOS Packet [...]]]></description>
			<content:encoded><![CDATA[<p>Microsoft reserves 20% of your available bandwidth for their own purposes like Windows Updates and interrogating your PC etc<br />
<img src="http://technogati.com/wp-content/uploads/2009/04/speedup_your_net.png" alt="http://technogati.com/wp-content/uploads/2009/04/speedup_your_net.png" /><br />
You can get it back:</p>
<p>Click Start then Run and type &#8220;gpedit.msc&#8221; without quotes.This opens the group policy editor. Then go to:<br />
<span><span id="more-245"></span><br />
Local Computer Policy &gt;<br />
Computer Configuration &gt;<br />
Administrative Templates &gt;<br />
Network &gt;<br />
QOS Packet Scheduler &gt;<br />
then to Limit Reservable Bandwidth</p>
<p>Double click on Limit Reservable bandwidth. It will say it is not configured, but the truth is under the &#8216;Explain&#8217; tab i.e.&#8221;By default,the Packet Scheduler limits the system to 20 percent of the bandwidth of a connection, but you can use this setting to override the default.&#8221;<br />
So the trick is to ENABLE reservable bandwidth, then set it to ZERO.<br />
This will allow the system to reserve nothing, rather than the default 20%. It works on Win 2000 as well.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://hackoshit.com/speed-up-your-net-by-20/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Download Youtube Video in .mp4 Format</title>
		<link>http://hackoshit.com/download-youtube-video-in-mp4-format/</link>
		<comments>http://hackoshit.com/download-youtube-video-in-mp4-format/#comments</comments>
		<pubDate>Thu, 03 Dec 2009 09:34:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[funny stuf]]></category>
		<category><![CDATA[Some Fun]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Webx]]></category>
		<category><![CDATA[.mp4]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[Download Youtube Video in .mp4 Format]]></category>
		<category><![CDATA[Format]]></category>
		<category><![CDATA[in]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[YouTube]]></category>

		<guid isPermaLink="false">http://hackoshit.com/?p=239</guid>
		<description><![CDATA[- Download Youtube video in mp4 format without using any software or any website using a simple javascript. - This script let you download Youtube video directly from the website without any delay. - Below is the code to download a video from the you tube,copy-paste this code into the address bar when your desired [...]]]></description>
			<content:encoded><![CDATA[<p>- Download Youtube video in mp4 format without using any software or any website using a simple javascript.</p>
<p>- This script let you download Youtube video directly from the website without any delay.<br />
<span><br />
- Below is the code to download a video from the you tube,copy-paste this code into the address bar when your desired video starts buffering.<br />
</span><img src="http://www.bloggerspoint.com/wp-content/uploads/2009/05/youtube-video.jpg" alt="http://www.bloggerspoint.com/wp-content/uploads/2009/05/youtube-video.jpg" /><br />
<span><span id="more-239"></span><br />
- <strong>copy this script into address bar:</strong></p>
<p>javascript:if(document.location.href.match(/http://[a-zA-Z.]*youtube.com/watch/)){document.location.href=&#8217;http://www.youtube.com/get_video?fmt=&#8217;+(isHDAvailable?&#8217;22&#8242;:&#8217;18&#8242;)+&#8217;&amp;video_ id=&#8217;+swfArgs['video_id']+&#8217;&amp;t=&#8217;+swfArgs['t']}</span></p>
]]></content:encoded>
			<wfw:commentRss>http://hackoshit.com/download-youtube-video-in-mp4-format/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Hide User Accounts in Win XP Welcome Screen</title>
		<link>http://hackoshit.com/hide-user-accounts-in-windows-xp-welcome-screen/</link>
		<comments>http://hackoshit.com/hide-user-accounts-in-windows-xp-welcome-screen/#comments</comments>
		<pubDate>Thu, 03 Dec 2009 06:48:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[funny stuf]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Winodws hacks]]></category>
		<category><![CDATA[Accounts]]></category>
		<category><![CDATA[Hide]]></category>
		<category><![CDATA[Hide User Accounts in Windows XP Welcome Screen]]></category>
		<category><![CDATA[in]]></category>
		<category><![CDATA[Screen]]></category>
		<category><![CDATA[User]]></category>
		<category><![CDATA[Welcome]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[XP]]></category>

		<guid isPermaLink="false">http://hackoshit.com/?p=189</guid>
		<description><![CDATA[The welcome screen displays all of the local users on the system, except the built-in administrator account that was created during setup. Hide Your User Account If we want to hide a specific user from the list, we need to create a special value under this registry key: HKEY_LOCAL_MACHINESoftwareMicrosoftWindows NTCurrentVersionWinlogonSpecialAccountsUserList Under this key you simply [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;"><img class="aligncenter" src="http://www.intelliadmin.com/images/Welcome_Sceeen_Full_20060812.jpg" alt="http://www.intelliadmin.com/images/Welcome_Sceeen_Full_20060812.jpg" /><br />
The welcome screen displays all of the local users on the system, except the built-in administrator account that was created during setup.<span id="more-189"></span><br />
<strong>Hide Your User Account</strong><br />
If we want to hide a specific user from the list, we need to create a special value under this registry key:<br />
HKEY_LOCAL_MACHINESoftwareMicrosoftWindows<br />
NTCurrentVersionWinlogonSpecialAccountsUserList<br />
Under this key you simply create a new DWORD value – the name matches the users name exactly, and the value is one of the following (Decimal format)<br />
0 – Hides the user just from the welcome screen<br />
1 – The user is shown<br />
<strong><br />
Before you start putting values in this key, I want to warn you. This tip is particularly dangerous. If you make the wrong move, you could make it nearly impossible to get back into your system. (Use safe mode if you mess up, to get back in)</strong><br />
To disable the users I want, I browse to the registry key on my system:<br />
Now I want to hide all of the accounts except my own, so I add each of the accounts shown on the welcome screen, and give them a value of zero.<br />
<a href="http://photobucket.com/" target="_blank"><br />
</a><br />
<strong>How do you log on now that you are a hidden user?</strong><br />
If you are running windows XP Professional you simply need to press CTRL-ALT-DEL twice, and the standard logon screen will be displayed. This has one pitfall – it will fail to work if a user is still currently logged in. If you are having trouble getting it to show, then reboot and press it twice before any users have logged in. <strong>(I have not tested this in Windows XP Home…Some people say that the standard logon screen won’t come up (maybe they didn’t get all of the windows updates?), if that happens boot into safe mode and edit the registry back to normal)</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://hackoshit.com/hide-user-accounts-in-windows-xp-welcome-screen/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Unblock or Bypass Orkut Restrictions</title>
		<link>http://hackoshit.com/unblock-or-to-bypass-orkut-restrictions-%e2%80%93-latest-proxies/</link>
		<comments>http://hackoshit.com/unblock-or-to-bypass-orkut-restrictions-%e2%80%93-latest-proxies/#comments</comments>
		<pubDate>Thu, 03 Dec 2009 06:43:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[funny stuf]]></category>
		<category><![CDATA[hackOshit]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Webx]]></category>
		<category><![CDATA[latest]]></category>
		<category><![CDATA[or]]></category>
		<category><![CDATA[orkut]]></category>
		<category><![CDATA[Proxies]]></category>
		<category><![CDATA[Restrictions]]></category>
		<category><![CDATA[to Bypass]]></category>
		<category><![CDATA[Unblock]]></category>
		<category><![CDATA[Unblock or to Bypass Orkut Restrictions – Latest Proxies]]></category>

		<guid isPermaLink="false">http://hackoshit.com/?p=183</guid>
		<description><![CDATA[Hi friends, since I am getting a lot of comments on how to unblock or to bypass orkut restrictions, I have been on the look out for new proxies. Bennet at circumventor has a great list of proxy sites. I had subscribed to his newsletter  and got these proxies. I have not tried them out, [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;"><img class="aligncenter" src="http://www.infobarrel.com/media/image/1538.gif" alt="http://www.infobarrel.com/media/image/1538.gif" /><br />
Hi friends, since I am getting a lot of comments on how to unblock or to bypass orkut restrictions, I have been on the look out for new proxies. Bennet at circumventor has a great list of proxy sites. I had subscribed to his newsletter  and got these proxies. I have not tried them out, since Orkut is no longer blocked in my college.<br />
You can reply to comments using these proxies by using reply option.<br />
Please send in your valuable comments.<br />
Use http / https<span id="more-183"></span><br />
<a href="http://www.yogurtgland.com/" target="_blank">http://www.yogurtgland.com</a><br />
<a href="http://www.olivejoke.com/" target="_blank">http://www.olivejoke.com/</a><br />
<a href="http://www.turtlebride.com/" target="_blank">http://www.turtlebride.com/</a><br />
<a href="http://www.cashcrumpet.com/" target="_blank">http://www.cashcrumpet.com/</a><br />
<a href="http://www.swanbike.com/" target="_blank">http://www.swanbike.com/</a><br />
<a href="http://www.filterdisable.com/" target="_blank">http://www.FilterDisable.com/</a><br />
<a href="http://www.plumfriend.com/" target="_blank">http://www.plumfriend.com/</a><br />
<a href="http://www.clattercup.com/" target="_blank">http://www.clattercup.com/</a><br />
<a href="http://www.gravityguy.com/" target="_blank">http://www.gravityguy.com/</a><br />
<a href="http://www.crimepuff.com/" target="_blank">http://www.crimepuff.com/</a><br />
<a href="http://www.clubsurfer.com/" target="_blank">http://www.clubsurfer.com/</a><br />
<a href="http://www.grapemouse.com/" target="_blank">http://www.grapemouse.com/</a><br />
<a href="http://www.goldpuddle.com/" target="_blank">http://www.goldpuddle.com/</a><br />
<a href="http://www.fancysportscar.com/" target="_blank">http://www.fancysportscar.com/</a><br />
<a href="http://www.headcross.com/" target="_blank">http://www.headcross.com/</a><br />
<a href="http://www.youngcheese.com/" target="_blank">http://www.youngcheese.com/</a><br />
<a href="http://www.fearbutter.com/" target="_blank">http://www.fearbutter.com/</a><br />
<a href="http://www.leafdrink.com/" target="_blank">http://www.leafdrink.com/</a><br />
<a href="http://www.turtlejar.com/" target="_blank">http://www.turtlejar.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://hackoshit.com/unblock-or-to-bypass-orkut-restrictions-%e2%80%93-latest-proxies/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Cool Tricks With Google</title>
		<link>http://hackoshit.com/cool-tric-with-google%e2%80%8f/</link>
		<comments>http://hackoshit.com/cool-tric-with-google%e2%80%8f/#comments</comments>
		<pubDate>Fri, 26 Dec 2008 13:15:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[funny stuf]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Cool]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Tric]]></category>
		<category><![CDATA[trick]]></category>
		<category><![CDATA[With]]></category>

		<guid isPermaLink="false">http://hackoshit.com/?p=91</guid>
		<description><![CDATA[1. Go to Code: http://www.google. com 2. Click &#8220;images&#8221; 3. Fill in &#8220;bikes, flowers, cars&#8221; or any other words. 4. You will get a page with a lot of images thumbnailed. 5. Now delete the URL on the addressbar. 6. 6. Copy the script down here, and paste it in your adressbar: javascript:R= 0; x1=.1; y1=.05; [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="aligncenter" src="http://www.techcrunch.com/wp-content/google-video-homepage.png" alt="HackOshit" /></p>
<p>1. Go to Code: http://www.google. com</p>
<p>2. Click &#8220;images&#8221;</p>
<p>3. Fill in &#8220;bikes, flowers, cars&#8221; or any other words.<br />
<span id="more-91"></span><!--adsense--><br />
4. You will get a page with a lot of images thumbnailed.</p>
<p>5. Now delete the URL on the addressbar.</p>
<p>6. 6. Copy the script down here, and paste it in your adressbar:</p>
<p>javascript:R= 0; x1=.1; y1=.05; x2=.25; y2=.24; x3=1.6; y3=.24; x4=300; y4=200; x5=300; y5=200; DI= document.images ; DIL=DI.length; function A(){for(i=0; i&lt;DIL; i++){DIS=DI[ i ].style; DIS.position= &#8216;absolute&#8217; ; DIS.left=Math. sin(R*x1+ i*x2+x3)* x4+x5; DIS.top=Math. cos(R*y1+ i*y2+y3)* y4+y5}R++ }setInterval( &#8216;A()&#8217;,5); void(0)<br />
<!--adsense--><br />
7. Press Enter and see the magic&#8230;.</p>
]]></content:encoded>
			<wfw:commentRss>http://hackoshit.com/cool-tric-with-google%e2%80%8f/feed/</wfw:commentRss>
		<slash:comments>41</slash:comments>
		</item>
	</channel>
</rss>

