<?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; Webx</title>
	<atom:link href="http://hackoshit.com/category/webx/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 Multiple Free Files From Rapidshare</title>
		<link>http://hackoshit.com/download-multiple-free-files-from-rapidshare/</link>
		<comments>http://hackoshit.com/download-multiple-free-files-from-rapidshare/#comments</comments>
		<pubDate>Sat, 20 Nov 2010 10:16:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[hackOshit]]></category>
		<category><![CDATA[RapidShare Tips]]></category>
		<category><![CDATA[Some Fun]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Webx]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[Download Multiple Free Files From Rapidshare]]></category>
		<category><![CDATA[Files]]></category>
		<category><![CDATA[from]]></category>
		<category><![CDATA[Multiple Free]]></category>
		<category><![CDATA[Rapidshare]]></category>

		<guid isPermaLink="false">http://hackoshit.com/?p=277</guid>
		<description><![CDATA[Rapidshare allows to download only a single file at a time with free account. If you want to download multiple files at the same time, you need to buy a premium account but now you can download multiple files from Rapidshare free account without paying anything with RapidShare Download Accelerator. With RapidShare Download Accelerator, you [...]]]></description>
			<content:encoded><![CDATA[<p>Rapidshare allows to download only a single file at a time with free account. If  you want to download multiple files at the same time, you need to buy a  premium account but now you can download multiple files from Rapidshare  free account without paying anything with RapidShare Download Accelerator.</p>
<p><a href="http://1.bp.blogspot.com/_Va0H6DMcb9c/SY1g7s9XG-I/AAAAAAAAB2c/ujI4DpxhWOY/s1600-h/rapidshare_download_accelarator.jpg" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"><img id="BLOGGER_PHOTO_ID_5299998915282017250" src="http://1.bp.blogspot.com/_Va0H6DMcb9c/SY1g7s9XG-I/AAAAAAAAB2c/ujI4DpxhWOY/s400/rapidshare_download_accelarator.jpg" border="0" alt="" /></a><br />
<span id="more-277"></span><br />
With  RapidShare Download Accelerator, you can add all the files you’d like  to download, and it will do all the annoying work for you. Now you can  just sit back and watch your files  download without paying a dime.<br />
<strong> Links : <a href="http://themoviefind.com/rapidshare/" target="_blank">Download  Rapidshare Download Accelerator</a></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://hackoshit.com/download-multiple-free-files-from-rapidshare/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>orkut Increase Fans Really Amazing</title>
		<link>http://hackoshit.com/orkut-increase-fans-working-code-really-amazing/</link>
		<comments>http://hackoshit.com/orkut-increase-fans-working-code-really-amazing/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 19:59:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Webx]]></category>
		<category><![CDATA[amazing]]></category>
		<category><![CDATA[Fans]]></category>
		<category><![CDATA[Increase]]></category>
		<category><![CDATA[orkut]]></category>
		<category><![CDATA[orkut Increase Fans ( Working Code ) Really Amazing]]></category>
		<category><![CDATA[Really]]></category>
		<category><![CDATA[Working Code]]></category>

		<guid isPermaLink="false">http://hackoshit.com/?p=260</guid>
		<description><![CDATA[Follow the steps: 1) Create a fake account or simply login with ur friends Id.. and add yourself as a friend there. 2) Visit the FRIENDS page by logging into your just created fake account or the Friends account. 3) Point your cursor on the fan icon () beside your real profile. Note your status [...]]]></description>
			<content:encoded><![CDATA[<p><strong><strong>Follow the steps:</strong><br />
</strong><img src="http://vil.nai.com/images/orkut_phish_2309_1.jpg" alt="http://vil.nai.com/images/orkut_phish_2309_1.jpg" /><br />
<strong> <strong>1) Create a fake account or simply login with ur friends Id.. and add  yourself as a friend there.</strong></strong></p>
<p><strong><strong>2) Visit the FRIENDS page by logging into your just created fake  account or the Friends account.</strong><br />
<span id="more-260"></span><strong>3) Point your cursor on the fan icon () beside your real profile.  Note your status bar. It should be showing something like  javascript:setKarma(&#8216;FRUS*******/US*******&#8217;). Note the code FRUS*******  and US******* somewhere. Now, click on the star so as to make your fake  account<a name="more" href="http://crazyscriptz.blogspot.com/2009/12/orkut-increase-fans-working-code-really.html"></a> a fan of your real account.</strong></strong></p>
<p><strong><strong>4) Copy the following code to your address bar (The location where  you type </strong><a rel="nofollow" href="http://www.orkut.com/" target="_blank"><strong>http://www.orkut.com</strong></a><strong> ).  Replace FRUS******* and US******* in the following script with the one  you noted in the above step.<br />
</strong></strong><br />
javascript:function  cmd(){window.location=&#8221;/setkarma?cat=0&amp;val=3&amp;gid=FRUS*******/US*******&#8221;;}void(setInterval(cmd,2000));<strong></strong></p>
<p><strong>5) Hit ENTER key of your keyboard. The page will keep on reloading and  your fans will keep on increasing with an approximate speed of 6 fans  per second untl you close the window.</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://hackoshit.com/orkut-increase-fans-working-code-really-amazing/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>If Orkut Blocked..Surf Anonymously using JAP!!</title>
		<link>http://hackoshit.com/if-orkut-blocked-surf-anonymously-using-jap/</link>
		<comments>http://hackoshit.com/if-orkut-blocked-surf-anonymously-using-jap/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 19:55:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Hacking & Securities]]></category>
		<category><![CDATA[Lean Hacking]]></category>
		<category><![CDATA[Some Fun]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Webx]]></category>
		<category><![CDATA[Anonymously]]></category>
		<category><![CDATA[Blocked]]></category>
		<category><![CDATA[If]]></category>
		<category><![CDATA[If Orkut Blocked..Surf Anonymously using JAP!!]]></category>
		<category><![CDATA[JAP!!]]></category>
		<category><![CDATA[orkut]]></category>
		<category><![CDATA[Surf]]></category>
		<category><![CDATA[using]]></category>

		<guid isPermaLink="false">http://hackoshit.com/?p=258</guid>
		<description><![CDATA[No problem if orkut/youtube etc is blocked in your office or college or school….and you are fed up of using proxy websites and there low urfing speeds.And what worse if these proxy websites are also blocked…..phew!!!! But no problems….. Download JAP &#38; Download Ultrasurf and easily surf any blocked website with anonymity Step 1: Download [...]]]></description>
			<content:encoded><![CDATA[<div>
<p style="text-align: center;"><img class="aligncenter" src="http://hackingtriks.files.wordpress.com/2007/10/jap1.jpg?w=446&amp;h=380" alt="jap1.jpg" width="446" height="380" /></p>
</div>
<div>No problem if  orkut/youtube etc is blocked in your office or college or school….and  you are fed up of using proxy websites and there low urfing speeds.And  what worse if these proxy websites are also blocked…..phew!!!!<br />
But no problems…..<br />
<span id="more-258"></span></div>
<div>Download <strong><a href="http://infogaufire.googlepages.com/japsetup.exe" target="_blank">JAP</a></strong> &amp; Download <strong><a href="http://infogaufire.googlepages.com/Ultrasurf.zip" target="_blank">Ultrasurf</a></strong> and easily surf any blocked website with anonymity</div>
<div></div>
<div>Step 1: Download JAP or ultrasurf<br />
Step 2: Execute Setup file [may take few  minutes depending upon internet speed]<br />
Step 3: Change you Explorer LAN connection  settings</p>
<p>Change the default gateway IP  to 127.0.0.1 and port 4001<br />
Thats it you have gained independence to  free to surf any website….</p></div>
]]></content:encoded>
			<wfw:commentRss>http://hackoshit.com/if-orkut-blocked-surf-anonymously-using-jap/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to Create an Invisible Folder in Windows XP</title>
		<link>http://hackoshit.com/how-to-create-an-invisible-folder-in-windows-xp/</link>
		<comments>http://hackoshit.com/how-to-create-an-invisible-folder-in-windows-xp/#comments</comments>
		<pubDate>Thu, 03 Dec 2009 09:54:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Hacking & Securities]]></category>
		<category><![CDATA[Lean Hacking]]></category>
		<category><![CDATA[Some Fun]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Webx]]></category>
		<category><![CDATA[Winodws hacks]]></category>
		<category><![CDATA[an]]></category>
		<category><![CDATA[Create]]></category>
		<category><![CDATA[Folder]]></category>
		<category><![CDATA[How]]></category>
		<category><![CDATA[How to Create an Invisible Folder in Windows XP]]></category>
		<category><![CDATA[in]]></category>
		<category><![CDATA[invisible]]></category>
		<category><![CDATA[to]]></category>
		<category><![CDATA[Windows XP]]></category>

		<guid isPermaLink="false">http://hackoshit.com/?p=248</guid>
		<description><![CDATA[You Can Make Any Folder Invisible Without Using Any Software Or Program Just Follow These Steps: 1. Right click where ever you want the invisible folder to be and select create a new folder. 2 Right Click on the folder and hit rename. Erase the name of the folder so there is nothing there. 3. [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.techpavan.com/wp-content/uploads/2008/02/invisible-folder-selected.gif" alt="http://www.techpavan.com/wp-content/uploads/2008/02/invisible-folder-selected.gif" /><br />
You Can Make Any Folder Invisible Without Using Any Software Or Program Just Follow These Steps:</p>
<p>1. Right click where ever you want the invisible folder to be and select create a new folder.</p>
<p>2 Right Click on the folder and hit rename. Erase the name of the folder so there is nothing there.</p>
<p><span id="more-248"></span><br />
3. If you try to stop here windows will tell you that you need to provide a name. So to get around this with the name field still active hold down ALT and press 0160 on the number pad (make sure Num Lock is on), release alt<br />
<span><br />
You should now have a blank name with nothing but a folder next to it</p>
<p>4. Now click on the nameless folder and right click. Select Properties.</p>
<p>5. Go to the Customize tab.</p>
<p>6. Find and press the Change Icon button. Scroll through the icons until you find one that has no image.</p>
<p>7. Hit OK and you have an invisible folder!</p>
<p>With the invisible folder you can hide what ever undesirables you have. Be it video games at work, pictures of your family or anything else you can think of &#8220;wink&#8221;.</p>
<p>The folder will show up for a brief second if you put it on your desktop. For that reason it might be smart to place it inside a folder or amongst a group of folders.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://hackoshit.com/how-to-create-an-invisible-folder-in-windows-xp/feed/</wfw:commentRss>
		<slash:comments>14</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>Make Firefox More Faster 300% Working</title>
		<link>http://hackoshit.com/make-firefox-more-faster-300-working/</link>
		<comments>http://hackoshit.com/make-firefox-more-faster-300-working/#comments</comments>
		<pubDate>Thu, 03 Dec 2009 09:38:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Lean Hacking]]></category>
		<category><![CDATA[Some Fun]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Webx]]></category>
		<category><![CDATA[Winodws hacks]]></category>
		<category><![CDATA[300%]]></category>
		<category><![CDATA[Faster]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Make]]></category>
		<category><![CDATA[Make Firefox More Faster 300% Working]]></category>
		<category><![CDATA[More]]></category>
		<category><![CDATA[Working]]></category>

		<guid isPermaLink="false">http://hackoshit.com/?p=241</guid>
		<description><![CDATA[Step_1: Open Firefox and type about:config in the address bar where you normally type a web address. Step_2: Then click the button: &#8220;I&#8217;ll be careful, I promise&#8221;. Step_3: In the filter bar below the address bar type network.http. Step_4: Double-click on &#8220;network.http.pipelining&#8221; to change the setting from false to true. Step_5: Double-click on &#8220;network.http.proxy.pipelining&#8221; to [...]]]></description>
			<content:encoded><![CDATA[<p>Step_1: Open Firefox and type  about:config in the address bar where you normally type a web address.</p>
<p>Step_2:  Then click the button:  &#8220;I&#8217;ll be careful, I promise&#8221;.</p>
<p>Step_3: In the filter bar below the address bar type  network.http.</p>
<p>Step_4:  Double-click on  &#8220;network.http.pipelining&#8221; to change the setting from false to true.<br />
<span><br />
Step_5: Double-click on  &#8220;network.http.proxy.pipelining&#8221; to change the value from false to true.<br />
</span><img src="http://techravings.info/wp-content/uploads/2009/03/firefox-fast.jpg" alt="http://techravings.info/wp-content/uploads/2009/03/firefox-fast.jpg" /><br />
<span><span id="more-241"></span><br />
Step_6: Double-click on &#8220;network.http.pipelining.maxrequests&#8221; and change the number to &#8220;30&#8243;. This means it will make 30 requests at once.<br />
(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>Step_7: Several lines above network.http.proxy.pipelining you’ll see<br />
&#8220;network.http.max-persistant-connections-per-proxy&#8221; and<br />
&#8220;network.http.max-persistant-connections-per-server&#8221;.<br />
Double-click each line and change the value to &#8220;8&#8243;.</p>
<p>Step_8: Two lines up locate and double-click on  &#8220;network.http.max-connections&#8221; and set the value to  &#8220;48&#8243;.</p>
<p>Step_9: Now right-click (control-click on a Mac) anywhere in the configuration (the area where you’ve been making the changes). Select &#8220;New&#8221; then &#8220;Integer&#8221;.</p>
<p>Step_10:  When prompted, copy and paste or type the following into the field provided: nglayout.initialpaint.delay.</p>
<p>Step_11: When prompted to add a value, enter the number &#8220;0&#8243;. This value is the amount of time the browser waits before it acts on information it recieves.</p>
<p>Step_12: Close all windows and tabs. The changes will take effect when you restart Firefox.</p>
<p><span style="font-family: Lucida Console;">These changes allow Firefox to make multiple server connections and will speed up page downloads for better, more efficient use of your broadband connection. If you&#8217;re using a broadband connection you&#8217;ll load pages MUCH faster now!</span></span></p>
]]></content:encoded>
			<wfw:commentRss>http://hackoshit.com/make-firefox-more-faster-300-working/feed/</wfw:commentRss>
		<slash:comments>4</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>Free Premium Sites Login</title>
		<link>http://hackoshit.com/free-premium-sites-login/</link>
		<comments>http://hackoshit.com/free-premium-sites-login/#comments</comments>
		<pubDate>Thu, 03 Dec 2009 09:25:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Lean Hacking]]></category>
		<category><![CDATA[Some Fun]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Webx]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[Free Premium Sites Login]]></category>
		<category><![CDATA[premium]]></category>
		<category><![CDATA[Sites Login]]></category>

		<guid isPermaLink="false">http://hackoshit.com/?p=234</guid>
		<description><![CDATA[1:-Unlimited Games Download Premium Account 100% working account unlimitedgamedownloads.com Your username: ga20me Your password: ke01feb 2:-UseNeXT Premium Accounts Usenext Premium Accounts With 5 Gb 100% all working accounts =============================== =============================== Username: avi-6466316-30e Password: BCCAA502 =============================== =============================== Username: avi-6473442-39b Password: 0C234FDA =============================== =============================== Username: avi-6476519-f68 Password: 53CB3837 =============================== =============================== Username: avi-6476651-09c Password: BA2ACB43 =============================== =============================== Username: [...]]]></description>
			<content:encoded><![CDATA[<p>1:-Unlimited Games Download Premium Account<br />
100% working account</p>
<p>unlimitedgamedownloads.com</p>
<p>Your username: ga20me<br />
Your password: ke01feb<br />
<span><br />
2:-UseNeXT Premium Accounts<br />
Usenext Premium Accounts With 5 Gb<br />
100% all working accounts<br />
</span><img src="http://i.ehow.com/images/GlobalPhoto/Articles/4738679/loginvz1_Full.jpg" alt="http://i.ehow.com/images/GlobalPhoto/Articles/4738679/loginvz1_Full.jpg" /><br />
<span><span id="more-234"></span><br />
===============================<br />
===============================</p>
<p>Username: avi-6466316-30e<br />
Password: BCCAA502</p>
<p>===============================<br />
===============================</p>
<p>Username: avi-6473442-39b<br />
Password: 0C234FDA</p>
<p>===============================<br />
===============================</p>
<p>Username: avi-6476519-f68<br />
Password: 53CB3837</p>
<p>===============================<br />
===============================</p>
<p>Username: avi-6476651-09c<br />
Password: BA2ACB43</p>
<p>===============================</p>
<p>===============================<br />
Username: avi-6482793-f48<br />
Password: 9AAE2013</p>
<p>===============================<br />
===============================</p>
<p>Username: avi-6489589-0f2<br />
Password: CC0EAFA1</p>
<p>===============================<br />
===============================</p>
<p>Username: avi-6490156-94b<br />
Password: 8C2089A0</p>
<p>===============================<br />
===============================</p>
<p>Username: avi-6497671-3c4<br />
Password: 4DDC4BA3</p>
<p>===============================<br />
===============================</p>
<p>Username: avi-6427952-b73<br />
Password: BB73C4B4</p>
<p>===============================<br />
===============================</p>
<p>Username: avi-6432192-297<br />
Password: 22221B37</p>
<p>===============================<br />
===============================</p>
<p>Username: avi-6456819-ee0<br />
Password: 20EBC567</p>
<p>===============================<br />
===============================</p>
<p>Username: avi-6457865-fa5<br />
Password: F5823665</p>
<p>===============================<br />
===============================</p>
<p>Username: avi-6465001-542<br />
Password: 9C0BE83F</span></p>
]]></content:encoded>
			<wfw:commentRss>http://hackoshit.com/free-premium-sites-login/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>View Zip/Rar File Before Downloading</title>
		<link>http://hackoshit.com/view-ziprar-file-before-downloading/</link>
		<comments>http://hackoshit.com/view-ziprar-file-before-downloading/#comments</comments>
		<pubDate>Thu, 03 Dec 2009 09:19:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Some Fun]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Webx]]></category>
		<category><![CDATA[Before]]></category>
		<category><![CDATA[Downloading]]></category>
		<category><![CDATA[File]]></category>
		<category><![CDATA[of]]></category>
		<category><![CDATA[The Contents]]></category>
		<category><![CDATA[View]]></category>
		<category><![CDATA[View The Contents of Zip/Rar File Before Downloading]]></category>
		<category><![CDATA[Zip/Rar]]></category>

		<guid isPermaLink="false">http://hackoshit.com/?p=232</guid>
		<description><![CDATA[Most of the files we download from the Internet are in Zip or Rar format. We wouldn’t like if we download an archive to find that the file we are looking for is not there. And it is also such a waste of Bandwidth and time to download a whole archive just for a single [...]]]></description>
			<content:encoded><![CDATA[<p>Most of the files we download from the Internet are in Zip or Rar format. We wouldn’t like if we download an archive to find that the file we are looking for is not there.<br />
And it is also such a waste of Bandwidth and time to download a whole archive just for a single file. Archview is a Firefox addon that lets you preview the contents of an Archive before downloading. And using it you can even download a single file from the archive.<span><br />
<img src="http://i39.tinypic.com/4tagps.png" border="0" alt="" width="403" height="268" /></span><br />
<span><span id="more-232"></span><br />
Currently it supports only RAR, ZIP and ISO format but that should be enough as they are the 2 most popular and common formats being used today. Archview adds itself to the stats bar and becomes active when the user clicks on a zip or rar link. It displays the contents almost instantly and presents the files of the archive in an XML or HTML interface. And what’s more, it even lets you download individual files for an archive, now no need to download a 10 MB archive for a file of 100 Kb that is inside.</p>
<p>The future version will also add support for the 7z format. It supports Firefox 2 and Firefox 3. It is definitely a great add on that can save you a lot of bandwidth.</p>
<p><img src="http://i39.tinypic.com/4tagps.png" border="0" alt="" /></p>
<p><strong><a href="https://addons.mozilla.org/en-US/firefox/addon/5028">Download<small></small></a></strong></p>
<p></span></p>
]]></content:encoded>
			<wfw:commentRss>http://hackoshit.com/view-ziprar-file-before-downloading/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

