<?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; Firefox</title>
	<atom:link href="http://hackoshit.com/tag/firefox/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.2</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>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>Most Useful Firefox Shortcuts</title>
		<link>http://hackoshit.com/most-useful-firefox-shortcuts/</link>
		<comments>http://hackoshit.com/most-useful-firefox-shortcuts/#comments</comments>
		<pubDate>Thu, 03 Dec 2009 06:35:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Some Fun]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Most]]></category>
		<category><![CDATA[Most Useful Firefox Shortcuts]]></category>
		<category><![CDATA[Shortcuts]]></category>
		<category><![CDATA[Useful]]></category>

		<guid isPermaLink="false">http://hackoshit.com/?p=181</guid>
		<description><![CDATA[Which of these firefox shortcuts do you use most? I use ctrl+enter and ctrl+n most often, even though I knew quite a few others I didnt quite use it. CTRL+TAB will prove to be useful to me to shift through the jungle of tabs I open in the same window! CTRL+T -new tab CRTL+N -New [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;"><img class="aligncenter" src="http://www.firefoxvista.com/firefoxvista/uploads/allimg/080502/0014210.jpg" alt="http://www.firefoxvista.com/firefoxvista/uploads/allimg/080502/0014210.jpg" /><br />
Which of these firefox shortcuts do you use most? I use ctrl+enter and ctrl+n most often, even though I knew quite a few others I didnt quite use it. CTRL+TAB will prove to be useful to me to shift through the jungle of tabs I open in the same window!<span id="more-181"></span><br />
CTRL+T -new tab<br />
CRTL+N -New Window<br />
F5 -refresh<br />
CTRL+ L- Cursor to addressbar<br />
CTRL+K     -Cursor to searchbox<br />
CTRL+W – close tab<br />
CTRL+SHIFT+T- Undo close last close tab<br />
CTRL+ +/-  -Increase or decrease font size<br />
CTRL+F -Find on page<br />
CTRL+ENTER – Adds www. com<br />
CTRL + Shift + Enter – adds www.org<br />
SHIFT+ENTER – www.net<br />
CTRL+TAB – Shifts from tab to tab<br />
CTRL+D -To bookmark a page</p>
]]></content:encoded>
			<wfw:commentRss>http://hackoshit.com/most-useful-firefox-shortcuts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rapidshare &amp; Megaupload Cracked for Firefox</title>
		<link>http://hackoshit.com/rapidshare-and-megaupload-cracked-for-firefox-users/</link>
		<comments>http://hackoshit.com/rapidshare-and-megaupload-cracked-for-firefox-users/#comments</comments>
		<pubDate>Thu, 25 Sep 2008 08:36:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Lean Hacking]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[!]]></category>
		<category><![CDATA[account]]></category>
		<category><![CDATA[And]]></category>
		<category><![CDATA[Cracked]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[for]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[Megaupload]]></category>
		<category><![CDATA[premium]]></category>
		<category><![CDATA[Rapidshare]]></category>
		<category><![CDATA[Users]]></category>

		<guid isPermaLink="false">http://hackoshit.com/?p=77</guid>
		<description><![CDATA[Megaupload Crack: In this way, you can free up the megaupload slots and download whatever you want. Its easy! Just follow these steps: 1. Install this Firefox Extension: CODE http://www.megauplo ad.com/?d= N3RI1U4R Mirror1: http://rapidshare. com/files/ 3313707/megaup. ..2.0-fx. xpi.html Mirror2: http://depositfiles .com/files/ 373277 2. Restart Firefox. 3. Type the megaupload link in the address bar. 4. [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.shodan.in/wp-images/rapidshare-new-look.jpg" alt="hackoshit" /><br />
Megaupload Crack: In this way, you can free up the megaupload slots and download whatever you want. Its easy! Just follow these steps:<br />
<span id="more-77"></span><!--adsense--><br />
1. Install this Firefox Extension:<br />
CODE<br />
http://www.megauplo ad.com/?d= N3RI1U4R<br />
Mirror1: http://rapidshare. com/files/ 3313707/megaup. ..2.0-fx. xpi.html<br />
Mirror2: http://depositfiles .com/files/ 373277</p>
<p>2. Restart Firefox.<br />
3. Type the megaupload link in the address bar.<br />
4. Dont press &#8216;Enter&#8217; or click &#8216;Go&#8217;. Instead go to Tools&gt;Megaupload 2 and click on &#8216;Enable&#8217;<br />
5. Now click &#8216;Go&#8217; and go to the megaupload download page.<br />
6. WROOM!! All Download Slots vacant for you!!</p>
<p>Rapidshare.de Crack: In this way, you can stop the rapidshare timer which the free users get in just a CLICK!! Just follow these steps:<br />
<!--adsense--><br />
1. Install this Firefox Extension:<br />
CODE<br />
http://www.megauplo ad.com/?d= 40CL5HWR<br />
Mirror 1: http://rapidshare. com/files/ 3313781/tix_ now_-0.1- fx.xpi.html<br />
Mirror 2: http://depositfiles .com/files/ 373278</p>
<p>2. Restart Firefox.<br />
3. Go to the rapidshare link and click on &#8216;Free&#8217; to initiate download process.<br />
4. When the timer starts, click on the small &#8216;T&#8217; button located on the bottom-left corner of your Firefox browser.<br />
5. BOOM!!! The TIMER is set to 0!! Download now!!</p>
]]></content:encoded>
			<wfw:commentRss>http://hackoshit.com/rapidshare-and-megaupload-cracked-for-firefox-users/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>

