<?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>grep life by Jeremy Glover &#187; Amazing</title>
	<atom:link href="http://www.jeremyglover.com/blog/category/amazing/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jeremyglover.com/blog</link>
	<description>God has an awesome plan for your life.</description>
	<lastBuildDate>Fri, 30 Jul 2010 11:28:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Caching With Zend Framework Using Zend_Cache</title>
		<link>http://www.jeremyglover.com/blog/2009/08/17/caching-with-zend-framework-using-zend_cache/</link>
		<comments>http://www.jeremyglover.com/blog/2009/08/17/caching-with-zend-framework-using-zend_cache/#comments</comments>
		<pubDate>Tue, 18 Aug 2009 01:18:19 +0000</pubDate>
		<dc:creator>Jeremy</dc:creator>
				<category><![CDATA[Amazing]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Zend Framework]]></category>

		<guid isPermaLink="false">http://www.jeremyglover.com/blog/?p=495</guid>
		<description><![CDATA[Today I taught myself how to use Zend_Cache and implemented it within 20 minutes. It&#8217;s super easy and very effective. Take a look at the code sample below and you&#8217;ll be up and running in no time. &#160; Step 1: Setup the Cache $frontendOptions = array( 'lifetime' =&#62; 180, // Cache for 3 minutes 'automatic_serialization' [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p><img src="http://static.jeremyglover.com/blog/wp-content/uploads/2009/08/cheeks_blowing.jpg" alt="Cheeks Blowing" title="Cheeks Blowing" width="250" height="159" class="alignright size-full wp-image-500" /></p>
<p style="font-size:1.3em; line-height:1.7em;">Today I taught myself how to use Zend_Cache and implemented it within 20 minutes. It&#8217;s super easy and very effective. Take a look at the code sample below and you&#8217;ll be up and running in no time.</p>
<div style="clear:both;">&nbsp;</div>
<p><strong>Step 1: Setup the Cache</strong></p>
<pre class="php">
$frontendOptions <span class="phpOperator">=</span> <span class="phpFunction">array</span><span class="phpOperator">(</span>
	<span class="phpString">'lifetime'</span> <span class="phpOperator"><span class="phpOperator">=</span><span class="phpOperator">&gt;</span></span> 180,	<span class="phpComment">// Cache<span class="phpKeyword"> for </span><span class="phpNumber">3</span> minutes
</span>	<span class="phpString">'automatic_serialization'</span> <span class="phpOperator"><span class="phpOperator">=</span><span class="phpOperator">&gt;</span></span><span class="phpKeyword"> true
</span>
<span class="phpOperator">)</span><span class="phpText">;</span>
$backendOptions <span class="phpOperator">=</span> <span class="phpFunction">array</span><span class="phpOperator">(</span><span class="phpString">'cache_dir'</span> <span class="phpOperator"><span class="phpOperator">=</span><span class="phpOperator">&gt;</span></span> <span class="phpFunction">dirname</span><span class="phpOperator">(</span><span class="phpConstant">__FILE__</span><span class="phpOperator">)</span> <span class="phpOperator">.</span> <span class="phpString">'/cache/'</span><span class="phpOperator">)</span><span class="phpText">;</span>
$cache <span class="phpOperator">=</span> Zend_Cache<span class="phpOperator">:</span><span class="phpOperator">:</span>factory<span class="phpOperator">(</span>
	<span class="phpString">'Core'</span>,
	<span class="phpString">'File'</span>,
	$frontendOptions,
	$backendOptions<span class="phpOperator">)</span><span class="phpText">;</span>
</pre>
<p><strong>Step 2: Use the Cache</strong></p>
<pre class="php">
$data <span class="phpOperator">=</span> null;
<span class="phpKeyword">
if<span class="phpOperator">(</span></span><span class="phpOperator">!</span>$data <span class="phpOperator">=</span> $cache<span class="phpOperator">-<span class="phpOperator">&gt;</span></span>load<span class="phpOperator">(</span><span class="phpString">'data'</span><span class="phpOperator">)</span><span class="phpOperator">)</span>
<span class="phpOperator">{</span>
	$service <span class="phpOperator">=</span><span class="phpKeyword"> new </span>Service<span class="phpOperator">(</span>API_KEY<span class="phpOperator">)</span><span class="phpText">;</span>
	$result <span class="phpOperator">=</span> $service<span class="phpOperator">-<span class="phpOperator">&gt;</span></span>generateReport<span class="phpOperator">(</span><span class="phpOperator">)</span><span class="phpText">;</span>
	$data <span class="phpOperator">=</span> $service<span class="phpOperator">-<span class="phpOperator">&gt;</span></span>getReport<span class="phpOperator">(</span><span class="phpOperator">)</span><span class="phpText">;</span>
	$cache<span class="phpOperator">-<span class="phpOperator">&gt;</span></span>save<span class="phpOperator">(</span>$data, <span class="phpString">'data'</span><span class="phpOperator">)</span><span class="phpText">;</span>
<span class="phpOperator">}</span>
<span class="phpKeyword">
else
</span>
<span class="phpOperator">{</span>
	<span class="phpFunction">print</span><span class="phpOperator">(</span><span class="phpString">"Cache Hit<span class="phpOperator">!</span>"</span><span class="phpOperator">)</span><span class="phpText">;</span>
<span class="phpOperator">}</span>
</pre>
<p><strong>The page load time went from about 9 seconds to 0.5 seconds! 18x faster and it only took a few lines of code. Awesome.</strong></p>
<p>My main motivation for caching the data ($data in the code example) was actually to reduce the load on the web service which provides the data. We have a good relationship with the company providing the service but there&#8217;s a good chance they would become annoyed if we hammered their system to get the exact same data over and over. The load time improvement was a good side effect, though!</p>
<p>For more information on Zend_Cache which comes with the Zend Framework, check out the <a href="http://framework.zend.com/manual/en/zend.cache.html" target="_blank">reference guide</a> and <a href="http://framework.zend.com/apidoc/core/" target="_blank">API documentation</a>.</p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.jeremyglover.com/blog/2009/08/17/caching-with-zend-framework-using-zend_cache/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Welcome to Puerto Vallarta, Mexico</title>
		<link>http://www.jeremyglover.com/blog/2009/08/03/welcome-to-puerto-vallarta-mexico/</link>
		<comments>http://www.jeremyglover.com/blog/2009/08/03/welcome-to-puerto-vallarta-mexico/#comments</comments>
		<pubDate>Mon, 03 Aug 2009 12:15:33 +0000</pubDate>
		<dc:creator>Jeremy</dc:creator>
				<category><![CDATA[Amazing]]></category>
		<category><![CDATA[Entertainment]]></category>
		<category><![CDATA[Food]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Vacation]]></category>

		<guid isPermaLink="false">http://www.jeremyglover.com/blog/?p=487</guid>
		<description><![CDATA[Kara and I just returned from a seven-day trip to Puerto Vallarta, Mexico. We stayed at Royal Decameron Costa Flamingos all-inclusive resort which had fantastic scenery and was reasonably priced at $1700 for the week including all meals, unlimited drinks, taxis to and from the airport, and airfare. The best part of most vacations is [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p><img src="http://pictures.shapingperspective.com/albums/uploads/2009-07-Puerto-Vallarta/thumb_IMG_2491.JPG" width="75" height="100" style="float:right; margin-left:20px; margin-bottom:20px;" /></p>
<p>Kara and I just returned from a seven-day trip to Puerto Vallarta, Mexico. We stayed at <a href="http://www.tripadvisor.com/Hotel_Review-g657267-d264910-Reviews-Royal_Decameron_Puerto_Vallarta-Bucerias_Pacific_Coast.html" target="_blank">Royal Decameron Costa Flamingos all-inclusive resort</a> which had fantastic scenery and was reasonably priced at $1700 for the week including all meals, unlimited drinks, taxis to and from the airport, and airfare.</p>
<p>The best part of most vacations is being able to relax and we sure did. Most days went like so: wake up at 10:00; eat breakfast; get in the ocean until 12:00; swim until 1:00; eat lunch; swim some more; get ready for dinner and eat it; take pictures and enjoy one of five bars. Awesome.</p>
<p>We did venture out of the resort once on foot in an effort to go downtown but were too frightened by our surroundings so we promptly turned around after walking for about 10 minutes. After that we decided to book a snorkeling tour instead which was great because the taxi picked us up right in front of the resort.</p>
<p>My only complaints were lack of air conditioning everywhere except the rooms and mediocre food. But Kara and I quickly found a work-around by making reservations at the on-site Piccolo restaurant which was enclosed (cooler but not air conditioned) and had food at least three times better than the other restaurants we tried so therefore we ate there three out of the seven nights. Even so, a quick trip to Applebee&#8217;s when we returned was in order to get some decent dessert. For some reason only flan and nasty, hard cookies were supplied.</p>
<p>On-site Restaurant Rating (best to worst):</p>
<ol>
<li>Piccolo (Italian)</li>
<li>Rodizio (Brazilian Grill)</li>
<li>Wok (Thai)</li>
<li>Buffets (each night the theme changes)</li>
<li>Mexicano (Mexican)</li>
<li>JapJap (Japanese)</li>
</ol>
<p>The bars were numerous (5) and inviting. My favorite drink was the mango margarita followed closely by what they called a frozen brown cow which was simply <a href="http://www.kahlua.com/" target="_blank">Kahlua</a> and milk. Many of the reviews we read prior to vacationing slammed the bars for putting very little alcohol in the drinks. I can say from first-hand ivory throne-visiting experience that we did not feel the same way. Hey Pepto-Bismol!</p>
<p>Enough rambling. Enjoy the pictures!</p>
<table border="0" cellspacing="0" cellpadding="3">
<tr>
<td>
<img src="http://pictures.shapingperspective.com/albums/uploads/2009-07-Puerto-Vallarta/thumb_IMG_2492.JPG" width="100" height="75" />
</td>
<td>
<img src="http://pictures.shapingperspective.com/albums/uploads/2009-07-Puerto-Vallarta/thumb_IMG_2389.JPG" width="100" height="75" />
</td>
<td>
<img src="http://pictures.shapingperspective.com/albums/uploads/2009-07-Puerto-Vallarta/thumb_IMG_2366.JPG" width="100" height="75" />
</td>
<td>
<img src="http://pictures.shapingperspective.com/albums/uploads/2009-07-Puerto-Vallarta/thumb_IMG_2613.JPG" width="100" height="75" />
</td>
</tr>
</table>
<h3><a href="http://pictures.shapingperspective.com/thumbnails.php?album=8&#038;page=1" target="_blank">See the rest of the pictures!</a></h3>
<div style="clear:both;">&nbsp;</div>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.jeremyglover.com/blog/2009/08/03/welcome-to-puerto-vallarta-mexico/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>It pays to be pink. At least Garmin thinks so.</title>
		<link>http://www.jeremyglover.com/blog/2009/05/27/it-pays-to-be-pink-at-least-garmin-thinks-so/</link>
		<comments>http://www.jeremyglover.com/blog/2009/05/27/it-pays-to-be-pink-at-least-garmin-thinks-so/#comments</comments>
		<pubDate>Thu, 28 May 2009 04:06:56 +0000</pubDate>
		<dc:creator>Jeremy</dc:creator>
				<category><![CDATA[Amazing]]></category>
		<category><![CDATA[Annoying]]></category>
		<category><![CDATA[Deals]]></category>
		<category><![CDATA[Depressing]]></category>
		<category><![CDATA[GPS]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Money]]></category>
		<category><![CDATA[Ridiculous]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Toys]]></category>

		<guid isPermaLink="false">http://www.jeremyglover.com/blog/?p=446</guid>
		<description><![CDATA[For my mother&#8217;s birthday I purchased a TomTom One 130. The updated maps had the other half of my road, so I was happy it could navigate more efficiently. Tonight I stumbled across a new site called DealWaiter. I plugged in &#8220;Garmin Nuvi&#8221; and it had a few results but also had a link to [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>For my mother&#8217;s birthday I purchased a <a href="http://www.tomtom.com/products/product.php?ID=487&#038;Category=0&#038;Lid=4">TomTom One 130</a>. The updated maps had the other half of my road, so I was happy it could navigate more efficiently. Tonight I stumbled across a <a href="http://dealwaiter.com/">new site called DealWaiter</a>. I plugged in &#8220;Garmin Nuvi&#8221; and it had a few results but also had a link to buy it immediately on Amazon.com. I&#8217;m sure that link is purely platonic, right? Hah! It turns out the Garmin Nuvi 250 comes in two colors: pink and silver.</p>
<p>I was blown away by <a href="http://www.amazon.com/Garmin-3-5-Inch-Portable-Navigator-Silver/dp/B000NW0Y9W/">the price difference</a>:</p>
<div id="attachment_447" class="wp-caption alignnone" style="width: 479px"><a href="http://static.jeremyglover.com/blog/wp-content/uploads/2009/05/amazoncom-garmin-nuvi-250.jpg" rel="lightbox[446]"><img src="http://static.jeremyglover.com/blog/wp-content/uploads/2009/05/amazoncom-garmin-nuvi-250.jpg" alt="Amazon.com - Garmin Nuvi 250 - Price comparison between silver and pink versions" title="Amazon.com - Garmin Nuvi 250 in Pink" width="469" height="297" class="size-full wp-image-447" border="0" /></a><p class="wp-caption-text">Amazon.com - Garmin Nuvi 250 - Price comparison between silver and pink versions</p></div>
<p>Silver: $109.99<br />
Pink: $471.99<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
Difference: $362.00</p>
<h1 style="color:#FF0000;">The difference alone could purchase<br />3.3 units of the silver model!</h1>
<p><a href="http://www.garmin.com/">Garmin</a> isn&#8217;t the only company who discriminates based on color. Want a black Mac? Better have some &#8220;I&#8217;m rich!&#8221; money laying around. <a href="http://www.apple.com/">Apple</a> used to have both black and white MacBooks and the typical difference was $100+.</p>
<p>What ridiculous discrepancies have you found?</p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.jeremyglover.com/blog/2009/05/27/it-pays-to-be-pink-at-least-garmin-thinks-so/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How do you watch your television shows?</title>
		<link>http://www.jeremyglover.com/blog/2009/05/25/how-do-you-watch-your-television-shows/</link>
		<comments>http://www.jeremyglover.com/blog/2009/05/25/how-do-you-watch-your-television-shows/#comments</comments>
		<pubDate>Mon, 25 May 2009 23:46:08 +0000</pubDate>
		<dc:creator>Jeremy</dc:creator>
				<category><![CDATA[Amazing]]></category>
		<category><![CDATA[DVR]]></category>
		<category><![CDATA[Entertainment]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Hosting]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[TV]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.jeremyglover.com/blog/?p=420</guid>
		<description><![CDATA[Midway through Heroes: Season 3 I realized how quickly video streaming technology has evolved in the last few years. Think about the multitude of ways you can now get your fix. Regular old TV Digital Video Recorder (DVR): TiVo, MythTV, cable box DVR Hulu YouTube (and other video-sharing sites) NetFlix&#8217;s Watch Instantly Networks&#8217; websites (ABC, [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p><a href="http://static.jeremyglover.com/blog/wp-content/uploads/2009/05/old-tv-set.jpg" rel="lightbox[420]"><img src="http://static.jeremyglover.com/blog/wp-content/uploads/2009/05/old-tv-set-150x150.jpg" alt="Old TV Set" title="Old TV Set" width="150" height="150" border="0" align="left" style="margin-right:15px; margin-bottom:15px;" /></a></p>
<p>Midway through <a href="http://www.nbc.com/Heroes/">Heroes: Season 3</a> I realized how quickly video streaming technology has evolved in the last few years. Think about the multitude of ways you can now get your fix.</p>
<div style="clear:both;"></div>
<ul>
<li><a href="http://en.wikipedia.org/wiki/Tv">Regular old TV</a></li>
<li><a href="http://en.wikipedia.org/wiki/Digital_video_recorder">Digital Video Recorder (DVR)</a>: <a href="http://www.tivo.com/">TiVo</a>, <a href="http://www.mythtv.org/">MythTV</a>, cable box DVR</li>
<li><a href="http://www.hulu.com/">Hulu</a></li>
<li><a href="http://www.youtube.com/">YouTube</a> (and other video-sharing sites)</li>
<li><a href="http://www.netflix.com/WiHome">NetFlix&#8217;s Watch Instantly</a></li>
<li>Networks&#8217; websites (<a href="http://abc.go.com/">ABC</a>, <a href="http://www.cbs.com/">CBS</a>, <a href="http://www.nbc.com/Video/">NBC</a>, <a href="http://www.fox.com/fod/">Fox</a>, etc.)
<li><a href="http://www.netflix.com/">NetFlix</a> and <a href="https://www.blockbuster.com/signup/">Blockbuster</a> DVDs to your door</li>
<li><a href="http://www.google.com/search?q=video+rental">Video rental stores</a></li>
<li><a href="http://www.redbox.com/">Red Box</a> (at grocery stores and various other locations)</li>
<li>On my iPhone using <a href="http://m.nbc.com/">NBC&#8217;s mobile player</a>.</li>
</ul>
<p>EDIT:<br />
Loren brought to my attention another category which I left off entirely, which is software/hardware combos for consuming the aforementioned services:</p>
<ul>
<li><a href="http://www.boxee.tv/">Boxee</a></li>
<li><a href="http://www.apple.com/appletv/">Apple TV</a></li>
<li><a href="http://www.roku.com/">Roku Digital Video Player</a></li>
<li><a href="http://www.netflix.com/NetflixReadyDevicesDetails?pdid=5">Xbox 360</a></li>
<li><a href="http://www.lge.com/us/tv-audio-video/video/LG-blu-ray-dvd-player-BD390.jsp">LG Network Blu-ray Players</a></li>
<li><a href="http://www.samsung.com/us/consumer/detail/detail.do?group=audiovideo&#038;type=blu_ray&#038;subtype=blu_raydiscplayers&#038;model_cd=BD-P4600/XAA">Samsung Network Blu-ray Players</a></li>
</ul>
<p>Just 15 years ago that list was a lot smaller: TV, video rental stores, VCR.</p>
<p>What&#8217;s your favorite viewing service?</p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.jeremyglover.com/blog/2009/05/25/how-do-you-watch-your-television-shows/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Speed Up That Cheap Website with Cheap Amazon S3</title>
		<link>http://www.jeremyglover.com/blog/2009/03/16/speed-up-that-cheap-website-with-cheap-amazon-s3/</link>
		<comments>http://www.jeremyglover.com/blog/2009/03/16/speed-up-that-cheap-website-with-cheap-amazon-s3/#comments</comments>
		<pubDate>Tue, 17 Mar 2009 00:47:29 +0000</pubDate>
		<dc:creator>Jeremy</dc:creator>
				<category><![CDATA[Amazing]]></category>
		<category><![CDATA[Annoying]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[DIY]]></category>
		<category><![CDATA[Deals]]></category>
		<category><![CDATA[Entertainment]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Hosting]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Ridiculous]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.jeremyglover.com/blog/?p=358</guid>
		<description><![CDATA[Do you have an economy-grade website host? Me too. BlueHost is great for only $6.95 per month but its response times and transfer rates are terrible. Fear not &#8212; Amazon S3 to the rescue. For pennies a day you can supplement your cheap website host using Amazon&#8217;s Simple Storage Service (S3). Amazon S3 is storage [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p><img src="http://media.amazonwebservices.com/logo_aws.gif" style="float:right; margin-left:20px; margin-bottom:20px;" /><br />
Do you have an economy-grade website host?  Me too.  <a href="http://www.bluehost.com">BlueHost</a> is great for only $6.95 per month but its response times and transfer rates are terrible.  Fear not &mdash; Amazon S3 to the rescue.  For pennies a day you can supplement your cheap website host using Amazon&#8217;s Simple Storage Service (S3).</p>
<blockquote><p>
Amazon S3 is storage for the Internet. It is designed to make web-scale computing easier for developers.</p>
<p>Amazon S3 provides a simple web services interface that can be used to store and retrieve any amount of data, at any time, from anywhere on the web. It gives any developer access to the same highly scalable, reliable, fast, inexpensive data storage infrastructure that Amazon uses to run its own global network of web sites. The service aims to maximize benefits of scale and to pass those benefits on to developers.
</p></blockquote>
<p>It is simple.  So simple.</p>
<ul>
<li><a href="http://aws.amazon.com/s3/">Sign up for an account.</a></li>
<li>Download and install the <a href="https://addons.mozilla.org/en-US/firefox/addon/3247">awesome S3 Firefox Organizer (S3Fox)</a> Firefox add-on.</li>
<li>Upload the files you want to be served up like hotcakes.</li>
<li>
    Update the links in your HTML files to point to the new location.<br />
    Example: http://s3.amazonaws.com/jeremy/blog/images/large_bandwidth_sucking_header.jpg<br />
    Note that the example is intended to show the format of the URL and does not point to a valid resource.
</li>
</ul>
<p>Too good to be true?  Nope.  The S3 files are served up lickety split and best of all it takes the load off of your cheap host which allows it to function much more efficiently.  So far I have moved my site&#8217;s header and the LightBox JS file.  Why didn&#8217;t I move the other JS files and images?  <a href="http://www.jeremyglover.com/blog/2009/04/07/use-google-as-a-crutch-for-your-cheap-website-host/">Because Google hosts all of the popular JavaScript libraries for free.</a></p>
<p><strong>How much does it cost?</strong><br />
Very little, unless your site becomes wildly popular.  1 million requests costs one dollar plus 17 cents per GB transfered.  That&#8217;s right.  1,000,000 GET requests = $1.00 + $0.17/GB.  </p>
<p>Let&#8217;s assume the average size of the elements being served from your Amazon S3 bucket is 10KB.<br />
10KB = 0.01MB = 0.00001GB<br />
1,000,000 requests x 0.00001GB = 10GB<br />
10GB x $0.17/GB = $1.70<br />
1,000,000 requests x $0.01/10,000 requests = $1.00<br />
Total Download Cost: $2.70</p>
<p>Your cheap site can now support 1,000,000 requests per month for a whopping $9.65 ($6.95 for BlueHost and $2.70 for Amazon S3).  And if your site gets <a href="http://www.digg.com">Dugg</a> or on the front page of <a href="http://www.reddit.com">Reddit</a>, Amazon S3 will scale without sweating a drop.</p>
<div style="clear:both;"></div>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.jeremyglover.com/blog/2009/03/16/speed-up-that-cheap-website-with-cheap-amazon-s3/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Welcome to the Bahamas!</title>
		<link>http://www.jeremyglover.com/blog/2008/12/06/welcome-to-the-bahamas/</link>
		<comments>http://www.jeremyglover.com/blog/2008/12/06/welcome-to-the-bahamas/#comments</comments>
		<pubDate>Sat, 06 Dec 2008 22:44:14 +0000</pubDate>
		<dc:creator>Jeremy</dc:creator>
				<category><![CDATA[Amazing]]></category>
		<category><![CDATA[Entertainment]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[Vacation]]></category>

		<guid isPermaLink="false">http://www.jeremyglover.com/blog/?p=321</guid>
		<description><![CDATA[Kara and I had a lovely vacation in the Bahamas in November. Below are some of the highlights. If you&#8217;d like to see all of the pictures (the good ones, at least), head over to our online photo gallery. Oprah&#8217;s House 3 sharks as seen through a glass-bottom boat Related posts:Welcome to Puerto Vallarta, Mexico


Related posts:<ol><li><a href='http://www.jeremyglover.com/blog/2009/08/03/welcome-to-puerto-vallarta-mexico/' rel='bookmark' title='Permanent Link: Welcome to Puerto Vallarta, Mexico'>Welcome to Puerto Vallarta, Mexico</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Kara and I had a lovely vacation in the Bahamas in November.  Below are some of the highlights.  If you&#8217;d like to see all of the pictures (the good ones, at least), <a href="http://pictures.shapingperspective.com/thumbnails.php?album=7" target="_blank">head over to our online photo gallery</a>.</p>
<p><img src="http://pictures.shapingperspective.com/albums/uploads/2008_11_Cruise/normal_IMG_0559.jpg" /></p>
<p><img src="http://pictures.shapingperspective.com/albums/uploads/2008_11_Cruise/normal_IMG_0603.jpg" /></p>
<p><img src="http://pictures.shapingperspective.com/albums/uploads/2008_11_Cruise/normal_IMG_0685.jpg" /></p>
<p><img src="http://pictures.shapingperspective.com/albums/uploads/2008_11_Cruise/normal_IMG_0759.jpg" /></p>
<p><img src="http://pictures.shapingperspective.com/albums/uploads/2008_11_Cruise/normal_IMG_0839.jpg" /><br />
Oprah&#8217;s House</p>
<p><img src="http://pictures.shapingperspective.com/albums/uploads/2008_11_Cruise/normal_IMG_1114.jpg" /><br />
3 sharks as seen through a glass-bottom boat</p>
<p><img src="http://pictures.shapingperspective.com/albums/uploads/2008_11_Cruise/normal_IMG_1170.jpg" /></p>
<p><img src="http://pictures.shapingperspective.com/albums/uploads/2008_11_Cruise/normal_IMG_1188.jpg" /></p>
<p><img src="http://pictures.shapingperspective.com/albums/uploads/2008_11_Cruise/normal_IMG_1226.jpg" /></p>
<p><img src="http://pictures.shapingperspective.com/albums/uploads/2008_11_Cruise/normal_IMG_1244.jpg" /></p>


<p>Related posts:<ol><li><a href='http://www.jeremyglover.com/blog/2009/08/03/welcome-to-puerto-vallarta-mexico/' rel='bookmark' title='Permanent Link: Welcome to Puerto Vallarta, Mexico'>Welcome to Puerto Vallarta, Mexico</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.jeremyglover.com/blog/2008/12/06/welcome-to-the-bahamas/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Software RAID 1 Performance on Ubuntu Server 8.04</title>
		<link>http://www.jeremyglover.com/blog/2008/10/30/software-raid-1-performance-on-ubuntu-server-804/</link>
		<comments>http://www.jeremyglover.com/blog/2008/10/30/software-raid-1-performance-on-ubuntu-server-804/#comments</comments>
		<pubDate>Fri, 31 Oct 2008 00:29:11 +0000</pubDate>
		<dc:creator>Jeremy</dc:creator>
				<category><![CDATA[Amazing]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Hosting]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ridiculous]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.jeremyglover.com/blog/?p=312</guid>
		<description><![CDATA[A generous gift was bestowed upon me last week &#8212; Dell&#8217;s PowerEdge SC420 server. It came with two (2) 80GB hard drives which I have since replaced with two (2) 1TB hard drives. I decided to mirror these drives for the sake of redundancy using Linux&#8217;s built-in software RAID drivers. While synchronizing the drives, I [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.jeremyglover.com/blog/wp-content/uploads/2008/10/harddrive.jpg" alt="" title="Hard Drive" width="300" height="224" class="alignright size-full wp-image-313" /><br />
A generous gift was bestowed upon me last week &#8212; <a href="http://www.dell.com/html/us/products/demos/pedge_sc420/pedge_sc420.html">Dell&#8217;s PowerEdge SC420 server</a>.  It came with two (2) 80GB hard drives which I have since replaced with <a href="http://www.newegg.com/Product/Product.aspx?Item=N82E16822152102">two (2) 1TB hard drives</a>.  I decided to <a href="http://blogama.org/?q=node/8">mirror these drives for the sake of redundancy using Linux&#8217;s built-in software RAID drivers</a>.</p>
<p>While synchronizing the drives, I decided to monitor the progress.  What I saw was truly amazing.</p>
<p><code><br />
jeremy@fileserver1:~$ cat /proc/mdstat<br />
Personalities : [linear] [multipath] [raid0] [raid1] [raid6] [raid5] [raid4] [raid10] </p>
<p>md0 : active raid1 sda1[0] sdb1[1]<br />
      879084736 blocks [2/2] [UU]<br />
      [=>...................]  resync =  8.1% (71688192/879084736) finish=116.2min speed=<strong>115709K/sec</strong><br />
</code></p>
<p>Holy cow!  116MB/s!</p>
<p>That means the <a href="http://en.wikipedia.org/wiki/Sata">SATA bus</a> is processing at least 332MB/s since it has to read the data from one drive and then write the data to the other drive.  That&#8217;s 2,656Mb/s or 2,656,000,000 bits per second which equates to 2.7 bits per picosecond!  I&#8217;d like to see anyone do anything 2.7 times in one picosecond.</p>
<p>I figured with this much throughput the CPU would be chugging away.  Nope.  4%.</p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.jeremyglover.com/blog/2008/10/30/software-raid-1-performance-on-ubuntu-server-804/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install SSH Server on Ubuntu</title>
		<link>http://www.jeremyglover.com/blog/2008/10/25/install-ssh-server-on-ubuntu/</link>
		<comments>http://www.jeremyglover.com/blog/2008/10/25/install-ssh-server-on-ubuntu/#comments</comments>
		<pubDate>Sat, 25 Oct 2008 16:52:03 +0000</pubDate>
		<dc:creator>Jeremy</dc:creator>
				<category><![CDATA[Amazing]]></category>
		<category><![CDATA[DIY]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.jeremyglover.com/blog/?p=309</guid>
		<description><![CDATA[It really couldn&#8217;t be any easier than this: sudo apt-get install openssh-server You&#8217;re done. Now you can use ssh to remotely connect to your Ubuntu box. No related posts.


No related posts.]]></description>
			<content:encoded><![CDATA[<p>It really couldn&#8217;t be any easier than this:</p>
<p><code>sudo apt-get install openssh-server</code></p>
<p>You&#8217;re done.  Now you can use ssh to remotely connect to your <a href="http://www.ubuntu.com/">Ubuntu</a> box.</p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.jeremyglover.com/blog/2008/10/25/install-ssh-server-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dream Gaming Computer &#8211; 2008</title>
		<link>http://www.jeremyglover.com/blog/2008/10/11/dream-gaming-computer-2008/</link>
		<comments>http://www.jeremyglover.com/blog/2008/10/11/dream-gaming-computer-2008/#comments</comments>
		<pubDate>Sun, 12 Oct 2008 01:14:20 +0000</pubDate>
		<dc:creator>Jeremy</dc:creator>
				<category><![CDATA[Amazing]]></category>
		<category><![CDATA[DIY]]></category>
		<category><![CDATA[Entertainment]]></category>
		<category><![CDATA[Gaming]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[Money]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Ridiculous]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.jeremyglover.com/blog/2008/10/11/dream-gaming-computer-2008/</guid>
		<description><![CDATA[Every year my desktop gets older, our mortgage gets smaller, the games get better, and I crave new hardware. The 1st step is to admit you&#8217;re addicted, right? Without further adieu, I present you with my pick for the best gaming desktop of 2008. My picks were based on price and ratings from Newegg.com. I&#8217;ve [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>Every year my desktop gets older, our mortgage gets smaller, the games get better, and I crave new hardware.  The 1st step is to admit you&#8217;re addicted, right?  Without further adieu, I present you with my pick for the best gaming desktop of 2008.  My picks were based on price and ratings from <a href="http://www.newegg.com/">Newegg.com</a>.  I&#8217;ve had great luck with them for years.</p>
<p>Do you have recommendations?  Show off in the comments.</p>
<table border="1" cellspacing="0">
<tbody>
<tr style="background-color:#666666; color:#FFFFFF;">
<td>Qty.</td>
<td>Product Description</td>
<td>Total Price</td>
</tr>
<tr>
<td> 1 </td>
<td>
<div>
<dl>
<dd><img src="http://c1.neweggimages.com/ProductImageCompressAll/11-133-154-13.jpg" width="60" alt="Thermaltake Armor Series VA8000BWS Black Aluminum &#47; Steel ATX Full Tower Computer Case" title="Thermaltake Armor Series VA8000BWS Black Aluminum &#47; Steel ATX Full Tower Computer Case" ></dd>
</dl></div>
<dl>
<dd> <a href="http://www.newegg.com/Product/Product.aspx?Item=N82E16811133154" NAME="CART_ITEM"> Thermaltake Armor Series VA8000BWS Black Aluminum &#47; Steel ATX Full Tower Computer Case &#8211; Retail </a> </dd>
<dd>Item #: N82E16811133154</dd>
<dd> </dd>
</dl>
</td>
<td>
<dl>
<dd>$144.99</dd>
</dl>
</td>
</tr>
<tr>
<td> 6 </td>
<td>
<div>
<dl>
<dd><img src="http://c1.neweggimages.com/ProductImageCompressAll/22-148-274-01.jpg" width="60" alt="Seagate Barracuda 7200.11 ST31000340AS 1TB 7200 RPM SATA 3.0Gb&#47;s Hard Drive" title="Seagate Barracuda 7200.11 ST31000340AS 1TB 7200 RPM SATA 3.0Gb&#47;s Hard Drive" ></dd>
</dl></div>
<dl>
<dd> <a href="http://www.newegg.com/Product/Product.aspx?Item=N82E16822148274" NAME="CART_ITEM"> Seagate Barracuda 7200.11 ST31000340AS 1TB 7200 RPM SATA 3.0Gb&#47;s Hard Drive &#8211; OEM </a> </dd>
<dd>Item #: N82E16822148274</dd>
</dl>
</td>
<td>
<dl>
<dd>$779.94</dd>
<dd>($129.99 each)</dd>
</dl>
</td>
</tr>
<tr>
<td> 2 </td>
<td>
<div>
<dl>
<dd><img src="http://c1.neweggimages.com/ProductImageCompressAll/24-001-268-12.jpg" width="60" alt="SAMSUNG 2253BW Black 22&#34; 2ms&#40;GTG&#41; DVI Widescreen LCD Monitor" title="SAMSUNG 2253BW Black 22&#34; 2ms&#40;GTG&#41; DVI Widescreen LCD Monitor" ></dd>
</dl></div>
<dl>
<dd> <a href="http://www.newegg.com/Product/Product.aspx?Item=N82E16824001268" NAME="CART_ITEM"> SAMSUNG 2253BW Black 22&#34; 2ms&#40;GTG&#41; DVI Widescreen LCD Monitor &#8211; Retail </a> </dd>
<dd>Item #: N82E16824001268</dd>
<dd> </dd>
</dl>
</td>
<td>
<dl>
<dd>$519.98</dd>
<dd>($259.99 each)</dd>
</dl>
</td>
</tr>
<tr>
<td> 2 </td>
<td>
<div>
<dl>
<dd><img src="http://images17.newegg.com/is/image/newegg/14-130-365-TS?$S60$" width="60" alt="EVGA 01G-P3-1280-AR GeForce GTX 280 1GB 512-bit GDDR3 PCI Express 2.0 x16 HDCP Ready SLI Supported Video Card" title="EVGA 01G-P3-1280-AR GeForce GTX 280 1GB 512-bit GDDR3 PCI Express 2.0 x16 HDCP Ready SLI Supported Video Card" ></dd>
</dl></div>
<dl>
<dd> <a href="http://www.newegg.com/Product/Product.aspx?Item=N82E16814130365" NAME="CART_ITEM"> EVGA 01G-P3-1280-AR GeForce GTX 280 1GB 512-bit GDDR3 PCI Express 2.0 x16 HDCP Ready SLI Supported Video Card &#8211; Retail </a> </dd>
<dd>Item #: N82E16814130365</dd>
</dl>
</td>
<td>
<dl>
<dd>$879.98</dd>
<dd>($439.99 each)</dd>
</dl>
</td>
</tr>
<tr>
<td> 1 </td>
<td>
<div>
<dl>
<dd><img src="http://c1.neweggimages.com/ProductImageCompressAll/17-139-006-12.jpg" width="60" alt="CORSAIR CMPSU-750TX 750W ATX12V &#47; EPS12V SLI Ready CrossFire Ready 80 PLUS Certified Active PFC Power Supply" title="CORSAIR CMPSU-750TX 750W ATX12V &#47; EPS12V SLI Ready CrossFire Ready 80 PLUS Certified Active PFC Power Supply" ></dd>
</dl></div>
<dl>
<dd> <a href="http://www.newegg.com/Product/Product.aspx?Item=N82E16817139006" NAME="CART_ITEM"> CORSAIR CMPSU-750TX 750W ATX12V &#47; EPS12V SLI Ready CrossFire Ready 80 PLUS Certified Active PFC Power Supply &#8211; Retail </a> </dd>
<dd>Item #: N82E16817139006</dd>
<dd> </dd>
</dl>
</td>
<td>
<dl>
<dd>$119.99</dd>
</dl>
</td>
</tr>
<tr>
<td> 1 </td>
<td>
<div>
<dl>
<dd><img src="http://c1.neweggimages.com/ProductImageCompressAll/23-175-103-01.jpg" width="60" alt="Saitek PZ30AU Black USB Wired Standard Eclipse Keyboard" title="Saitek PZ30AU Black USB Wired Standard Eclipse Keyboard" ></dd>
</dl></div>
<dl>
<dd> <a href="http://www.newegg.com/Product/Product.aspx?Item=N82E16823175103" NAME="CART_ITEM"> Saitek PZ30AU Black USB Wired Standard Eclipse Keyboard &#8211; Retail </a> </dd>
<dd>Item #: N82E16823175103</dd>
<dd> </dd>
</dl>
</td>
<td>
<dl>
<dd>$49.99</dd>
</dl>
</td>
</tr>
<tr>
<td> 1 </td>
<td>
<div>
<dl>
<dd><img src="http://c1.neweggimages.com/ProductImageCompressAll/26-104-203-09.jpg" width="60" alt="Logitech G7 Black 6 Buttons Tilt Wheel USB RF Wireless Laser Mouse" title="Logitech G7 Black 6 Buttons Tilt Wheel USB RF Wireless Laser Mouse" ></dd>
</dl></div>
<dl>
<dd> <a href="http://www.newegg.com/Product/Product.aspx?Item=N82E16826104203" NAME="CART_ITEM"> Logitech G7 Black 6 Buttons Tilt Wheel USB RF Wireless Laser Mouse &#8211; Retail </a> </dd>
<dd>Item #: N82E16826104203</dd>
<dd> </dd>
</dl>
</td>
<td>
<dl>
<dd>$72.99</dd>
</dl>
</td>
</tr>
<tr>
<td> 2 </td>
<td>
<div>
<dl>
<dd><img src="http://c1.neweggimages.com/ProductImageCompressAll/20-220-278-05.jpg" width="60" alt="Patriot 4GB &#40;2 x 2GB&#41; 240-Pin DDR3 SDRAM DDR3 1333 &#40;PC3 10666&#41; Dual Channel Kit Desktop Memory Model PDC34G1333LLK" title="Patriot 4GB &#40;2 x 2GB&#41; 240-Pin DDR3 SDRAM DDR3 1333 &#40;PC3 10666&#41; Dual Channel Kit Desktop Memory Model PDC34G1333LLK" ></dd>
</dl></div>
<dl>
<dd> <a href="http://www.newegg.com/Product/Product.aspx?Item=N82E16820220278" NAME="CART_ITEM"> Patriot 4GB &#40;2 x 2GB&#41; 240-Pin DDR3 SDRAM DDR3 1333 &#40;PC3 10666&#41; Dual Channel Kit Desktop Memory Model PDC34G1333LLK &#8211; Retail </a> </dd>
<dd>Item #: N82E16820220278</dd>
<dd> </dd>
</dl>
</td>
<td>
<dl>
<dd>$339.98</dd>
<dd>($169.99 each)</dd>
</dl>
</td>
</tr>
<tr>
<td> 1 </td>
<td>
<div>
<dl>
<dd><img src="http://images17.newegg.com/is/image/newegg/13-141-009-TS?$S60$" width="60" alt="XFX MBN790IUL9 LGA 775 NVIDIA nForce 790i Ultra SLI DDR3 ATX Intel Motherboard" title="XFX MBN790IUL9 LGA 775 NVIDIA nForce 790i Ultra SLI DDR3 ATX Intel Motherboard" ></dd>
</dl></div>
<dl>
<dd> <a href="http://www.newegg.com/Product/Product.aspx?Item=N82E16813141009" NAME="CART_ITEM"> XFX MBN790IUL9 LGA 775 NVIDIA nForce 790i Ultra SLI DDR3 ATX Intel Motherboard &#8211; Retail </a> </dd>
<dd>Item #: N82E16813141009</dd>
<dd> </dd>
</dl>
</td>
<td>
<dl>
<dd>$329.99</dd>
</dl>
</td>
</tr>
<tr>
<td> 1 </td>
<td>
<div>
<dl>
<dd><img src="http://c1.neweggimages.com/ProductImageCompressAll/35-186-134-05.jpg" width="60" alt="ARCTIC COOLING Freezer 7 Pro 92mm CPU Cooler" title="ARCTIC COOLING Freezer 7 Pro 92mm CPU Cooler" ></dd>
</dl></div>
<dl>
<dd> <a href="http://www.newegg.com/Product/Product.aspx?Item=N82E16835186134" NAME="CART_ITEM"> ARCTIC COOLING Freezer 7 Pro 92mm CPU Cooler &#8211; Retail </a> </dd>
<dd>Item #: N82E16835186134</dd>
</dl>
</td>
<td>
<dl>
<dd>$36.99</dd>
</dl>
</td>
</tr>
<tr>
<td> 1 </td>
<td>
<div>
<dl>
<dd><img src="http://c1.neweggimages.com/ProductImageCompressAll/35-100-007-01.JPG" width="60" alt="Arctic Silver 5 Thermal Compound" title="Arctic Silver 5 Thermal Compound" ></dd>
</dl></div>
<dl>
<dd> <a href="http://www.newegg.com/Product/Product.aspx?Item=N82E16835100007" NAME="CART_ITEM"> Arctic Silver 5 Thermal Compound &#8211; OEM </a> </dd>
<dd>Item #: N82E16835100007</dd>
<dd> </dd>
</dl>
</td>
<td>
<dl>
<dd>$5.99</dd>
</dl>
</td>
</tr>
<tr>
<td> 1 </td>
<td>
<div>
<dl>
<dd><img src="http://c1.neweggimages.com/ProductImageCompressAll/19-115-130-02.jpg" width="60" alt="Intel Core 2 Quad Q9650 3.0GHz LGA 775 95W Quad-Core Processor Model BX80569Q9650" title="Intel Core 2 Quad Q9650 3.0GHz LGA 775 95W Quad-Core Processor Model BX80569Q9650" ></dd>
</dl></div>
<dl>
<dd> <a href="http://www.newegg.com/Product/Product.aspx?Item=N82E16819115130" NAME="CART_ITEM"> Intel Core 2 Quad Q9650 3.0GHz LGA 775 95W Quad-Core Processor Model BX80569Q9650 &#8211; Retail </a> </dd>
<dd>Item #: N82E16819115130</dd>
<dd> </dd>
</dl>
</td>
<td>
<dl>
<dd>$549.99</dd>
</dl>
</td>
</tr>
<tr>
<td> 1 </td>
<td>
<div>
<dl>
<dd><img src="http://c1.neweggimages.com/ProductImageCompressAll/27-136-133-03.jpg" width="60" alt="LG Black Blu-ray&#47;HD DVD-ROM &#38; 16X DVD&#177;R DVD Burner SATA Model GGC-H20L" title="LG Black Blu-ray&#47;HD DVD-ROM &#38; 16X DVD&#177;R DVD Burner SATA Model GGC-H20L" ></dd>
</dl></div>
<dl>
<dd> <a href="http://www.newegg.com/Product/Product.aspx?Item=N82E16827136133" NAME="CART_ITEM"> LG Black Blu-ray&#47;HD DVD-ROM &#38; 16X DVD&#177;R DVD Burner SATA Model GGC-H20L &#8211; Retail </a> </dd>
<dd>Item #: N82E16827136133</dd>
<dd> </dd>
</dl>
</td>
<td>
<dl>
<dd>$149.99</dd>
</dl>
</td>
</tr>
<tr>
<td> 1 </td>
<td>
<div>
<dl>
<dd><img src="http://c1.neweggimages.com/ProductImageCompressAll/32-116-493-01.jpg" width="60" alt="Microsoft Windows Vista Ultimate SP1 64-bit English 1pk DSP OEI DVD for System Builders" title="Microsoft Windows Vista Ultimate SP1 64-bit English 1pk DSP OEI DVD for System Builders" ></dd>
</dl></div>
<dl>
<dd> <a href="http://www.newegg.com/Product/Product.aspx?Item=N82E16832116493" NAME="CART_ITEM"> Microsoft Windows Vista Ultimate SP1 64-bit English 1pk DSP OEI DVD for System Builders &#8211; OEM </a> </dd>
<dd>Item #: N82E16832116493</dd>
<dd> </dd>
</dl>
</td>
<td>
<dl>
<dd>$179.99</dd>
</dl>
</td>
</tr>
<tr  align="right" style="background-color:#FFFF00">
<td colspan="2">Grand Total:</td>
<td>$4,160.78</td>
</tr>
</tbody>
</table>
<p>Now I&#8217;m sure you&#8217;re wondering why there are six (6) hard drives in this system.</p>
<ul>
<li>This system would double as a storage server for me.</li>
<li>The motherboard supports striping and mirroring (RAID 0+1), so I would setup the drives to mirror and stripe for redundancy and for performance benefits.</li>
<li>As cheap as drives are, why not?</li>
</ul>
<p>My guess is that this system <em>should</em> last for about 8 years which puts it at $520.10 per year.  Not bad at all&#8230;</p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.jeremyglover.com/blog/2008/10/11/dream-gaming-computer-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I&#8217;m Debt Freeeeeeeeee!</title>
		<link>http://www.jeremyglover.com/blog/2008/08/19/im-debt-freeeeeeeeee/</link>
		<comments>http://www.jeremyglover.com/blog/2008/08/19/im-debt-freeeeeeeeee/#comments</comments>
		<pubDate>Wed, 20 Aug 2008 00:33:45 +0000</pubDate>
		<dc:creator>Jeremy</dc:creator>
				<category><![CDATA[Amazing]]></category>
		<category><![CDATA[House]]></category>
		<category><![CDATA[Money]]></category>

		<guid isPermaLink="false">http://www.jeremyglover.com/blog/2008/08/19/im-debt-freeeeeeeeee/</guid>
		<description><![CDATA[&#8230;mostly. Kara and I have worked feverishly over the last year-and-a-half to pay off our high interest (8.25%) second mortgage. When we bought our home in October of 2006 we opted to do an 85/15 mortgage setup to conserve our savings. Instead of a down payment we got a lawnmower, washer, drier, refrigerator, king-size bed, [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>&#8230;mostly.</p>
<p>Kara and I have worked feverishly over the last year-and-a-half to pay off our high interest (8.25%) second mortgage.  When we bought <a href="http://pictures.shapingperspective.com/displayimage.php?album=3&#038;pos=43" target="_blank">our home</a> in October of 2006 we opted to do an 85/15 mortgage setup to conserve our savings.  Instead of a down payment we got a lawnmower, washer, drier, refrigerator, king-size bed, grill, and paint for our entire house.  Looking back, I&#8217;m glad we followed that route and I can proudly say that our only debt is our primary mortgage!</p>
<p><a href='http://www.jeremyglover.com/blog/wp-content/uploads/2008/08/second-mortgage-paid-off.jpg' title='Second Mortgage Paid Off' rel="lightbox[264]"><img src='http://www.jeremyglover.com/blog/wp-content/uploads/2008/08/second-mortgage-paid-off-small-2008-08-19.jpg' alt='Second Mortgage Paid Off' style="border:1px solid black;" /></a></p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.jeremyglover.com/blog/2008/08/19/im-debt-freeeeeeeeee/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>
