<?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:series="http://unfoldingneurons.com/"
	>

<channel>
	<title>Tech With Ric &#187; fast</title>
	<atom:link href="http://techwithric.com/tag/fast/feed" rel="self" type="application/rss+xml" />
	<link>http://techwithric.com</link>
	<description>Nothing else but tech!</description>
	<lastBuildDate>Wed, 01 Sep 2010 17:35:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Most Efficient Way of Including jQuery in your WordPress Theme</title>
		<link>http://techwithric.com/most-efficient-way-of-including-jquery-in-your-wordpress-theme</link>
		<comments>http://techwithric.com/most-efficient-way-of-including-jquery-in-your-wordpress-theme#comments</comments>
		<pubDate>Wed, 02 Jun 2010 16:09:46 +0000</pubDate>
		<dc:creator>Richie Sajan</dc:creator>
				<category><![CDATA[How-to]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[ajaz]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[contact fomr 7 ajax not work wordpress]]></category>
		<category><![CDATA[disable include jquery wordpress]]></category>
		<category><![CDATA[fast]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[how to load wordpress template files with jquery]]></category>
		<category><![CDATA[including jquery wordpress]]></category>
		<category><![CDATA[including scripts in wordpress theme functions file]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[jquery load wordpress]]></category>
		<category><![CDATA[jquery wordpress prevent including multiple times]]></category>
		<category><![CDATA[most efficient themes in wordpress]]></category>
		<category><![CDATA[Speed Wordpress Up]]></category>
		<category><![CDATA[way]]></category>
		<category><![CDATA[wordpress ajax execute theme function]]></category>
		<category><![CDATA[wordpress force jquery load]]></category>
		<category><![CDATA[wordpress jquery include file with get]]></category>

		<guid isPermaLink="false">http://techwithric.com/?p=665</guid>
		<description><![CDATA[WordPress by default comes bundled with the jQuery framework. You can find it in the wp-includes\js\jquery directory. Many themes use this framework extensively for various effects and widgets alike. Unless you are on a dedicated server or are using a CDN, chances are that jQuery takes a whole lot of time to load. The best [...]


Related posts:<ol><li><a href='http://techwithric.com/disable-auto-jump-in-wordpresss-read-more' rel='bookmark' title='Permanent Link: Disable Auto Jump in WordPress&#8217;s Read More'>Disable Auto Jump in WordPress&#8217;s Read More</a></li>
<li><a href='http://techwithric.com/how-to-enable-network-mode-in-wordpress-3-0-beta-1' rel='bookmark' title='Permanent Link: How to Enable Network Mode in WordPress 3.0 beta 1'>How to Enable Network Mode in WordPress 3.0 beta 1</a></li>
<li><a href='http://techwithric.com/divide-a-wordpress-post-into-multiple-pages' rel='bookmark' title='Permanent Link: Divide a WordPress Post into Multiple Pages'>Divide a WordPress Post into Multiple Pages</a></li>
<li><a href='http://techwithric.com/how-to-solve-the-warning-date-function-date-error-in-wordpress' rel='bookmark' title='Permanent Link: How to Solve the &#8216;Warning: date() [function.date]:&#8217; Error in WordPress'>How to Solve the &#8216;Warning: date() [function.date]:&#8217; Error in WordPress</a></li>
<li><a href='http://techwithric.com/how-to-upgrade-your-wordpress-installation' rel='bookmark' title='Permanent Link: How to Upgrade Your WordPress Installation'>How to Upgrade Your WordPress Installation</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-666" title="wordpress_logo_3d" src="http://media.techwithric.com/img/wordpress_logo_3d.jpg" alt="wordpress_logo_3d" width="130" height="130" />WordPress by default comes bundled with the jQuery framework. You can find it in the wp-includes\js\jquery directory. Many themes use this framework extensively for various effects and widgets alike. Unless you are on a dedicated server or are using a CDN, chances are that jQuery takes a whole lot of time to load. The best way is to speed up this process is to include the jQuery library fomr the Google&#8217;s  Ajax Libraries API. Read on to learn how to include it in your theme.<span id="more-665"></span></p>
<p>Actually the method is quite simple. If your theme includes a direct jQuery call from the <strong>header.php</strong> (usually will be written like</p>
<blockquote><p>&lt;script type=&#8217;text/javascript&#8217; src=&#8217;http://domain-name.tld/wp-includes/js/jqueryjquery.min.js?ver=2.9.2&#8242;&gt;&lt;/script&gt;</p></blockquote>
<p>or something similar) just delete the line.</p>
<p>If your theme designer had adopted efficient programming practices, he would have used the <a href="http://codex.wordpress.org/Function_Reference/wp_enqueue_script" target="_blank">wp_enqueue_script()</a> function. It can be identified by going to your <strong>Theme Functions (functions.php) </strong>file of your theme.</p>
<p>Now to include the script from Google`s  Ajax Libraries API servers, just insert the following code into the <strong>Theme Functions (functions.php) </strong>file of your theme:</p>
<blockquote><p>// smart jquery inclusion<br />
if (!is_admin()) {<br />
wp_deregister_script(&#8216;jquery&#8217;);<br />
wp_register_script(&#8216;jquery&#8217;, (&#8220;http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js&#8221;), false);<br />
wp_enqueue_script(&#8216;jquery&#8217;);<br />
}</p></blockquote>
<p>Once done, save the file and your done. To check if the change has occurred, load your blog&#8217;s home page (or any other page for that matter). Now press Ctrl+Shift+R to force refresh the page.</p>
<p>Now take a look at the page source (Ctrl+U or <strong>View</strong> =&gt; <strong>Source</strong>). If the following line appears, you have successfully included this hack into your wordpress blog:</p>
<blockquote><p>&lt;script type=&#8217;text/javascript&#8217; src=&#8217;http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js?ver=2.9.2&#8242;&gt;&lt;/script&gt;</p></blockquote>
<p>The advantage of this hack is that your page loading times will get faster and in lieu better!</p>


<p>Related posts:<ol><li><a href='http://techwithric.com/disable-auto-jump-in-wordpresss-read-more' rel='bookmark' title='Permanent Link: Disable Auto Jump in WordPress&#8217;s Read More'>Disable Auto Jump in WordPress&#8217;s Read More</a></li>
<li><a href='http://techwithric.com/how-to-enable-network-mode-in-wordpress-3-0-beta-1' rel='bookmark' title='Permanent Link: How to Enable Network Mode in WordPress 3.0 beta 1'>How to Enable Network Mode in WordPress 3.0 beta 1</a></li>
<li><a href='http://techwithric.com/divide-a-wordpress-post-into-multiple-pages' rel='bookmark' title='Permanent Link: Divide a WordPress Post into Multiple Pages'>Divide a WordPress Post into Multiple Pages</a></li>
<li><a href='http://techwithric.com/how-to-solve-the-warning-date-function-date-error-in-wordpress' rel='bookmark' title='Permanent Link: How to Solve the &#8216;Warning: date() [function.date]:&#8217; Error in WordPress'>How to Solve the &#8216;Warning: date() [function.date]:&#8217; Error in WordPress</a></li>
<li><a href='http://techwithric.com/how-to-upgrade-your-wordpress-installation' rel='bookmark' title='Permanent Link: How to Upgrade Your WordPress Installation'>How to Upgrade Your WordPress Installation</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://techwithric.com/most-efficient-way-of-including-jquery-in-your-wordpress-theme/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Easiest Way to Schedule a Computer Shutdown</title>
		<link>http://techwithric.com/easiest-way-to-shcedule-a-computer-shutdown</link>
		<comments>http://techwithric.com/easiest-way-to-shcedule-a-computer-shutdown#comments</comments>
		<pubDate>Mon, 31 May 2010 11:56:33 +0000</pubDate>
		<dc:creator>Richie Sajan</dc:creator>
				<category><![CDATA[How-to]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[cmd]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[computer]]></category>
		<category><![CDATA[easy]]></category>
		<category><![CDATA[fast]]></category>
		<category><![CDATA[prompt]]></category>
		<category><![CDATA[schedule]]></category>
		<category><![CDATA[shutdown]]></category>
		<category><![CDATA[way]]></category>

		<guid isPermaLink="false">http://techwithric.com/?p=657</guid>
		<description><![CDATA[I listen to music all the while. Be it traveling, studying or even while trying to sleep. Talking about sleep, its not always convenient nor economical to leave you computer switched on all night. So an easy way out could be to tell someone in your family to switch off the computer after you&#8217;ve dozed [...]


Related posts:<ol><li><a href='http://techwithric.com/find-out-the-last-time-a-computer-was-used' rel='bookmark' title='Permanent Link: Find Out the Last Time a Computer Was Used'>Find Out the Last Time a Computer Was Used</a></li>
<li><a href='http://techwithric.com/how-to-clean-virus-from-pendrives' rel='bookmark' title='Permanent Link: How To Clean Virus From Pendrives'>How To Clean Virus From Pendrives</a></li>
<li><a href='http://techwithric.com/how-to-fix-virus-converting-pen-drive-icon-to-folder-icon' rel='bookmark' title='Permanent Link: How to Fix : Virus Converting Pen Drive Icon to Folder Icon'>How to Fix : Virus Converting Pen Drive Icon to Folder Icon</a></li>
<li><a href='http://techwithric.com/3-ways-to-install-a-wordpress-plugin' rel='bookmark' title='Permanent Link: 3 Ways to Install A WordPress Plugin'>3 Ways to Install A WordPress Plugin</a></li>
<li><a href='http://techwithric.com/linux-a-virus-free-os-truth-or-myth' rel='bookmark' title='Permanent Link: ‘Linux: A Virus-Free OS’ – Truth or Myth?'>‘Linux: A Virus-Free OS’ – Truth or Myth?</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-661" title="shutdown" src="http://media.techwithric.com/img/shutdown.jpg" alt="shutdown_logo" width="111" height="111" />I listen to music all the while. Be it traveling, studying or even while trying to sleep. Talking about sleep, its not always convenient nor economical to leave you computer switched on all night. So an easy way out could be to tell someone in your family to switch off the computer after you&#8217;ve dozed off or still better, don&#8217;t trouble anyone and schedule a computer shutdown by yourself!<span id="more-657"></span></p>
<p>Well there are two ways here. One is the software way and the other is the command prompt way. Yeah cmd does look a little intimidating but just here me out. Once you complete the following steps, you&#8217;ll see how easy it really is.</p>
<ol>
<li>So first you&#8217;ll have to go to <strong>Start</strong> =&gt; <strong>Run </strong>or Start+R.</li>
<li>Now just type the following<br />
<blockquote><p>shutdown.exe -s -t 20</p></blockquote>
</li>
</ol>
<p>Thats it! But <strong>don&#8217;t press OK or Enter yet</strong>. There&#8217;s some explanation to be done with.</p>
<p>So the command that you&#8217;ve entered here is shutdown.exe -s -t 20. Lets break it down now.</p>
<ul>
<li>shutdown.exe : Quite self explanatory. The program which shut&#8217;s down your computer.</li>
<li>-s : Called as an argument, it says to shutdown the computer. Similarly if you would replace it with -r, the computer would have restarted -l would have logged of the computer.</li>
<li>-t : Again an argument. It functions as a timer. The number succeeding it is the number of seconds the computer must wait before shutting down. So 20 here says the computer to shut-down after 20 seconds.</li>
</ul>
<p>You could change the time. Suppose you want the computer to shutdown after 15 minutes, just enter the period in seconds. 15&#215;60 = 900.</p>
<div id="attachment_658" class="wp-caption aligncenter" style="width: 310px"><img class="size-full wp-image-658 " title="computer-shutdown tutorial" src="http://media.techwithric.com/img/computer-shutdown-tutorial.gif" alt="computer-shutdown tutorial" width="300" height="275" /><p class="wp-caption-text">Animation showing the computer shutdown process. </p></div>
<p><strong>Trick:</strong> Although this is not needed, this step can add a cool message to your shutdown window. Just add a -c &#8220;comment&#8221; to the earlier command. You can replace comment with anything you like. eg:</p>
<blockquote><p>shutdown.exe -s -t 900 -c &#8220;This shutdown has been inititaed bby Richie &#8211; the greatest hacker!&#8221;</p></blockquote>
<p>You&#8217;ll get a cool message like this:</p>
<div id="attachment_659" class="wp-caption aligncenter" style="width: 291px"><img class="size-full wp-image-659" title="shutdown_with_comment" src="http://media.techwithric.com/img/shutdown_with_comment.png" alt="shutdown_with_comment" width="281" height="254" /><p class="wp-caption-text">Shutdown with Comment</p></div>
<p>You could use the following table for your reference as to which arguments to use:</p>
<table>
<tbody>
<tr>
<th>Argument</th>
<th>Used for</th>
</tr>
<tr>
<td>-i</td>
<td>Display GUI interface, must be the first option</td>
</tr>
<tr>
<td>-l</td>
<td>Log off (cannot be used with -m option)</td>
</tr>
<tr>
<td>-s</td>
<td>Shutdown the computer</td>
</tr>
<tr>
<td>-r</td>
<td>Shutdown and restart the computer</td>
</tr>
<tr>
<td>-a</td>
<td>Abort a system shutdown</td>
</tr>
<tr>
<td>-m \\computername</td>
<td>Remote computer to shutdown/restart/abort</td>
</tr>
<tr>
<td>-t xx</td>
<td>Set timeout for shutdown to xx seconds</td>
</tr>
<tr>
<td>-c &#8220;comment&#8221;</td>
<td>Shutdown comment (maximum of 127 characters)</td>
</tr>
<tr>
<td>-f</td>
<td>Forces running applications to close without warning</td>
</tr>
<tr>
<td>-d [u][p]:xx:yy</td>
<td>The reason code for the shutdown:</p>
<p>u is the user code<br />
p is a planned shutdown code<br />
xx is the major reason code (positive integer less than 256)<br />
yy is the minor reason code (positive integer less than 65536)</td>
</tr>
</tbody>
</table>


<p>Related posts:<ol><li><a href='http://techwithric.com/find-out-the-last-time-a-computer-was-used' rel='bookmark' title='Permanent Link: Find Out the Last Time a Computer Was Used'>Find Out the Last Time a Computer Was Used</a></li>
<li><a href='http://techwithric.com/how-to-clean-virus-from-pendrives' rel='bookmark' title='Permanent Link: How To Clean Virus From Pendrives'>How To Clean Virus From Pendrives</a></li>
<li><a href='http://techwithric.com/how-to-fix-virus-converting-pen-drive-icon-to-folder-icon' rel='bookmark' title='Permanent Link: How to Fix : Virus Converting Pen Drive Icon to Folder Icon'>How to Fix : Virus Converting Pen Drive Icon to Folder Icon</a></li>
<li><a href='http://techwithric.com/3-ways-to-install-a-wordpress-plugin' rel='bookmark' title='Permanent Link: 3 Ways to Install A WordPress Plugin'>3 Ways to Install A WordPress Plugin</a></li>
<li><a href='http://techwithric.com/linux-a-virus-free-os-truth-or-myth' rel='bookmark' title='Permanent Link: ‘Linux: A Virus-Free OS’ – Truth or Myth?'>‘Linux: A Virus-Free OS’ – Truth or Myth?</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://techwithric.com/easiest-way-to-shcedule-a-computer-shutdown/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Opera Mini 5 Soon to be Released for iPhone</title>
		<link>http://techwithric.com/opera-mini-5-soon-to-be-released-for-iphone</link>
		<comments>http://techwithric.com/opera-mini-5-soon-to-be-released-for-iphone#comments</comments>
		<pubDate>Wed, 24 Mar 2010 06:13:21 +0000</pubDate>
		<dc:creator>Richie Sajan</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[fast]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[mini]]></category>
		<category><![CDATA[opera]]></category>
		<category><![CDATA[way]]></category>

		<guid isPermaLink="false">http://techwithric.com/?p=469</guid>
		<description><![CDATA[Wow, this is got to be great news for all iPhone fans. Opera Mini has successfully been run on iPhone in the Opera Labs, and is expected to soon be released in the Apps Store. Watch the video to see exactly what you can expect once the internationally-acclaimed mobile browser gets released on the iPhone [...]


Related posts:<ol><li><a href='http://techwithric.com/geek-fun-solution-to-iphone-4-signal-reception-issue' rel='bookmark' title='Permanent Link: [Geek Fun] Solution to iPhone 4 Signal Reception Issue'>[Geek Fun] Solution to iPhone 4 Signal Reception Issue</a></li>
<li><a href='http://techwithric.com/browser-wars-chrome-overtakes-safari' rel='bookmark' title='Permanent Link: Browser Wars: Chrome Overtakes Safari'>Browser Wars: Chrome Overtakes Safari</a></li>
<li><a href='http://techwithric.com/wordpress-3-0-beta-1-released-screenshots' rel='bookmark' title='Permanent Link: WordPress 3.0, Beta 1 Released + Screenshots'>WordPress 3.0, Beta 1 Released + Screenshots</a></li>
<li><a href='http://techwithric.com/3-ways-to-get-any-browsers-share-statistics' rel='bookmark' title='Permanent Link: 3 Ways to Get any Browser&#8217;s Share Statistics'>3 Ways to Get any Browser&#8217;s Share Statistics</a></li>
<li><a href='http://techwithric.com/how-to-activate-loop-gprswap' rel='bookmark' title='Permanent Link: How to Activate Loop GPRS/WAP'>How to Activate Loop GPRS/WAP</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-470" title="opera-mini-logo" src="http://media.techwithric.com/img/opera-mini-logo.jpg" alt="" width="118" height="111" />Wow, this is got to be great news for all iPhone fans. Opera Mini has successfully been run on iPhone in the Opera Labs, and is expected to soon be released in the Apps Store. Watch the video to see exactly what you can expect once the internationally-acclaimed mobile browser gets released on the iPhone platform.<span id="more-469"></span><br />
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="640" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube-nocookie.com/v/OpTCS3g-cBY&amp;hl=en_US&amp;fs=1&amp;rel=0" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="640" height="385" src="http://www.youtube-nocookie.com/v/OpTCS3g-cBY&amp;hl=en_US&amp;fs=1&amp;rel=0" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>The tests in the video shows that Opera Mini could render  upto 5 pages, on a 2G Edge network, in the time the phone&#8217;s default browser renders 1 page! In other word nearly 5 times faster surfing.</p>
<p>If you aren&#8217;t an iPhone user, there&#8217;s a pretty good chance that your phone-specific Opera Mini has been released. You can download it from <a href="http://m.opera.com/" target="_blank">here</a>.</p>


<p>Related posts:<ol><li><a href='http://techwithric.com/geek-fun-solution-to-iphone-4-signal-reception-issue' rel='bookmark' title='Permanent Link: [Geek Fun] Solution to iPhone 4 Signal Reception Issue'>[Geek Fun] Solution to iPhone 4 Signal Reception Issue</a></li>
<li><a href='http://techwithric.com/browser-wars-chrome-overtakes-safari' rel='bookmark' title='Permanent Link: Browser Wars: Chrome Overtakes Safari'>Browser Wars: Chrome Overtakes Safari</a></li>
<li><a href='http://techwithric.com/wordpress-3-0-beta-1-released-screenshots' rel='bookmark' title='Permanent Link: WordPress 3.0, Beta 1 Released + Screenshots'>WordPress 3.0, Beta 1 Released + Screenshots</a></li>
<li><a href='http://techwithric.com/3-ways-to-get-any-browsers-share-statistics' rel='bookmark' title='Permanent Link: 3 Ways to Get any Browser&#8217;s Share Statistics'>3 Ways to Get any Browser&#8217;s Share Statistics</a></li>
<li><a href='http://techwithric.com/how-to-activate-loop-gprswap' rel='bookmark' title='Permanent Link: How to Activate Loop GPRS/WAP'>How to Activate Loop GPRS/WAP</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://techwithric.com/opera-mini-5-soon-to-be-released-for-iphone/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reduce Firefox&#8217;s Memory Usage with Memory Fox</title>
		<link>http://techwithric.com/reduce-firefoxs-memory-usage-with-memory-fox</link>
		<comments>http://techwithric.com/reduce-firefoxs-memory-usage-with-memory-fox#comments</comments>
		<pubDate>Wed, 06 Jan 2010 13:43:42 +0000</pubDate>
		<dc:creator>Richie Sajan</dc:creator>
				<category><![CDATA[Browser]]></category>
		<category><![CDATA[FireFox]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[add-on.]]></category>
		<category><![CDATA[download memory fox]]></category>
		<category><![CDATA[fast]]></category>
		<category><![CDATA[how to reduce firefox memory usage]]></category>
		<category><![CDATA[memory]]></category>
		<category><![CDATA[memory fox]]></category>
		<category><![CDATA[memory fox addon tutorial]]></category>
		<category><![CDATA[memory fox alternative]]></category>
		<category><![CDATA[memory fox google mail]]></category>
		<category><![CDATA[memory fox options]]></category>
		<category><![CDATA[read more]]></category>
		<category><![CDATA[reduce]]></category>
		<category><![CDATA[speed]]></category>
		<category><![CDATA[up]]></category>
		<category><![CDATA[usage]]></category>

		<guid isPermaLink="false">http://techwithric.com/?p=364</guid>
		<description><![CDATA[Firefox is undoubtedly one of the best browser out there. Be it the speed, the security or the extend of customization, Firefox leads the pack. But one complaint, that all users of this great browser have in common, is the huge memory usage by it. In my 248 MB of memory, it uses up about [...]


Related posts:<ol><li><a href='http://techwithric.com/use-google-url-shortener-service-goo-gl-from-firefox' rel='bookmark' title='Permanent Link: Use Google URL shortener service Goo.gl from FireFox'>Use Google URL shortener service Goo.gl from FireFox</a></li>
<li><a href='http://techwithric.com/two-firefox-add-ons-to-manage-your-twitter-accounts' rel='bookmark' title='Permanent Link: Two Firefox add-ons to Manage your Twitter Accounts'>Two Firefox add-ons to Manage your Twitter Accounts</a></li>
<li><a href='http://techwithric.com/2-free-utilities-to-recover-deleted-files' rel='bookmark' title='Permanent Link: 2 Free Utilities to Recover Deleted Files'>2 Free Utilities to Recover Deleted Files</a></li>
<li><a href='http://techwithric.com/opera-mini-5-soon-to-be-released-for-iphone' rel='bookmark' title='Permanent Link: Opera Mini 5 Soon to be Released for iPhone'>Opera Mini 5 Soon to be Released for iPhone</a></li>
<li><a href='http://techwithric.com/3-ways-to-get-any-browsers-share-statistics' rel='bookmark' title='Permanent Link: 3 Ways to Get any Browser&#8217;s Share Statistics'>3 Ways to Get any Browser&#8217;s Share Statistics</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-367" title="fast-firefox" src="http://media.techwithric.com/img/fast-firefox.jpeg" alt="" width="150" height="120" />Firefox is undoubtedly one of the best browser out there. Be it the speed, the security or the extend of customization, Firefox leads the pack. But one complaint, that all users of this great browser have in common, is the huge memory usage by it. In my 248 MB of memory, it uses up about 100 MB for itself, which roughly translates to about 40%. So here is a great add-on that will help you in this regard.<span id="more-364"></span></p>
<p>Memory Fox is a new add-on for firefox that considerably reduces Firefox&#8217;s memory usage. You can check out the below screen-shots taken by me.</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-365" title="memory-fox-comparison" src="http://media.techwithric.com/img/memory-fox-comparison.png" alt="" width="356" height="264" /></p>
<p>Indeed its, good. Nearly 33 MB or 13 % of RAM recovered! Memory Fox primarily operates by flushing for memory recovery. As the developer stats:</p>
<blockquote><p>&#8220;Memory Fox&#8221;, focuses on two ( 2 ) types of memory usage and with flushing  for memory recovery. When resource requirements ( <em>Stack and Heap</em> ) have  been reached, according to the user&#8217;s preset option settings, the  memory will be flushed and recovered from <em>Fragmented Orphaned</em> ram  memories.</p></blockquote>
<p>You can read more about the add-on from <a href="http://memoryfox.blogspot.com/" target="_blank">here</a>. The add-on is available for download at the Add-ons for Firefox site, <a href="https://addons.mozilla.org/en-US/firefox/addon/53880" target="_blank">here</a>.</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-366" title="Memory_Fox_activate" src="http://media.techwithric.com/img/Memory_Fox_activate.png" alt="" width="420" height="278" /></p>
<p>Once installed you can activate the add-on by going to <strong>Tools</strong> =&gt; <strong>Memory Fox</strong> =&gt; <strong>Activate Memory Fox</strong> or alternatively use the short cut Alt+A. Note that this add-on is still experimental and user discretion is advised.</p>
<p>First Image Credits: <a href="http://www.orcon.net.nz/lifestyle/page/5_useful_firefox_add_ons" target="_blank">Orcon.net.nz</a>. Technorati <span class="status">short code 7VFEZM729PBK.</span></p>
<div id="_mcePaste" style="overflow: hidden; position: absolute; left: -10000px; top: 930px; width: 1px; height: 1px;">http://www.orcon.net.nz/lifestyle/page/5_useful_firefox_add_onsO</div>


<p>Related posts:<ol><li><a href='http://techwithric.com/use-google-url-shortener-service-goo-gl-from-firefox' rel='bookmark' title='Permanent Link: Use Google URL shortener service Goo.gl from FireFox'>Use Google URL shortener service Goo.gl from FireFox</a></li>
<li><a href='http://techwithric.com/two-firefox-add-ons-to-manage-your-twitter-accounts' rel='bookmark' title='Permanent Link: Two Firefox add-ons to Manage your Twitter Accounts'>Two Firefox add-ons to Manage your Twitter Accounts</a></li>
<li><a href='http://techwithric.com/2-free-utilities-to-recover-deleted-files' rel='bookmark' title='Permanent Link: 2 Free Utilities to Recover Deleted Files'>2 Free Utilities to Recover Deleted Files</a></li>
<li><a href='http://techwithric.com/opera-mini-5-soon-to-be-released-for-iphone' rel='bookmark' title='Permanent Link: Opera Mini 5 Soon to be Released for iPhone'>Opera Mini 5 Soon to be Released for iPhone</a></li>
<li><a href='http://techwithric.com/3-ways-to-get-any-browsers-share-statistics' rel='bookmark' title='Permanent Link: 3 Ways to Get any Browser&#8217;s Share Statistics'>3 Ways to Get any Browser&#8217;s Share Statistics</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://techwithric.com/reduce-firefoxs-memory-usage-with-memory-fox/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10 Tips to Make your WordPress Blog Faster</title>
		<link>http://techwithric.com/10-tips-to-make-your-wordpress-blog-faster</link>
		<comments>http://techwithric.com/10-tips-to-make-your-wordpress-blog-faster#comments</comments>
		<pubDate>Mon, 21 Dec 2009 12:16:15 +0000</pubDate>
		<dc:creator>Richie Sajan</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[fast]]></category>
		<category><![CDATA[faster]]></category>
		<category><![CDATA[how to make your wordpress blog faster]]></category>
		<category><![CDATA[quick]]></category>
		<category><![CDATA[way]]></category>

		<guid isPermaLink="false">http://techwithric.com/?p=285</guid>
		<description><![CDATA[WordPress undoubtedly is one of the best and most widely used blogging (or CMS?) platform in the world. Be it the wide support or the great many number of plugins, to the power of customization in ones hand, its so good. But as they say, along with great power comes great responsibility. As people just [...]


Related posts:<ol><li><a href='http://techwithric.com/how-to-solve-the-%e2%80%98warning-implode-function-implode%e2%80%99-error-in-wordpress' rel='bookmark' title='Permanent Link: How to Solve the ‘Warning: implode() [function.implode]:’ Error in WordPress'>How to Solve the ‘Warning: implode() [function.implode]:’ Error in WordPress</a></li>
<li><a href='http://techwithric.com/5-tips-for-newbie-bloggers' rel='bookmark' title='Permanent Link: 5 Tips for Newbie Bloggers'>5 Tips for Newbie Bloggers</a></li>
<li><a href='http://techwithric.com/3-ways-to-install-a-wordpress-plugin' rel='bookmark' title='Permanent Link: 3 Ways to Install A WordPress Plugin'>3 Ways to Install A WordPress Plugin</a></li>
<li><a href='http://techwithric.com/how-to-upgrade-your-wordpress-installation' rel='bookmark' title='Permanent Link: How to Upgrade Your WordPress Installation'>How to Upgrade Your WordPress Installation</a></li>
<li><a href='http://techwithric.com/divide-a-wordpress-post-into-multiple-pages' rel='bookmark' title='Permanent Link: Divide a WordPress Post into Multiple Pages'>Divide a WordPress Post into Multiple Pages</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://media.techwithric.com/img/wordpress-speed.jpg"><img class="alignleft size-full wp-image-286" title="wordpress-speed" src="http://media.techwithric.com/img/wordpress-speed.jpg" alt="" width="116" height="116" /></a>WordPress undoubtedly is one of the best and most widely used blogging (or CMS?) platform in the world. Be it the wide support or the great many number of plugins, to the power of customization in ones hand, its so good. But as they say, along with great power comes great responsibility. As people just went on adding plugins, themes <em>et al</em>, the loading times of some blogs have gone through the roof. Here are some wuick tips to speed up your blog.<span id="more-285"></span></p>
<ol>
<li>Use a limited number of plugins. (recommended is not more that 20)</li>
<li>Reduce the number of php calls your template makes. Refer <a href="http://ferenc.biz/archives/speed-up-wordpress-reduce-php-http-calls/" target="_blank">this article</a> for some quick changes</li>
<li>Serve your images from a sub-domain on your server. Refer <a href="http://www.wpflash.com/2009/01/10/how-to-store-images-in-different-folder-or-subdomain/" target="_blank">this article</a> to achieve this step.</li>
<li>Use a limited number of images in your template.</li>
<li>Optimize images the right way. Heres a <a href="http://www.techpavan.com/2009/06/03/image-optimization-websites-load-fast-optimize-performance-speed/" target="_blank">good article</a> from <a href="http://www.techpavan.com/2009/06/03/image-optimization-websites-load-fast-optimize-performance-speed/" target="_blank">techpavan</a>.</li>
<li>Use a caching plugin like <a href="http://wordpress.org/extend/plugins/hyper-cache/" target="_blank">Hyper Cache</a>, <a href="http://wordpress.org/extend/plugins/wp-super-cache/" target="_blank">Super Cache</a> or <a href="http://wordpress.org/extend/plugins/w3-total-cache/" target="_blank">W3 total cache</a>.</li>
<li>Insert javascripts (like that of statistics) from your footer.php.</li>
<li>Compress your style-sheet. Use <a href="http://www.cssdrive.com/index.php/main/csscompressor/" target="_blank">this CSS compressor</a>.</li>
<li>Use the Closure Compiler to compress your javascripts.</li>
<li>Enable caching and GZipping from your .htacess. Refer to this article for other .htacess hacks along with the above mentioned ones.</li>
</ol>
<p>Hmm. Definitely a checklist to be followed. Leaving the 5th point the rest are only one-time hacks. Just do it once and enjoy its benefits forever! Got some more tips? Share them.</p>


<p>Related posts:<ol><li><a href='http://techwithric.com/how-to-solve-the-%e2%80%98warning-implode-function-implode%e2%80%99-error-in-wordpress' rel='bookmark' title='Permanent Link: How to Solve the ‘Warning: implode() [function.implode]:’ Error in WordPress'>How to Solve the ‘Warning: implode() [function.implode]:’ Error in WordPress</a></li>
<li><a href='http://techwithric.com/5-tips-for-newbie-bloggers' rel='bookmark' title='Permanent Link: 5 Tips for Newbie Bloggers'>5 Tips for Newbie Bloggers</a></li>
<li><a href='http://techwithric.com/3-ways-to-install-a-wordpress-plugin' rel='bookmark' title='Permanent Link: 3 Ways to Install A WordPress Plugin'>3 Ways to Install A WordPress Plugin</a></li>
<li><a href='http://techwithric.com/how-to-upgrade-your-wordpress-installation' rel='bookmark' title='Permanent Link: How to Upgrade Your WordPress Installation'>How to Upgrade Your WordPress Installation</a></li>
<li><a href='http://techwithric.com/divide-a-wordpress-post-into-multiple-pages' rel='bookmark' title='Permanent Link: Divide a WordPress Post into Multiple Pages'>Divide a WordPress Post into Multiple Pages</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://techwithric.com/10-tips-to-make-your-wordpress-blog-faster/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<series:name><![CDATA[Speed Wordpress Up]]></series:name>
	</item>
	</channel>
</rss>
