<?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>Make Tech Easier&#187; performance</title>
	<atom:link href="http://maketecheasier.com/tag/performance/feed" rel="self" type="application/rss+xml" />
	<link>http://maketecheasier.com</link>
	<description>Uncomplicating the complicated, making life easier</description>
	<lastBuildDate>Sun, 12 Feb 2012 15:58:24 +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>Linux Running Too Slow?  Here&#8217;s How to Find the Cause</title>
		<link>http://maketecheasier.com/linux-running-too-slow-heres-how-to-find-the-cause/2011/09/29</link>
		<comments>http://maketecheasier.com/linux-running-too-slow-heres-how-to-find-the-cause/2011/09/29#comments</comments>
		<pubDate>Thu, 29 Sep 2011 14:58:38 +0000</pubDate>
		<dc:creator>Joshua Price</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[system monitor]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=38879</guid>
		<description><![CDATA[I think it&#8217;s safe to say that most people familiar with both Linux and Windows would tell you that your average Linux install would outperform an equivalent Windows install on the same machine. That may not always be the case, and some people might have contradictory stories to share, but that&#8217;s sure been this author&#8217;s [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/linux-running-too-slow-heres-how-to-find-the-cause/2011/09/29&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/linux-running-too-slow-heres-how-to-find-the-cause/2011/09/29" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/linux-running-too-slow-heres-how-to-find-the-cause/2011/09/29" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/linux-running-too-slow-heres-how-to-find-the-cause/2011/09/29" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/linux-running-too-slow-heres-how-to-find-the-cause/2011/09/29&amp;title=Linux+Running+Too+Slow%3F++Here%26%238217%3Bs+How+to+Find+the+Cause&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/linux-running-too-slow-heres-how-to-find-the-cause/2011/09/29" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/linux-running-too-slow-heres-how-to-find-the-cause/2011/09/29">Linux Running Too Slow?  Here&#8217;s How to Find the Cause</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></description>
			<content:encoded><![CDATA[<p><img src="http://imagecdn.maketecheasier.com/2011/09/linuxperformance-small.png" alt="linuxperformance-small" title="linuxperformance-small" width="200" height="157" class="alignleft size-full wp-image-38888" />I think it&#8217;s safe to say that most people familiar with both Linux and Windows would tell you that your average Linux install would outperform an equivalent Windows install on the same machine. That may not always be the case, and some people might have contradictory stories to share, but that&#8217;s sure been this author&#8217;s experience. In fact <a href="http://www.top500.org/overtime/list/32/os" target="_blank">according to Top500.org</a>, about 90% of the world&#8217;s top supercomputers are running Linux. While the kernel and OS may lend themselves well to high-performance computing, there are often hardware and software issues on the desktop which can cause major lag. Today, we&#8217;ll cover some diagnostic tips and tools to help you figure out where your problem might be.<br />
<span id="more-38879"></span></p>
<h2>CPU Load</h2>
<p>We&#8217;ll start with the most obvious cause of PC slowness &#8211; processor overload. As you&#8217;re reading this website, it&#8217;s got various bits of JavaScript running. Each time you load the page, the JavaScript is read as text, interpreted by your browser, passed to your operating system which loads system libraries and passes the data to your kernel &#8211; which works through the hardware drivers to actually run the program through your CPU. We get the convenience of being able to have a single script run on nearly every computer, but all that interpretation and data passing can really hammer down your system performance.  </p>
<p>The most basic way to check your CPU load is with the command-line utility <em>top</em>. It contains a lot of information, but it really shines when trying to make comparisons between the CPU and RAM usage of various applications.  </p>
<p><img src="http://imagecdn.maketecheasier.com/2011/09/linuxperformance-topcpu.png" alt="linuxperformance-topcpu" title="linuxperformance-topcpu" width="570" height="292" class="aligncenter size-full wp-image-38882" /></p>
<p>In that screenshot, you can see that <em>top</em> sorts the entries with the highest usage on top, so that you can see right away what&#8217;s using the most CPU or RAM, and the result is shown in percentages.  </p>
<p>It&#8217;s worth noting that on a machine with multiple cores, it&#8217;s quite possible that the percentages <em>top</em> shows you will total up to more than 100% (ie, one core is 70% of max and another is 60%, top might show 130% usage).  </p>
<h2>RAM Usage</h2>
<p>Next to CPU, your RAM (or lack thereof) is the mostly likely culprit of performance problems. Most MakeTechEasier readers are probably familiar with how RAM works, but here&#8217;s a quick primer for those who don&#8217;t.  </p>
<p>Let&#8217;s say you&#8217;re at a library, and the new <em>Larry Porter and the Prince of Bologna</em> book is out.  Normally, fantasy books are kept in the basement, but these books are hugely popular, so the library staff keeps a stack of them right at the front desk. This means that the library patrons can grab their book quickly and easily without going to the basement, it&#8217;s a win-win for everyone. That all sounds great, but you can&#8217;t do that with EVERY book in the library. Since the staff cannot keep a single convenient shelf for every book they have, most of them get kept in sections such as the basement.  </p>
<p>That&#8217;s similar to how hard drives and RAM work. The hard drive, in this analogy, would be the basement shelves. It&#8217;s well suited to long-term, organized storage. The RAM is the smaller area by the front desk, and space specifically suited to hold the most needed items so that they can be retrieved quickly.  </p>
<p>If you&#8217;ve got too much in your RAM (too many programs and services running) then the computer&#8217;s ability to retrieve the needed information can be drastically reduced. Suddenly it&#8217;s got to sort through a giant stack of stuff instead of just grabbing what it needs.  </p>
<p>While it&#8217;s true that the <em>free</em> command will give you basic memory info, this is another case where <em>top</em> can come in very handy. Instead of simply showing &#8220;X mb free&#8221;, <em>top</em> will give you the detailed numbers, percentages, and swap usage information.  </p>
<p><img src="http://imagecdn.maketecheasier.com/2011/09/linuxperformance-topmem.png" alt="linuxperformance-topmem" title="linuxperformance-topmem" width="569" height="323" class="aligncenter size-full wp-image-38883" /></p>
<p>Take note of the swap usage information. On an average desktop, the percentage of used swap space should generally be very low. If it&#8217;s not, you may have to just go out and buy more RAM (or seriously reduce the amount of running programs.)</p>
<h2>Overworked Hard Drive</h2>
<p>Is your hard drive light constantly chugging along, yet you have no idea what it&#8217;s doing? Mysterious input/output can sure be a problem, so there is a top-like tool called <em>iotop</em> specifically meant to help diagnose this kind of problem.  </p>
<p>It is not, however, built in to many distributions so you&#8217;ll likely have to install it separately. It should be available in your distro&#8217;s repositories, but if not you can download it <a href="http://guichaz.free.fr/iotop/" target="_blank">here</a>.  </p>
<p>A normal, idle system should be mostly zeros across the board, sometimes with a few small bursts while data is being written, as in the screenshot below.  </p>
<p><img src="http://imagecdn.maketecheasier.com/2011/09/linuxperformance-iotop1.png" alt="linuxperformance-iotop1" title="linuxperformance-iotop1" width="569" height="227" class="aligncenter size-full wp-image-38884" /></p>
<p>If however, you run a disk-intensive utility like find, you&#8217;ll see its name and throughput listed clearly in <em>iotop</em>.  </p>
<p><img src="http://imagecdn.maketecheasier.com/2011/09/linuxperformance-iotop2.png" alt="linuxperformance-iotop2" title="linuxperformance-iotop2" width="569" height="238" class="aligncenter size-full wp-image-38885" /></p>
<p>Now, you can easily find out what program is using your I/O (in this case I ran &#8220;find / -name chicken&#8221;), who ran it, the speed the data is being read, and more.  </p>
<h2>GUI Tools</h2>
<p>The author of this post chose command line tools to gather this information for two main reasons. First, CLI tools generally require fewer resources than GUI tools, and second, tools like top can be found in just about any Linux system, where as GUI tools can be hit-or-miss.  </p>
<p>Many people do not like the command line, and there are several GUI tools to perform system monitoring, but this author recommends Gnome System Monitor. It&#8217;s already available on just about any Gnome-based distribution, and includes a lot of useful information including realtime graphs for CPU, memory, and network.  </p>
<p><img src="http://imagecdn.maketecheasier.com/2011/09/linuxperformance-gsysmon.png" alt="linuxperformance-gsysmon" title="linuxperformance-gsysmon" width="591" height="523" class="aligncenter size-full wp-image-38886" /></p>
<h2>Conclusion</h2>
<p>While there are many things that can potentially cause system slowness those three things (CPU, RAM, and disk I/O) are behind the vast majority of performance problems. Using the tools described here won&#8217;t solve your performance problem, but they&#8217;ll make the cause of the problem a whole lot easier to find.</p>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/linux-running-too-slow-heres-how-to-find-the-cause/2011/09/29&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/linux-running-too-slow-heres-how-to-find-the-cause/2011/09/29" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/linux-running-too-slow-heres-how-to-find-the-cause/2011/09/29" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/linux-running-too-slow-heres-how-to-find-the-cause/2011/09/29" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/linux-running-too-slow-heres-how-to-find-the-cause/2011/09/29&amp;title=Linux+Running+Too+Slow%3F++Here%26%238217%3Bs+How+to+Find+the+Cause&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/linux-running-too-slow-heres-how-to-find-the-cause/2011/09/29" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/linux-running-too-slow-heres-how-to-find-the-cause/2011/09/29">Linux Running Too Slow?  Here&#8217;s How to Find the Cause</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://maketecheasier.com/linux-running-too-slow-heres-how-to-find-the-cause/2011/09/29/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Increase Your Website Security And Performance With CloudFlare</title>
		<link>http://maketecheasier.com/increase-website-performance-with-cloudflare/2011/06/13</link>
		<comments>http://maketecheasier.com/increase-website-performance-with-cloudflare/2011/06/13#comments</comments>
		<pubDate>Mon, 13 Jun 2011 23:58:56 +0000</pubDate>
		<dc:creator>Damien</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[cloudflare]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=34278</guid>
		<description><![CDATA[How fast is your website loading? Do you know that Google actually penalizes websites that are slow to load? If you want to get a good search engine ranking, one of the most important thing is to make sure your site load fast, blazingly fast! If you are running WordPress, we have already mentioned several [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/increase-website-performance-with-cloudflare/2011/06/13&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/increase-website-performance-with-cloudflare/2011/06/13" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/increase-website-performance-with-cloudflare/2011/06/13" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/increase-website-performance-with-cloudflare/2011/06/13" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/increase-website-performance-with-cloudflare/2011/06/13&amp;title=How+to+Increase+Your+Website+Security+And+Performance+With+CloudFlare&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/increase-website-performance-with-cloudflare/2011/06/13" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/increase-website-performance-with-cloudflare/2011/06/13">How to Increase Your Website Security And Performance With CloudFlare</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></description>
			<content:encoded><![CDATA[<p><img src="http://imagecdn.maketecheasier.com/2011/06/cloudflare-speed.jpg" alt="cloudflare-speed" title="cloudflare-speed" width="199" height="153" class="alignleft size-full wp-image-34292" />How fast is your website loading? </p>
<p>Do you know that Google actually <a href="http://googlewebmastercentral.blogspot.com/2010/04/using-site-speed-in-web-search-ranking.html">penalizes websites that are slow to load</a>? If you want to get a good search engine ranking, one of the most important thing is to make sure your site load fast, blazingly fast!</p>
<p>If you are running WordPress, we have already mentioned several ways to polish up your site loading speed, including <a href="http://maketecheasier.com/add-google-analytics-site-speed-tracking-to-wordpress-site/2011/05/14">adding Google Analytics site speed tracking feature</a>, <a href="http://maketecheasier.com/improve-sites-performance-by-loading-images-on-demand/2010/09/30">lazy loading your images</a>, <a href="http://maketecheasier.com/improve-wordpress-performance-with-w3-total-cache/2010/07/21">using W3 Total Cache</a> and <a href="http://maketecheasier.com/3-ways-to-speed-up-wordpress/2010/11/13">minify the code</a>. </p>
<p>One other way is to use CloudFlare as a proxy server.<br />
<span id="more-34278"></span><br />
<strong>CloudFlare</strong> acts as a proxy server that link between you and your readers. When your readers enter your site&#8217;s URL, the browser will first connect to CloudFlare, which will then detect their locations and load your site content from the server closest to the readers. This will ensure your reader get the fastest loading time and performance. Furthermore, CloudFlare caches your script, css and image files, so there is no wastage of bandwidth and server resources.</p>
<p>In addition, as a proxy server, CloudFlare can detect who is accessing your site and block threats and limit abusive bots and crawlers before they reach you. In other words, CloudFlare is able to increase your site security as well.</p>
<h2>Configuring CloudFlare</h2>
<p>Getting your site to run with CloudFlare is easy. </p>
<p>1. Go to <a href="http://www.cloudflare.com">CloudFlare.com</a> and sign up for an account.</p>
<p>2. Next, enter your site&#8217;s domain name. Click &#8220;Add this domain&#8221;.</p>
<p><img src="http://imagecdn.maketecheasier.com/2011/06/cloudflare-enter-domain-name.png" alt="cloudflare-enter-domain-name" title="cloudflare-enter-domain-name" width="600" height="211" class="aligncenter size-full wp-image-34280" /></p>
<p>3. CloudFlare will then scan your DNS. It might take up to 2 minutes. Once the scanning is completed, click &#8220;Continue to Step 2&#8243;.</p>
<p>4. The next page displays a list of your site existing DNS record. Check to see if they are correct. If necessary, you can add in extra DNS record here. If everything is correct, scroll down to the end and click &#8220;<em>I&#8217;m done checking my DNS records, continue</em>&#8221;</p>
<p>5. CloudFlare will then register your DNS setting and configure itself to power your site. CloudFlare will also add a sub-domain (of the name &#8220;direct&#8221;) for you to access your server without passing through the CloudFlare network.</p>
<p><img src="http://imagecdn.maketecheasier.com/2011/06/cloudflare-dns-record.png" alt="cloudflare-dns-record" title="cloudflare-dns-record" width="600" height="268" class="aligncenter size-full wp-image-34284" /></p>
<p>6. The last step is to update your domain with the new DNS setting. If you register your domain name via a domain registrar, you can login to your domain registrar account and change the DNS setting. If you got everything set up via your web-host, submit a ticket and get them to change the DNS setting for you.</p>
<p>That&#8217;s it. You are good to go. </p>
<p>This is loading speed of Make Tech Easier before and after implementing CloudFlare.</p>
<p>Before:</p>
<p><img src="http://imagecdn.maketecheasier.com/2011/06/cloudflare-pingdom-before.png" alt="cloudflare-pingdom-before" title="cloudflare-pingdom-before" width="432" height="450" class="aligncenter size-full wp-image-34281" /></p>
<p>After:</p>
<p><img src="http://imagecdn.maketecheasier.com/2011/06/cloudflare-pingdom-after.png" alt="cloudflare-pingdom-after" title="cloudflare-pingdom-after" width="415" height="438" class="aligncenter size-full wp-image-34288" /></p>
<p>There is a saving of 1.8 second, which translate to a 18.5% improvement. </p>
<p>The above results were taken from <a href="http://tools.pingdom.com">Pingdom</a>. You should also test out your site loading speed before and after implementing CloudFlare too.</p>
<h2>What&#8217;s next after configuring CloudFlare?</h2>
<p>After you have set up CloudFlare, login to your CloudFlare account and go to the &#8220;Settings -> CloudFlare Settings&#8221; (the link is beside your website). Here is where you can configure the settings for CloudFlare. Some of the important settings include <em>Security level</em>, <em>Caching level</em>, <em>customize the Challenge page</em>, <em>E-mail Address Obfuscation</em>, <em>IP Geolocation</em> (useful if you are showing geolocation ads) and <em>Hotlink Protection</em>. </p>
<p>In addition, if you are using WordPress, install the <a href="http://wordpress.org/extend/plugins/cloudflare/">CloudFlare plugin</a> which can help you optimize your database and better protect your site from spammers. </p>
<p>Image credit: <a href="http://www.flickr.com/photos/lrargerich/3122070723/" target="_blank" re="nofollow">lrargerich</a></p>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/increase-website-performance-with-cloudflare/2011/06/13&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/increase-website-performance-with-cloudflare/2011/06/13" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/increase-website-performance-with-cloudflare/2011/06/13" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/increase-website-performance-with-cloudflare/2011/06/13" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/increase-website-performance-with-cloudflare/2011/06/13&amp;title=How+to+Increase+Your+Website+Security+And+Performance+With+CloudFlare&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/increase-website-performance-with-cloudflare/2011/06/13" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/increase-website-performance-with-cloudflare/2011/06/13">How to Increase Your Website Security And Performance With CloudFlare</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://maketecheasier.com/increase-website-performance-with-cloudflare/2011/06/13/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to Improve Your Site’s Performance By Loading Your Images On Demand [WordPress]</title>
		<link>http://maketecheasier.com/improve-sites-performance-by-loading-images-on-demand/2010/09/30</link>
		<comments>http://maketecheasier.com/improve-sites-performance-by-loading-images-on-demand/2010/09/30#comments</comments>
		<pubDate>Thu, 30 Sep 2010 12:00:45 +0000</pubDate>
		<dc:creator>Damien</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[lazy load]]></category>
		<category><![CDATA[loading speed]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[WordPress Plugins]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=21981</guid>
		<description><![CDATA[There are many ways to improve the performance of your WordPress blog. We have discussed the use of caching plugin, cleaning up and optimizing your database and and also plenty other tips to speed up the loading time. In this article, we are going to show you how you can further improve your site&#8217;s performance [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/improve-sites-performance-by-loading-images-on-demand/2010/09/30&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/improve-sites-performance-by-loading-images-on-demand/2010/09/30" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/improve-sites-performance-by-loading-images-on-demand/2010/09/30" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/improve-sites-performance-by-loading-images-on-demand/2010/09/30" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/improve-sites-performance-by-loading-images-on-demand/2010/09/30&amp;title=How+to+Improve+Your+Site%E2%80%99s+Performance+By+Loading+Your+Images+On+Demand+%5BWordPress%5D&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/improve-sites-performance-by-loading-images-on-demand/2010/09/30" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/improve-sites-performance-by-loading-images-on-demand/2010/09/30">How to Improve Your Site’s Performance By Loading Your Images On Demand [WordPress]</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></description>
			<content:encoded><![CDATA[<p><img src="http://imagecdn.maketecheasier.com/2010/09/lazyloader-main.jpg" alt="lazyloader-main" title="lazyloader-main" width="180" height="214" class="alignleft size-full wp-image-22062" />There are many ways to improve the performance of your WordPress blog. We have discussed the use of <a href="http://maketecheasier.com/improve-wordpress-performance-with-w3-total-cache/2010/07/21">caching plugin</a>, <a href="http://maketecheasier.com/8-useful-tricks-to-clean-up-streamline-your-wordpress-database/2009/02/17">cleaning up and optimizing your database</a> and and also plenty other tips to <a href="http://maketecheasier.com/8-ways-to-improve-your-wordpresss-loading-time/2009/01/21">speed up the loading time</a>. In this article, we are going to show you how you can further improve your site&#8217;s performance by loading your images on demand.</p>
<p>All blog owners will know that images play an important part in a blog post. In Make Tech Easier, we love to use plenty of screenshots to make the tutorial clearer and easier to understand. However, there is one problem with this. The more images you have, the slower the site loads and utilizes more bandwidth. In addition, as we have outsourced our images hosting to Amazon S3, the higher bandwidth also translates to higher cost.</p>
<p>A good solution to this is to load your images on demand, or what is most commonly known as <a href="http://en.wikipedia.org/wiki/Lazy_loading" target="_blank" >lazy loading</a>.<br />
<span id="more-21981"></span><br />
Lazy loader is a jQuery plugin that delays the loading of images in (long) web pages. Images outside of viewport (visible part of web page) wont be loaded until user scrolls to them. For sites that use plenty of images, lazy load can make the page loads faster and also help to reduce server load (and cost).</p>
<p>To avoid going into the technical detail, let us look at the (simplest) ways that you can integrate this into your WordPress blog.</p>
<h3>1. <a href="http://wordpress.org/extend/plugins/jquery-image-lazy-loading/" target="_blank">jQuery Image Lazy Loader</a></h3>
<p>Without a doubt, plugin is the way to simplify stuff in WordPress. jQuery Image Lazy Loader is one such plugin that integrate the lazy load feature into your site. </p>
<p>There are no configuration required. All you need to do is to install the plugin and activate it. </p>
<p>Once activated, the lazy load script will work on all pages of the site. </p>
<h3>2. <a href="http://www.mikoder.com.au/2010/01/image-lazy-loader-for-wordpress/" target="_blank">Lazy Loader</a></h3>
<p> Lazy Loader is another plugin that integrates the lazy load feature into your site. The difference is, it is configurable. The Lazy Loader plugin is not available in the WordPress repository, so you have to go to the <a href="http://www.mikoder.com.au/2010/01/image-lazy-loader-for-wordpress/" target="_blank">developer&#8217;s website</a> and download it (which also means you won&#8217;t be able to install it directly from your WordPress dashboard).</p>
<p>Once you have downloaded, installed and activated it, you can go to &#8220;<em>Settings -> Lazy Loader</em>&#8221; section to configure the plugin.</p>
<p><img src="http://imagecdn.maketecheasier.com/2010/09/lazyloader-options.png" alt="lazyloader-options" title="lazyloader-options" width="534" height="527" class="aligncenter size-full wp-image-22057" /></p>
<p>Options available include inserting the lazy load script on all pages, home page, posts, pages, category etc. You can also set the threshold limit (the number of images to load below the viewport) to avoid a lag in the image loading. </p>
<p>Other options include the loading effects and using your own placeholder image. </p>
<h3>Conclusion</h3>
<p>Lazy loading is a good way to reduce your site bandwidth, improve the page&#8217;s loading time and overall performance. If you just want a plug and play solution, jQuery Image Lazy Loader is the one to go for. If you want to have more control, then the Lazy Loader plugin is a better choice.</p>
<p>Lastly, for those who are proficient enough, you may want to check out the <a href="http://www.appelsiini.net/projects/lazyload" target="_blank" >lazy load project</a> for deep integration into your site.</p>
<p>Image credit: <a href="http://www.flickr.com/photos/takamorry/" target="_blank" >takamorry</a></p>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/improve-sites-performance-by-loading-images-on-demand/2010/09/30&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/improve-sites-performance-by-loading-images-on-demand/2010/09/30" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/improve-sites-performance-by-loading-images-on-demand/2010/09/30" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/improve-sites-performance-by-loading-images-on-demand/2010/09/30" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/improve-sites-performance-by-loading-images-on-demand/2010/09/30&amp;title=How+to+Improve+Your+Site%E2%80%99s+Performance+By+Loading+Your+Images+On+Demand+%5BWordPress%5D&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/improve-sites-performance-by-loading-images-on-demand/2010/09/30" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/improve-sites-performance-by-loading-images-on-demand/2010/09/30">How to Improve Your Site’s Performance By Loading Your Images On Demand [WordPress]</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://maketecheasier.com/improve-sites-performance-by-loading-images-on-demand/2010/09/30/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>How to Boost Your Game Performance With Game Booster v2</title>
		<link>http://maketecheasier.com/boost-game-performance-with-game-booster-v2/2010/09/12</link>
		<comments>http://maketecheasier.com/boost-game-performance-with-game-booster-v2/2010/09/12#comments</comments>
		<pubDate>Sun, 12 Sep 2010 21:00:02 +0000</pubDate>
		<dc:creator>Damien</dc:creator>
				<category><![CDATA[Gaming]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[boost]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=21139</guid>
		<description><![CDATA[When it comes to gaming, the hardware may be the most important factor that decide the game’s performance. Give a system more RAM, higher CPU and GPU power and it should tackle effortlessly most of the high-end games in the market. On the other hand, if you are not prepared to shell out the money [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/boost-game-performance-with-game-booster-v2/2010/09/12&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/boost-game-performance-with-game-booster-v2/2010/09/12" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/boost-game-performance-with-game-booster-v2/2010/09/12" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/boost-game-performance-with-game-booster-v2/2010/09/12" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/boost-game-performance-with-game-booster-v2/2010/09/12&amp;title=How+to+Boost+Your+Game+Performance+With+Game+Booster+v2&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/boost-game-performance-with-game-booster-v2/2010/09/12" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/boost-game-performance-with-game-booster-v2/2010/09/12">How to Boost Your Game Performance With Game Booster v2</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></description>
			<content:encoded><![CDATA[<p><img src="http://imagecdn.maketecheasier.com/2010/09/gamebooster-logo.jpg" alt="gamebooster-logo" title="gamebooster-logo" width="200" height="122" class="alignleft size-full wp-image-21152" />When it comes to gaming, the hardware may be the most important factor that decide the game’s performance. Give a system more RAM, higher CPU and GPU power and it should tackle effortlessly most of the high-end games in the market. On the other hand, if you are not prepared to shell out the money to upgrade your PC, you can actually improve your gaming performance by tweaking the OS (Windows OS). This is where Game Booster comes in.</p>
<p><a href="http://www.iobit.com/gamebooster2beta.html" target="_blank">Game Booster v2</a> is another great software by IOBit (the same developer as the <a href="http://maketecheasier.com/iobit-toolbox-windows-fixer/2010/08/31" target="_blank">IOBit toolbox</a>) and it is designed to help you optimize your PC for smoother, more responsive game-play.<br />
<span id="more-21139"></span></p>
<h3>Usage</h3>
<p>The usage is extremely simple. <a href="http://www.iobit.com/gamebooster2beta.html" target="_blank">Download</a> and install the game booster software.</p>
<p>Launch the Game Booster application. You should see a big button that encourages you to “Slide to boost”. If you are not computer savvy, sliding the button is all (almost) you need to optimize your PC. As simple as that.</p>
<p><img src="http://imagecdn.maketecheasier.com/2010/09/gamebooster-main.jpg" alt="gamebooster-main" title="gamebooster-main" width="577" height="421" class="aligncenter size-full wp-image-21141" /></p>
<p>What this &#8220;Boost slider&#8221; does is to stop the services that are not essential to the operating of the system. At the bottom of the window, you can actually view the detail of the services that are going to be stopped.</p>
<p><img src="http://imagecdn.maketecheasier.com/2010/09/gamebooster-stop-services.png" alt="gamebooster-stop-services" title="gamebooster-stop-services" width="460" height="458" class="aligncenter size-full wp-image-21142" /></p>
<p><img src="http://imagecdn.maketecheasier.com/2010/09/gamebooster-start-boost.png" alt="gamebooster-start-boost" title="gamebooster-start-boost" width="438" height="383" class="aligncenter size-full wp-image-21143" /></p>
<h3>Game Driver</h3>
<p>If you are playing the latest 3D games in the market, more often than not, you will need the latest driver for your hardware (mainly graphics card and soundcard). Game Boosters came with a Game Driver feature that will scan your current hardware and see if the driver is up to date. If not, it provides you with options to download and install the latest driver.</p>
<p><img src="http://imagecdn.maketecheasier.com/2010/09/gamebooster-drivers.jpg" alt="gamebooster-drivers" title="gamebooster-drivers" width="603" height="417" class="aligncenter size-full wp-image-21144" /></p>
<h3>Game Essential</h3>
<p>There are some components/software that are important (or useful) to a gameplay, like the DirectX. The Game Essential section checks the web for updates and update your system accordingly.</p>
<p><img src="http://imagecdn.maketecheasier.com/2010/09/gamebooster-game-essential.png" alt="gamebooster-game-essential" title="gamebooster-game-essential" width="579" height="402" class="aligncenter size-full wp-image-21148" /></p>
<h3>Game Defrag</h3>
<p><img src="http://imagecdn.maketecheasier.com/2010/09/gamebooster-game-defrag.png" alt="gamebooster-game-defrag" title="gamebooster-game-defrag" width="578" height="396" class="aligncenter size-full wp-image-21147" /></p>
<p>While you have heard a lot about defragging your computer, few have heard about the needs to defrag your games. The concept is similar. Game booster will scan the particular game for all its files location and determine if they are scattered all over the place.If yes, it will defrag your game and bring all the files together. Theoretically, when all the files are together, the system has an easier way locating them, and hence the less seek time is required.</p>
<h3>System Tweaks</h3>
<p>As the name implies, the System Tweaks deal with tweaks that optimize the System settings. There are two options: Default and Top Performance. Unlike the main section where it shows you a detail of the tweaks that it performs, there is no way to know what it going to do to your system, until after the tweaks are performed. Furthermore, the tweaks require you to reboot your system.</p>
<p><img src="http://imagecdn.maketecheasier.com/2010/09/gamebooster-system-tweaks.jpg" alt="gamebooster-system-tweaks" title="gamebooster-system-tweaks" width="579" height="433" class="aligncenter size-full wp-image-21149" /></p>
<h3>Game Tools</h3>
<p>The Game tools section contains a series of shortcut links to the various hardware option page, like Mouse, Keyboard, Game controllers, etc.</p>
<h3>Conclusion</h3>
<p>In terms of usability and simplicity, Game Booster v2 is top notch. However, there is just so much that it can optimize your system. if your hardware is not up to the mark, no amount of software optimization can help you improve your gaming performance.</p>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/boost-game-performance-with-game-booster-v2/2010/09/12&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/boost-game-performance-with-game-booster-v2/2010/09/12" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/boost-game-performance-with-game-booster-v2/2010/09/12" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/boost-game-performance-with-game-booster-v2/2010/09/12" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/boost-game-performance-with-game-booster-v2/2010/09/12&amp;title=How+to+Boost+Your+Game+Performance+With+Game+Booster+v2&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/boost-game-performance-with-game-booster-v2/2010/09/12" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/boost-game-performance-with-game-booster-v2/2010/09/12">How to Boost Your Game Performance With Game Booster v2</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://maketecheasier.com/boost-game-performance-with-game-booster-v2/2010/09/12/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Improve Your WordPress Performance With W3 Total Cache</title>
		<link>http://maketecheasier.com/improve-wordpress-performance-with-w3-total-cache/2010/07/21</link>
		<comments>http://maketecheasier.com/improve-wordpress-performance-with-w3-total-cache/2010/07/21#comments</comments>
		<pubDate>Wed, 21 Jul 2010 21:00:35 +0000</pubDate>
		<dc:creator>Damien</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[cache]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[wordpress plugin]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=18580</guid>
		<description><![CDATA[If there is any plugin that can improve the performance of any WordPress blog by a great deal, it has to be W3 Total Cache. This is a well-designed cache plugin used by many popular sites, as well as this Make Tech Easier blog. Why the need for a cache plugin? Whenever you load a [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/improve-wordpress-performance-with-w3-total-cache/2010/07/21&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/improve-wordpress-performance-with-w3-total-cache/2010/07/21" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/improve-wordpress-performance-with-w3-total-cache/2010/07/21" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/improve-wordpress-performance-with-w3-total-cache/2010/07/21" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/improve-wordpress-performance-with-w3-total-cache/2010/07/21&amp;title=Improve+Your+WordPress+Performance+With+W3+Total+Cache&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/improve-wordpress-performance-with-w3-total-cache/2010/07/21" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/improve-wordpress-performance-with-w3-total-cache/2010/07/21">Improve Your WordPress Performance With W3 Total Cache</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-18593" title="w3tc-main" src="http://imagecdn.maketecheasier.com/2010/07/w3tc-main.jpg" alt="w3tc-main" width="200" height="150" />If there is any plugin that can improve the performance of any WordPress blog by <em>a great deal</em>, it has to be <a href="http://www.w3-edge.com/wordpress-plugins/w3-total-cache/" target="_blank">W3 Total Cache</a>. This is a well-designed cache plugin used by many popular sites, as well as this Make Tech Easier blog.</p>
<h3>Why the need for a cache plugin?</h3>
<p>Whenever you load a page on a WP site, the server has to first query the database for the relevant content, then format the content into html format before sending to the browser for you to see. This is fine if your site only have 10 or 20 visitors per day. However, if you are receiving ten of thousands of readers every day, your CPU workload will also increase exponentially, and eventually crashed. This is also why plenty of sites went down when their post reaches the front page of Digg (aka the Digg effect).</p>
<p>What a cache plugin does is to store the dynamically generated page in a static html format. Whenever a visitor visits your site, the static page is served to the visitors instead of fetching it from the database. In this case, it will relief the workload of your CPU.<br />
<span id="more-18580"></span></p>
<h3>W3 Total Cache: An all in one caching solution</h3>
<p>W3TC is more than just a cache plugin. It is in fact a combination of various features to optimize your site.</p>
<p>There are 4 main aspect of W3 Total cache</p>
<ul>
<li> Page caching</li>
<li> Database caching</li>
<li> Minify scripts</li>
<li> Content Delivery Network</li>
</ul>
<h3>Page Caching</h3>
<p>This is the part where a static html version of your site is generated and shown to your visitors whenever they visit your site.</p>
<p><img class="aligncenter size-full wp-image-18584" title="w3tc-page-caching" src="http://imagecdn.maketecheasier.com/2010/07/w3tc-page-caching.png" alt="w3tc-page-caching" width="577" height="389" /></p>
<p>In the Settings, you can determine whether to cache pages for logged in users and the homepage. You can also configure the lifetime of the cache and the user agents of the browser. If you are using a mobile theme, you may want to add the mobile device&#8217;s user agent to the list so that the mobile theme (instead of the cached page) will be shown on the mobile devices.</p>
<h3>Minify Your Script</h3>
<p>Minifying your CSS and javascript is a great way to reduce the file size of your web page, which in turn reduces the loading time of your site. In the Settings page, you can configure W3TC to minify your HTML code, Javascript and CSS.</p>
<p><img class="aligncenter size-full wp-image-18585" title="w3tc-minify-setting" src="http://imagecdn.maketecheasier.com/2010/07/w3tc-minify-setting.png" alt="w3tc-minify-setting" width="577" height="184" /></p>
<h3>Database caching</h3>
<p>To reduce the number of database query, W3TC caches the database query and keep it active for a period of time. During this period of time, all database queries will be loaded from the database cache, thus reducing the number of time the server has to go to the database to fetch the items. When the expiry time is reached, the plugin will re-cache the database queries.</p>
<p><img class="aligncenter size-full wp-image-18586" title="w3tc-database-caching" src="http://imagecdn.maketecheasier.com/2010/07/w3tc-database-caching.png" alt="w3tc-database-caching" width="577" height="180" /></p>
<h3>Content Delivery Network</h3>
<p>Unless you are seeing a lot of traffic, chances are, you won&#8217;t need to use a CDN. What a CDN does is to load your content (such as images, css, javascript files) from an external server closest to the visitor&#8217;s geographical location so as to achieve a faster loading of your content as well as reducing your server&#8217;s bandwidth.</p>
<p><img class="aligncenter size-full wp-image-18587" title="w3tc-cdn" src="http://imagecdn.maketecheasier.com/2010/07/w3tc-cdn.png" alt="w3tc-cdn" width="577" height="335" /></p>
<p>W3TC works with several CDN company, including Amazon CloudFront, S3 and even your own FTP account. You can choose to load your wp-includes/files, active theme files and even minified CSS and JS files from your CDN. There are also options for you to configure which file types get uploaded to your CDN.</p>
<h3>Checking out the performance of W3TC</h3>
<p>Once you have installed and configured the plugin, you can log out of your dashboard and go to your site. Right click on the browser and select <em>&#8220;View Source</em>&#8220;. Scroll down to the bottom and you will see the W3TC message. This will give you a good idea of how fast your site is loading.</p>
<p><img class="aligncenter size-full wp-image-18588" title="w3tc-performance" src="http://imagecdn.maketecheasier.com/2010/07/w3tc-performance.png" alt="w3tc-performance" width="436" height="107" /></p>
<p>Alternatively, you can also carry out <a href="http://www.vertain.com/?sst" target="_blank">website speed test</a> before and after you have implemented the plugin to see the differences.</p>
<p>Let us know in the comments if the W3TC plugin works well for you.</p>
<p>Image credit: <a href="http://www.flickr.com/photos/mbollman/" target="_blank">gibb626</a><br />
<!--adsense#468x60--></p>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/improve-wordpress-performance-with-w3-total-cache/2010/07/21&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/improve-wordpress-performance-with-w3-total-cache/2010/07/21" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/improve-wordpress-performance-with-w3-total-cache/2010/07/21" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/improve-wordpress-performance-with-w3-total-cache/2010/07/21" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/improve-wordpress-performance-with-w3-total-cache/2010/07/21&amp;title=Improve+Your+WordPress+Performance+With+W3+Total+Cache&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/improve-wordpress-performance-with-w3-total-cache/2010/07/21" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/improve-wordpress-performance-with-w3-total-cache/2010/07/21">Improve Your WordPress Performance With W3 Total Cache</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://maketecheasier.com/improve-wordpress-performance-with-w3-total-cache/2010/07/21/feed</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Free Giveaway: Advanced SystemCare Pro</title>
		<link>http://maketecheasier.com/free-giveaway-advanced-systemcare-pro/2010/05/17</link>
		<comments>http://maketecheasier.com/free-giveaway-advanced-systemcare-pro/2010/05/17#comments</comments>
		<pubDate>Mon, 17 May 2010 14:00:06 +0000</pubDate>
		<dc:creator>Damien</dc:creator>
				<category><![CDATA[Hot Tech Deal]]></category>
		<category><![CDATA[anti-spyware]]></category>
		<category><![CDATA[free giveaways]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[privacy]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=15679</guid>
		<description><![CDATA[We just received a tip off from IObit that they are celebrating their 5th anniversary and is giving off their Advanced SystemCare PRO Edition for FREE for a limited time. Advanced SystemCare PRO provides an always-on, automated, all-in-one PC Healthcare Service with anti-spyware, privacy protection, performance tune-ups, and system cleaning capabilities. This powerful and award-winning [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/free-giveaway-advanced-systemcare-pro/2010/05/17&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/free-giveaway-advanced-systemcare-pro/2010/05/17" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/free-giveaway-advanced-systemcare-pro/2010/05/17" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/free-giveaway-advanced-systemcare-pro/2010/05/17" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/free-giveaway-advanced-systemcare-pro/2010/05/17&amp;title=Free+Giveaway%3A+Advanced+SystemCare+Pro&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/free-giveaway-advanced-systemcare-pro/2010/05/17" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/free-giveaway-advanced-systemcare-pro/2010/05/17">Free Giveaway: Advanced SystemCare Pro</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></description>
			<content:encoded><![CDATA[<p><img src="http://imagecdn.maketecheasier.com/2010/05/ascprobox.jpg" alt="ascprobox" title="ascprobox" width="178" height="200" class="alignleft size-full wp-image-15681" />We just received a tip off from IObit that they are celebrating their 5th anniversary and is giving off their Advanced SystemCare PRO Edition for FREE for a limited time. </p>
<p><a href="http://iobit.com/advancedwindowscarepro.html" target="_blank">Advanced SystemCare PRO</a> provides an always-on, automated, all-in-one PC Healthcare Service with anti-spyware, privacy protection, performance tune-ups, and system cleaning capabilities. This powerful and award-winning precision tool fixes stubborn errors, cleans out clutter, optimizes internet and download speeds, ensures personal security and maintains maximum computer performance automatically.</p>
<p>The FREE giveaway is valid from 17th &#8211; 19th May 2010. Grab it before the offer ends!</p>
<p><a href="http://db.iobit.com/license-free/asc-free-license.php" target="_blank">Advanced SystemCare PRO Edition Free Giveaway</a><br />
<!--adsense#468x60--></p>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/free-giveaway-advanced-systemcare-pro/2010/05/17&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/free-giveaway-advanced-systemcare-pro/2010/05/17" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/free-giveaway-advanced-systemcare-pro/2010/05/17" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/free-giveaway-advanced-systemcare-pro/2010/05/17" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/free-giveaway-advanced-systemcare-pro/2010/05/17&amp;title=Free+Giveaway%3A+Advanced+SystemCare+Pro&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/free-giveaway-advanced-systemcare-pro/2010/05/17" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/free-giveaway-advanced-systemcare-pro/2010/05/17">Free Giveaway: Advanced SystemCare Pro</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://maketecheasier.com/free-giveaway-advanced-systemcare-pro/2010/05/17/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Defragment Your Disk With Auslogics Disk Defrag</title>
		<link>http://maketecheasier.com/defragment-your-disk-with-auslogics-disk-defrag/2010/02/24</link>
		<comments>http://maketecheasier.com/defragment-your-disk-with-auslogics-disk-defrag/2010/02/24#comments</comments>
		<pubDate>Wed, 24 Feb 2010 17:00:12 +0000</pubDate>
		<dc:creator>Tanmay</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[defrag]]></category>
		<category><![CDATA[hard disk]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=12668</guid>
		<description><![CDATA[If you ask any experts on tips to speed up the performance of your Windows PC, the answer you often receive is &#8220;Defragment your hard disk&#8220;. The reason for hard disk fragmentation is because whenever you load any files or data into your hard drive, the operating system breaks it into uncountable number of pieces [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/defragment-your-disk-with-auslogics-disk-defrag/2010/02/24&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/defragment-your-disk-with-auslogics-disk-defrag/2010/02/24" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/defragment-your-disk-with-auslogics-disk-defrag/2010/02/24" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/defragment-your-disk-with-auslogics-disk-defrag/2010/02/24" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/defragment-your-disk-with-auslogics-disk-defrag/2010/02/24&amp;title=Defragment+Your+Disk+With+Auslogics+Disk+Defrag&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/defragment-your-disk-with-auslogics-disk-defrag/2010/02/24" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/defragment-your-disk-with-auslogics-disk-defrag/2010/02/24">Defragment Your Disk With Auslogics Disk Defrag</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-12684" title="windows-auslogic-disk-defrag-logo" src="http://imagecdn.maketecheasier.com/2010/02/auslogics-disk-defrag-logo.jpg" alt="windows-auslogic-disk-defrag-logo" width="200" height="200" />If you ask any experts on tips to speed up the performance of your Windows PC, the answer you often receive is &#8220;<em>Defragment your hard disk</em>&#8220;. The reason for hard disk fragmentation is because whenever you load any files or data into your hard drive, the operating system breaks it into uncountable number of pieces or chunks and store them in the empty spaces in the hard drive. When you try to open that file, the operating system has to gather all the parts and assemble them back to one piece. As more and more files are being split up and stored in various places, the hard disk become very crowded with fragmented parts and more time is needed to retrieve the files.</p>
<p>To fix this fragmentation problem, we need to run the disk defragmentation application where it locates the various parts of a file and arranges them in running order. By default, Windows comes with its own set of defragment tool that anyone can use, but it suffers from some drawbacks such as inability to defragment a single selected file and ignores files that are smaller than 64 MB.<br />
<span id="more-12668"></span><br />
On the other hand, there is this effective utility named <a href="http://www.auslogics.com/en/software/disk-defrag/" target="_blank">Auslogics Disk Defrag</a> which lets you overcome all of this drawbacks. This useful Auslogics product comes with features like:</p>
<ul>
<li>able to defragment all drives at once.</li>
<li>able to defragment a single file or folder.</li>
<li>auto defragmentation in the background.</li>
<li>wipes out all the free space so that no data can be restored.</li>
<li>able to change the algorithm of defragmentation.</li>
<li>schedule regular defragmentation session.</li>
<li>compatible with Windows XP, Vista and Windows 7.</li>
</ul>
<p>It also contains several advanced features like optimizing your hard drives for maximum performance and keeping the MFT feature zone clear.</p>
<h3>How to use Auslogics Disk Defrag</h3>
<p>One good thing about Auslogics Disk Defrag is that it is easy to use.</p>
<p>If you want to defragment a single or multiple drives simultaneously, simply select the drives you want to defragment and click on &#8220;<em>Defrag</em>&#8221; button.</p>
<p><img class="aligncenter size-full wp-image-12713" title="windows-auslogic-defrag" src="http://imagecdn.maketecheasier.com/2010/02/auslogics-disk-defrag.png" alt="windows-auslogic-defrag" width="541" height="392" /></p>
<p>Clicking on the arrow beside the Defrag button allows you to change the algorithm of the defragmentation process. Here you can chose to just analyze the disks or to defragment the selected drives. You can also chose &#8220;Defrag &amp; Optimize&#8221; option where it tweak the system for best performance. This process is slower but more effective than just the &#8220;Defrag&#8221; method.</p>
<p><img class="aligncenter size-full wp-image-12714" title="windows-defrag-algorithm" src="http://imagecdn.maketecheasier.com/2010/02/auslogics-disk-defrag-algorithm.png" alt="windows-defrag-algorithm" width="319" height="95" /></p>
<p>If you just want to defragment some specific files or folders, go to <em>Action-&gt;Defrag File</em> or <em>Action-&gt;Defrag folder</em>. You can then select the file or folder to defrag.</p>
<p><img class="aligncenter size-full wp-image-12730" title="windows-auslogic-files-folder" src="http://imagecdn.maketecheasier.com/2010/02/auslogics-disk-defrag-files-folder.png" alt="windows-auslogic-files-folder" width="351" height="192" /></p>
<p>Another interesting feature about this software is that you can set the algorithm of the defragment process. One option is to remove the users&#8217; temporary file before defragmentation. This can significantly reduce the defragmentation time. You can also set option not to defrag files bigger than a certain size. Moving the system file to the beginning of the disk can also help to increase your system speed.</p>
<p><img class="aligncenter size-full wp-image-12735" title="windows-auslogic-algorithm" src="http://imagecdn.maketecheasier.com/2010/02/auslogics-disk-defrag-algorithm1.png" alt="windows-auslogic-algorithm1" width="488" height="504" /></p>
<p>You can also schedule the defragmentation process from the &#8220;Schedule&#8221; tab.</p>
<p>Auslogics Disk Defrag is free to download and use. For those who wanted more powerful software, you can also try the premium version &#8211; <a href="http://www.auslogics.com/en/software/disk-defrag/" target="_blank">Auslogics BoostSpeed</a>.</p>
<p>Does this software make your defragmentation process a whole lot easier? Hopefully your PC performs faster too.</p>
<p><!--adsense#468x60--></p>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/defragment-your-disk-with-auslogics-disk-defrag/2010/02/24&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/defragment-your-disk-with-auslogics-disk-defrag/2010/02/24" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/defragment-your-disk-with-auslogics-disk-defrag/2010/02/24" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/defragment-your-disk-with-auslogics-disk-defrag/2010/02/24" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/defragment-your-disk-with-auslogics-disk-defrag/2010/02/24&amp;title=Defragment+Your+Disk+With+Auslogics+Disk+Defrag&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/defragment-your-disk-with-auslogics-disk-defrag/2010/02/24" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/defragment-your-disk-with-auslogics-disk-defrag/2010/02/24">Defragment Your Disk With Auslogics Disk Defrag</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://maketecheasier.com/defragment-your-disk-with-auslogics-disk-defrag/2010/02/24/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>6 Essential Tips to Speed up Windows 7</title>
		<link>http://maketecheasier.com/6-essential-tips-to-speed-up-windows-7/2009/12/30</link>
		<comments>http://maketecheasier.com/6-essential-tips-to-speed-up-windows-7/2009/12/30#comments</comments>
		<pubDate>Wed, 30 Dec 2009 23:38:12 +0000</pubDate>
		<dc:creator>Tanmay</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[speed]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[windows 7]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=10005</guid>
		<description><![CDATA[Without a doubt, Windows 7 is a much better operating system than its predecessors, but that doesn&#8217;t mean it is the speediest of them all. Due to the hardware requirement, those who still have their old computer may not get the same performance as good as they had with Windows XP. Even if the computer comes [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/6-essential-tips-to-speed-up-windows-7/2009/12/30&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/6-essential-tips-to-speed-up-windows-7/2009/12/30" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/6-essential-tips-to-speed-up-windows-7/2009/12/30" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/6-essential-tips-to-speed-up-windows-7/2009/12/30" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/6-essential-tips-to-speed-up-windows-7/2009/12/30&amp;title=6+Essential+Tips+to+Speed+up+Windows+7&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/6-essential-tips-to-speed-up-windows-7/2009/12/30" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/6-essential-tips-to-speed-up-windows-7/2009/12/30">6 Essential Tips to Speed up Windows 7</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-10015" src="http://imagecdn.maketecheasier.com/2009/12/win7speed-logo.png" alt="windows-7 logo" width="183" height="132" />Without a doubt, Windows 7 is a much better operating system than its predecessors, but that doesn&#8217;t mean it is the speediest of them all. Due to the hardware requirement, those who still have their old computer may not get the same performance as good as they had with Windows XP. Even if the computer comes with all the latest hardware installed, there are still many factors that can substantially slow down the performance. In this article, we are going to show you 6 useful ways to improve the speed and performance of your Windows 7.<br />
<span id="more-10005"></span></p>
<h3>1. Disable Unnecessary Visual Effects</h3>
<ul>
<li>Right click on “<em>Computer</em>” in windows start menu and choose “<em>Properties</em>”.</li>
<li>Click on “<em>Advanced System Settings</em>” at the left pane.</li>
<li>Under the “<em>Advanced</em>” tab, click on “<em>Settings</em>” under “<em>Performance</em>” category. Select the “<em>Custom:</em>” option.</li>
<li>Look through the list and uncheck the effects that you have no used for it. (Note: For optimum result, uncheck all the check box except the last four items). Click <em>OK</em>.</li>
<li>Restart your computer.</li>
</ul>
<p><img class="aligncenter size-full wp-image-10006" src="http://imagecdn.maketecheasier.com/2009/12/win7speed-visual-effect.png" alt="windows 7 disable visual effect" width="373" height="538" /></p>
<p>You will notice the result immediately.</p>
<h3>2.Increase the Boot Speed</h3>
<p>With this small tweak, you can decrease the boot time of your Windows 7.</p>
<ul>
<li>Press <em>Windows Key + R</em> to launch the Run window.</li>
<li>Type &#8220;<em>msconfig</em>&#8221; and hit Enter. The System Configuration Window will appear.</li>
<li>Under the &#8220;<em>Boot</em>&#8221; tab, find the box (on the right side) labeled with “<em>Time out</em>”. Generally it is set to 30.</li>
<li>If you are using only one operating system then you can set the value as 0. But if you are using more than one, then set to 3.</li>
<li>Check “<em>No GUI Boot</em>” option.</li>
</ul>
<p><img class="aligncenter size-full wp-image-10007" src="http://imagecdn.maketecheasier.com/2009/12/win7speed-timeout.png" alt="windows 7 boot speed timeout" width="583" height="335" /></p>
<ul>
<li>Click the “<em>Advanced Options</em>” button.</li>
<li>Check the box labeled with “<em>Number of Processor</em>” and select the number of processors in your computer. Most probably it will be 2.</li>
</ul>
<p><img class="aligncenter size-full wp-image-10008" src="http://imagecdn.maketecheasier.com/2009/12/win7speed-processor.png" alt="windows 7 increase number of boot up processors" width="394" height="392" /></p>
<ul>
<li>Now click <em>&#8220;OK&#8221;</em>.</li>
<li>Click “Apply” and then <em>&#8220;OK&#8221;</em>.</li>
</ul>
<p><em>Note: The above tricks will work only If you are using multi-core (more than one) processor in your computer.</em></p>
<h3>3: Disable Windows Aero theme</h3>
<p>Windows Aero theme is the eye candy in Windows Vista/7. While its performance was greatly improved in Win 7 as compared to Vista, it is still taking up a large amount of memory and squeezes the graphics card to its maximum. If you can live without the eye candy, then it is a great choice to disable it.</p>
<ul>
<li>Right  click on the desktop and select “<em>Personalize</em>” .</li>
<li>Chose One of the standard themes from the right hand side. &#8220;Windows 7 Basic&#8221; is a good choice.</li>
</ul>
<p><img class="aligncenter size-full wp-image-10009" src="http://imagecdn.maketecheasier.com/2009/12/win7speed-disable-aero.png" alt="windows 7 disable aero themes" width="533" height="394" /></p>
<h3>4. Remove unwanted items from startup menu</h3>
<p>Some of the applications that you have installed are automatically added tn the startup menu without your knowledge. If you are wondering why your Windows take so long to startup, they are mainly the culprit. The best way to fix this is to remove the unwanted programs and services from the startup menu.</p>
<ul>
<li>Press<em> Windows Key + R</em> and type “<em>msconfig</em>” in the run dialogue box.</li>
<li>Go to the Startup tab. Uncheck the applications that you have no use for. (Make sure you do not remove any system services).</li>
</ul>
<h3>5.Use your USB flash drive as RAM</h3>
<p>In Windows 7, there is this awesome and useful feature that allows you to use your USB flash drive as an external RAM.</p>
<p>Before you start, make sure that you are using a freshly formatted USB drive.</p>
<ul>
<li>plug in your USB drive. Right click on the USB drive in My Computer window and select <em>Property</em>.</li>
<li>Under “<em>Ready Boost</em>” tab, check the box “<em>Use this device</em>”.</li>
<li>Configure the space of your USB flash drive that you want to allocate for system speed.</li>
</ul>
<p><img class="aligncenter size-full wp-image-10011" src="http://imagecdn.maketecheasier.com/2009/12/win7speed-readyboost.png" alt="use USB drive as readyboost" width="374" height="484" /></p>
<h3>6. Disable unnecessary system sounds</h3>
<p>When it is active, the system sound can take up a lot of system resources and slow down the computer.</p>
<ul>
<li>Press <em>Windows Key + R</em> to open the Run window. Type “<em>mmsys.cpl</em>” and hit Enter.</li>
<li>Go to the Sound tab. Select “<em>No Sounds</em>” from the <em>Sound Scheme</em> dropdown box.</li>
</ul>
<p>Note: You can still keep some of your favorite sounds, but you must disable the <em>Shutdown</em>, <em>Start up</em>, <em>Logoff</em>, <em>Start navigation</em> and <em>Logon </em>sound for the best performance.</p>
<p>If you know of any more ways to speed up Windows 7, do let me know in the comments.</p>
<p><!--adsense#468x60--></p>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/6-essential-tips-to-speed-up-windows-7/2009/12/30&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/6-essential-tips-to-speed-up-windows-7/2009/12/30" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/6-essential-tips-to-speed-up-windows-7/2009/12/30" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/6-essential-tips-to-speed-up-windows-7/2009/12/30" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/6-essential-tips-to-speed-up-windows-7/2009/12/30&amp;title=6+Essential+Tips+to+Speed+up+Windows+7&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/6-essential-tips-to-speed-up-windows-7/2009/12/30" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/6-essential-tips-to-speed-up-windows-7/2009/12/30">6 Essential Tips to Speed up Windows 7</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://maketecheasier.com/6-essential-tips-to-speed-up-windows-7/2009/12/30/feed</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>8 Ways To Improve Your WordPress&#8217;s Loading Time</title>
		<link>http://maketecheasier.com/8-ways-to-improve-your-wordpresss-loading-time/2009/01/21</link>
		<comments>http://maketecheasier.com/8-ways-to-improve-your-wordpresss-loading-time/2009/01/21#comments</comments>
		<pubDate>Wed, 21 Jan 2009 13:15:00 +0000</pubDate>
		<dc:creator>Damien</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[performance]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=2115</guid>
		<description><![CDATA[If you have been blogging for quite a while, you will find that as your traffic increases, your blog&#8217;s loading time become slower and slower. This could be due to inefficient coding, too many images (or advertisement) or just that you have activated too many plugins that take up your valuable server resources. If the [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/8-ways-to-improve-your-wordpresss-loading-time/2009/01/21&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/8-ways-to-improve-your-wordpresss-loading-time/2009/01/21" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/8-ways-to-improve-your-wordpresss-loading-time/2009/01/21" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/8-ways-to-improve-your-wordpresss-loading-time/2009/01/21" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/8-ways-to-improve-your-wordpresss-loading-time/2009/01/21&amp;title=8+Ways+To+Improve+Your+WordPress%26%238217%3Bs+Loading+Time&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/8-ways-to-improve-your-wordpresss-loading-time/2009/01/21" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/8-ways-to-improve-your-wordpresss-loading-time/2009/01/21">8 Ways To Improve Your WordPress&#8217;s Loading Time</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" title="stopwatch" src="http://imagecdn.maketecheasier.com/2009/1/stopwatch.jpg" alt="stopwatch" width="240" height="201" />If you have been blogging for quite a while, you will find that as your traffic increases, your blog&#8217;s loading time become slower and slower. This could be due to inefficient coding, too many images (or advertisement) or just that you have activated too many plugins that take up your valuable server resources. If the above is true for you, then it is time for you to do some spring-cleaning and start to streamline and optimize your site.</p>
<p>Here are 8 ways that you can use to improve your site loading time.</p>
<p><span id="more-2115"></span></p>
<h3>1. Reduce the number of images and image size in your site</h3>
<p>Images take up a lot of bandwidth and can slow down the page’s loading time to a great extent. One of the best way to reduce loading time is to reduce the number of images in your site.</p>
<p>There are main two types of images that most WordPress blogs contain: <em>theme images</em> and <em>post images</em>. Theme images are those images that are used in the theme. These can be the header images, the small bullet images you use for any list, the small icon beside the comment link and many more. If you are not the designer of your theme and you know nuts about coding, there is really nothing much that you can do. You can either live with it or change your current theme to one that uses lesser images. For those with some coding knowledge, you can use <a href="http://www.csssprites.com/" target="_blank">CSS Sprite</a> to combine several images into one big image and use CSS <em>background-position</em> to shift the image around (<a href="http://css-tricks.com/css-sprites-what-they-are-why-theyre-cool-and-how-to-use-them/" target="_blank">more detail here</a>).</p>
<p>Post images are images that you inserted into your posts to illustrate your points or to beautify the post. If possible, reduce the number of images used in the post (not more than 5). If your site is a tutorial blog that uses plenty of screenshots to get your points across (just like Make Tech Easier), the best way out is to optimize and compress the images before posting them in your site. Adobe Photoshop has this “<em>Save for Web</em>” function that you can use to optimize/compress your images easily. Most free image editors (such as GIMP) also provide you with the option to compress your images. Online tools such as <a href="http://tools.dynamicdrive.com/imageoptimizer/" target="_blank">online image optimizer</a> and <a href="http://www.jpegwizard.com/" target="_blank">JPEGWizard</a> are also great tools you can use to reduce the filesize of your images.</p>
<h3>2. Split up long post into multiple short pages</h3>
<p>If you are in the habit of writing long posts (more than 1500 words), it is best to split the post into several small pages. Not only does it leads to a faster loading page, it is also easier for your visitors to read and digest. In WordPress, you can easily split your post with the <em> <code>&lt;!--nextpage--&gt;</code></em> tag. <a href="http://maketecheasier.com/7simple-wordpress-tricks-that-you-thought-you-know/2008/11/10" target="_blank">Read here for more detail</a>.</p>
<h3>3. Upgrade to the latest version of WordPress and plugins</h3>
<p>It is important that you update your WordPress and all your plugins to the latest version. The WordPress team is working hard to make sure that every release of WordPress has a better performance than the previous version. The only way for you to make use of their effort is to follow the development cycle closely and update whenever a newer version is available.</p>
<h3>4. Deactivate unused plugins</h3>
<p>Most of the plugins introduce extra javascript and css file to your site and choke up your bandwidth. If you have no use for any of the plugins, make sure you deactivate them and get rid of those miscellaneous javascript and css. You’ll be surprised how much faster your site will load when these unused plugins are not around.</p>
<p>In addition, check out your existing list of active plugins and see if any of those have overlapping features with the latest version of WordPress. For example, prior to WP2.7, I used the Admin Management Xtended plugin to better manage all the administrative tasks. With the release of WP2.7, most of the features in the plugin are integrated into the software itself, which means I can now retire the plugin and free up the valuable resources.</p>
<p>You may also want to check out the <a href="http://wordpress.org/extend/plugins/" target="_blank">WordPress plugin repository</a> regularly for any other plugins that can do the same function as your existing plugins, but have better performance.</p>
<h3>5.  Install WP-SuperCache</h3>
<p>If there is one plugin that you must keep, it have to be <a href="http://wordpress.org/extend/plugins/wp-super-cache/" target="_blank">WP-SuperCache</a>. The SuperCache plugin caches your page as a static html file. When your visitors arrive at your site, they will be served the static page instead of the actual page.</p>
<p>If your Web host can support compressed file, you can further improve your site loading time simply by checking the <em>Enable Compression</em> feature within the SuperCache option page. When this option is turned on, the static html will be compressed as a gzip file, making the filesize even smaller.</p>
<p>(<em>Note that the compression feature might not work for everyone. Some have reported problems with different browsers. Please test it thoroughly before using it live</em>)</p>
<p><img class="alignnone" title="supercache-compress" src="http://imagecdn.maketecheasier.com/2009/1/supercache-compress.jpg" alt="supercache-compress" width="459" height="166" /></p>
<h3>6. Streamlining your theme</h3>
<p>Your theme (especially <em>header.php and footer.php</em>) contains a lot of redundant dynamic content that can easily take up valuable server resources. You can easily streamline it to reduce the number of php and database queries.</p>
<p>Here is an example of how you can streamline your code. Log in to your Admin dashboard. Go to the theme editor section and load up the <em>Header</em> file. You should see something like this (without the color coding):</p>
<p><img class="alignnone" title="header-screenshot" src="http://imagecdn.maketecheasier.com/2009/1/header-screenshot.jpg" alt="header-screenshot" width="580" height="385" /></p>
<p>(Screenshot taken from <em>classic</em> theme header.php in a html editor. Depending on the theme that you are using, result may vary.)</p>
<p>Here is how I change some of the dynamic content (&lt;?php &#8230;. ?&gt; tag) into strings of text. Also, look how I have reduce the number of items in the header file.</p>
<p><img class="alignnone" title="header-after-streamlining" src="http://imagecdn.maketecheasier.com/2009/1/header-after.jpg" alt="header-after-streamlining" width="580" height="266" /></p>
<p>By streamlining your theme, the site won&#8217;t have to keep going back to the server to query the database, thus the time taken to load will also be faster.</p>
<h3>7. Add Expires header to static resources</h3>
<p>One of the great way to improve your site loading time is to add an Expires header to all your static resources (such as css file, javascript, images etc).  An Expires header is a way to specify a time far enough in the future so that the clients (browsers) don&#8217;t have to re-fetch any static content. Here is an example of how you can add Expires header to all your images.</p>
<p>Download your .htaccess file from your server.</p>
<p>Add the following lines to the file:</p>
<p class="codeblock">ExpiresActive On<br />
ExpiresByType image/gif A2592000<br />
ExpiresByType image/png AA2592000<br />
ExpiresByType image/jpg AA2592000<br />
ExpiresByType image/jpeg AA2592000</p>
<p>The <em>A2592000</em> means that the cache file will expire one month (in seconds) from the time the visitor first visits your site.</p>
<h3>8. Install php_speedy</h3>
<p>From the above, you can see that I did not mention anything about compressing and minify your CSS and javascript files. That is because <em>php_speedy</em> has all of them covered.</p>
<p><a href="http://aciddrop.com/2008/07/15/php-speedy-wp-version-047-works-with-wp26/" target="_blank">PHP Speedy</a> is a WordPress plugin that optimizes your site and reduces the loading time of all your pages greatly. What it does is to compress and minify all your CSS and javascript files, set expiration-header for CSS and JS file, streamline the html tag and cache it in the server for quick loading.</p>
<p>What other ways do you use to improve your site&#8217;s loading time?</p>
<p><strong>Image credit</strong>: <a href="http://www.flickr.com/photos/purplemattfish/" target="_blank">Purplemattfish</a></p>
<p><!--adsense#468x60--></p>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/8-ways-to-improve-your-wordpresss-loading-time/2009/01/21&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/8-ways-to-improve-your-wordpresss-loading-time/2009/01/21" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/8-ways-to-improve-your-wordpresss-loading-time/2009/01/21" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/8-ways-to-improve-your-wordpresss-loading-time/2009/01/21" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/8-ways-to-improve-your-wordpresss-loading-time/2009/01/21&amp;title=8+Ways+To+Improve+Your+WordPress%26%238217%3Bs+Loading+Time&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/8-ways-to-improve-your-wordpresss-loading-time/2009/01/21" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/8-ways-to-improve-your-wordpresss-loading-time/2009/01/21">8 Ways To Improve Your WordPress&#8217;s Loading Time</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://maketecheasier.com/8-ways-to-improve-your-wordpresss-loading-time/2009/01/21/feed</wfw:commentRss>
		<slash:comments>26</slash:comments>
		</item>
	</channel>
</rss>

