<?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>Colin Godsey</title>
	<atom:link href="http://www.colingodsey.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.colingodsey.com</link>
	<description>CRG Studios &#38; Consulting</description>
	<lastBuildDate>Sat, 06 Mar 2010 00:09:59 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>I Hate Sockets&#8230; and HTTP</title>
		<link>http://www.colingodsey.com/i-hate-sockets-and-http/</link>
		<comments>http://www.colingodsey.com/i-hate-sockets-and-http/#comments</comments>
		<pubDate>Sat, 06 Mar 2010 00:08:35 +0000</pubDate>
		<dc:creator>Colin Godsey</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[http]]></category>
		<category><![CDATA[ip]]></category>
		<category><![CDATA[sockets]]></category>
		<category><![CDATA[tcp]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.colingodsey.com/?p=218</guid>
		<description><![CDATA[TCP/IP programming has been a really &#8216;fun&#8217; experience so far in my journey to create a JavaScript web server. Starting with sockets all the way to HTTP, I have succeeded in destroying my confidence in my ability to understand computers. In case any of you suffer from this same affliction dealing with sockets, here is [...]]]></description>
			<content:encoded><![CDATA[<p>TCP/IP programming has been a really &#8216;fun&#8217; experience so far in my journey to create a JavaScript web server. Starting with sockets all the way to HTTP, I have succeeded in destroying my confidence in my ability to understand computers. In case any of you suffer from this same affliction dealing with sockets, here is a little tip that may help you get to bug #341: <a href="http://mark.koli.ch/2009/09/remember-kids-an-http-content-length-is-the-number-of-bytes-not-the-number-of-characters.html" target="_blank">Content-Length Means Bytes, Not Characters</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.colingodsey.com/i-hate-sockets-and-http/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unique Object Delayed Write w/ Redis</title>
		<link>http://www.colingodsey.com/unique-object-delay-write-cache-w-redis/</link>
		<comments>http://www.colingodsey.com/unique-object-delay-write-cache-w-redis/#comments</comments>
		<pubDate>Thu, 03 Dec 2009 01:37:57 +0000</pubDate>
		<dc:creator>Colin Godsey</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.colingodsey.com/?p=211</guid>
		<description><![CDATA[Trying to keep your data updated to a database while undergoing heavy traffic can lead to a very slow response for your queries. Ever wish you could push your writes to a queue so they can be handled during system time and not user time? It&#8217;s pretty easy. This model requires there to be a [...]]]></description>
			<content:encoded><![CDATA[<p>Trying to keep your data updated to a database while undergoing heavy traffic can lead to a very slow response for your queries. Ever wish you could push your writes to a queue so they can be handled during system time and not user time? It&#8217;s pretty easy. This model requires there to be a non-disk key/value data store (Redis, memcache) available that can act as a forward cache. This works better if the system can support lists. If an object does not exist in the forward cache when asked for, it needs to be pulled from the database, assembled and stored in the forward cache. When an object is updated, it needs to be updated in the forward cache as well as being pushed to the write queue. This way your user script only accesses the forward cache and the write cache during standard calls when the cache is already populated with the needed data.</p>
<p>This trick can be enhanced even further by storing a list of unique IDs in the write cache that can be replaced when an objected is updated before one of it&#8217;s previous writes was processed. This means that what would have been two database writes is now one! This requires storing a list in cache as well as the objects, which is done very effectively with <a href="http://code.google.com/p/redis/">Redis</a>.</p>
<p>When used correctly and with a properly designed database that reduces the number of unique objects, <strong>your writes are faster and fewer</strong>! With a few more tricks this system can also be used easily and effectively in a cluster environment. More on that later.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.colingodsey.com/unique-object-delay-write-cache-w-redis/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Redis: Persistent Memory Key-Value Store</title>
		<link>http://www.colingodsey.com/redis-persistent-memory-db/</link>
		<comments>http://www.colingodsey.com/redis-persistent-memory-db/#comments</comments>
		<pubDate>Sat, 21 Nov 2009 03:02:22 +0000</pubDate>
		<dc:creator>Colin Godsey</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Gaming]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.colingodsey.com/?p=202</guid>
		<description><![CDATA[Just today I was challenged with a project that will require value caching in a PHP/MySQL cluster environment. This project will have to deal with loads of up to 500 requests per second, most of which will involve writes. When working on a small scale it is easy to forget the latency issues associated with [...]]]></description>
			<content:encoded><![CDATA[<p>Just today I was challenged with a project that will require value caching in a PHP/MySQL cluster environment. This project will have to deal with loads of up to 500 requests per second, most of which will involve writes. When working on a small scale it is easy to forget the latency issues associated with all engines in MySQL. This project will require a massive read/write caching system that will sit between PHP and MySQL and will require full data persistence. I found a valuable article that shows some of the timing differences of the <a href="http://www.ruturaj.net/redis-memcached-tokyo-tyrant-mysql-comparison" target="_blank">popular storage systems under load</a>. Redis seems to be the real winner here. With write-only data persistence (write to disk), this storage engine still comes out on top! This is truly the best system if you are caching write calls to MySQL. This way, most of the data will survive in case of a crash. Persistence can be increased even further by using another fully redundant Redis server. This is a must have for high-load write caching.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.colingodsey.com/redis-persistent-memory-db/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Logos Engine &#8211; HDR Video</title>
		<link>http://www.colingodsey.com/logos-engine-hdr-video/</link>
		<comments>http://www.colingodsey.com/logos-engine-hdr-video/#comments</comments>
		<pubDate>Thu, 29 Oct 2009 20:56:45 +0000</pubDate>
		<dc:creator>Colin Godsey</dc:creator>
				<category><![CDATA[Gaming]]></category>
		<category><![CDATA[Graphics]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Logos Engine]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[math]]></category>
		<category><![CDATA[media]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.colingodsey.com/?p=181</guid>
		<description><![CDATA[This video showcases some new features of the deferred rendering system in my Logos Engine including HDR, auto-exposure, edge detect anti-aliasing, shadow mapping and more. Check the page for more info.
]]></description>
			<content:encoded><![CDATA[<p>This video showcases some new features of the deferred rendering system in my Logos Engine including HDR, auto-exposure, edge detect anti-aliasing, shadow mapping and more. Check the <a href="http://www.colingodsey.com/logos-engine/">page</a> for more info.</p>
<p><a href="http://www.colingodsey.com/logos-engine-hdr-video/"><em>Click here to view the embedded video.</em></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.colingodsey.com/logos-engine-hdr-video/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Deferred Lighting and Shadow Mapping</title>
		<link>http://www.colingodsey.com/deferred-lighting-and-shadow-mapping/</link>
		<comments>http://www.colingodsey.com/deferred-lighting-and-shadow-mapping/#comments</comments>
		<pubDate>Wed, 07 Oct 2009 07:09:29 +0000</pubDate>
		<dc:creator>Colin Godsey</dc:creator>
				<category><![CDATA[Gaming]]></category>
		<category><![CDATA[Graphics]]></category>
		<category><![CDATA[Logos Engine]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.colingodsey.com/?p=162</guid>
		<description><![CDATA[I just finished implementing my deferred lighting and shadow mapping system for the T2 (Logos) engine that will be used for my upcoming structure based game. Here is a nice little screenshot of the whole deferred lighting system with HDR, depth of field and shadow mapping using OpenGL 2.1 post-processing techniques. The tank is just [...]]]></description>
			<content:encoded><![CDATA[<p>I just finished implementing my deferred lighting and shadow mapping system for the <a href="http://sourceforge.net/projects/t2-engine/" target="_blank">T2 (Logos) engine</a> that will be used for my upcoming structure based game. Here is a nice little screenshot of the whole deferred lighting system with HDR, depth of field and shadow mapping using OpenGL 2.1 post-processing techniques. The tank is just there to show off the shadows.</p>
<p style="text-align: center;"><a href="http://www.colingodsey.com/wp-content/uploads/2009/10/t2postprocess.JPG"><img class="size-medium wp-image-163  aligncenter" style="border: 0px initial initial;" title="t2postprocess" src="http://www.colingodsey.com/wp-content/uploads/2009/10/t2postprocess-300x299.jpg" alt="t2postprocess" width="300" height="299" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.colingodsey.com/deferred-lighting-and-shadow-mapping/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Jungle Disk with Amazon S3 &#8211; Holy Grail of Offsite Data Storage</title>
		<link>http://www.colingodsey.com/jungle-disk-with-amazon-s3-holy-grail-of-offsite-data-storage/</link>
		<comments>http://www.colingodsey.com/jungle-disk-with-amazon-s3-holy-grail-of-offsite-data-storage/#comments</comments>
		<pubDate>Mon, 05 Oct 2009 22:33:54 +0000</pubDate>
		<dc:creator>Colin Godsey</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Sites]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[hardware]]></category>
		<category><![CDATA[laptop]]></category>
		<category><![CDATA[version]]></category>

		<guid isPermaLink="false">http://www.colingodsey.com/?p=153</guid>
		<description><![CDATA[Using Jungle Disk with Amazon S3 data storage I have finally become completely data secure. On top of that, I pay a price better (and more appropriately adjusted) price than I could ever have hoped for.
Generally when files sit on my computer, I may have one copy of them. Sometimes I will have a hard [...]]]></description>
			<content:encoded><![CDATA[<p>Using Jungle Disk with Amazon S3 data storage I have finally become completely data secure. On top of that, I pay a price better (and more appropriately adjusted) price than I could ever have hoped for.</p>
<p>Generally when files sit on my computer, I may have one copy of them. Sometimes I will have a hard drive elsewhere where I keep copies of those files, because as we all know hard drives come and go. This system allows me to keep my data at any point in time (sometimes two) with the ability to lose one of those &#8216;points&#8217; at any time. I have used different version control systems before and it gives me the great ability to control my data at a variety of fixed points in time per set of files. So I can keep a version control system and make automated back-ups of that. This isn&#8217;t terribly practical for data like images, videos of important things in your life, source code, private writings, important songs, the things you don&#8217;t ever want to lose, and things that don&#8217;t change much. It would be nice to take all of these concepts and just boil it down, right? I think I have found that Holy Grail of data storage.</p>
<p>Using Jungle Disk with Amazon S3 has given me the most awesome combo of personal data backup ever. With my current set-up I have a standard Amazon Simple Storage Service (S3) Account which attaches to my standard Amazon account I use for ordering books. This gives me access to my &#8220;cloud data&#8221;.</p>
<p>Amazon distributes this data out all over the web and it is failure proof. The website states:</p>
<blockquote><p><strong>Failure tolerant:</strong> The system considers the failure of components to be a normal mode of operation, and continues operation with no or minimal interruption.</p></blockquote>
<p>That is a powerful statement, but with cloud technology and RAID storage this service is one of the most powerful data storage system for every purpose. It is marketed towards web developers for use in websites, cloud computing, and high intensity global distribution, but it&#8217;s even really awesome just for your laptop backups and it&#8217;s dirt cheap!</p>
<p>They price based on a varied scale. It breaks down into a price you have to pay per GB of storage per month and a price you have to pay per GB of storage to access it (read or write). At a glance, the numbers don&#8217;t make sense and you can&#8217;t even begin to imagine how much it will cost you to use it for backups. But I decided to go for it. Using a piece of software called <a href="http://www.jungledisk.com/">Jungle Disk</a> I was able to interface with this data as an interesting type of backup media. Jungle Disk allows incremental backups (only changed data) and also offers version control. This way when you don&#8217;t make much change to your data, it costs you <em>way</em> less to keep it up to date using Jungle Disk and you can keep a time range of data also. Last month (<strong>Sept. &#8216;09</strong>) I paid the following for my <a href="http://aws.amazon.com/s3/">Amazon S3</a> account:</p>
<table style="font-size: inherit;" border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr id="AmazonS3blockitem0">
<td style="font-size: small; font-family: verdana, arial, helvetica, sans-serif; vertical-align: middle; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #cccccc; padding-top: 1px; padding-right: 4px; padding-bottom: 1px; padding-left: 4px; margin: 0px;" width="14"></td>
<td style="font-size: small; font-family: verdana, arial, helvetica, sans-serif; vertical-align: middle; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #cccccc; padding-top: 1px; padding-right: 4px; padding-bottom: 1px; padding-left: 4px; margin: 0px;" width="10%"></td>
<td style="font-size: x-small; font-family: verdana, arial, helvetica, sans-serif; vertical-align: middle; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #cccccc; padding-top: 1px; padding-right: 4px; padding-bottom: 1px; padding-left: 4px; margin: 0px;">$0.150 per GB &#8211; first 50 TB / month of storage used</td>
<td style="font-size: x-small; font-family: verdana, arial, helvetica, sans-serif; vertical-align: middle; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #cccccc; padding-top: 1px; padding-right: 4px; padding-bottom: 1px; padding-left: 4px; margin: 0px;">22.243 GB-Mo</td>
<td style="font-size: x-small; font-family: verdana, arial, helvetica, sans-serif; vertical-align: middle; text-align: right; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #cccccc; padding-top: 1px; padding-right: 4px; padding-bottom: 1px; padding-left: 4px; margin: 0px;">3.34</td>
</tr>
<tr id="AmazonS3blockitem1">
<td style="font-size: small; font-family: verdana, arial, helvetica, sans-serif; vertical-align: middle; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #cccccc; padding-top: 1px; padding-right: 4px; padding-bottom: 1px; padding-left: 4px; margin: 0px;" width="14"></td>
<td style="font-size: small; font-family: verdana, arial, helvetica, sans-serif; vertical-align: middle; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #cccccc; padding-top: 1px; padding-right: 4px; padding-bottom: 1px; padding-left: 4px; margin: 0px;" width="10%"></td>
<td style="font-size: x-small; font-family: verdana, arial, helvetica, sans-serif; vertical-align: middle; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #cccccc; padding-top: 1px; padding-right: 4px; padding-bottom: 1px; padding-left: 4px; margin: 0px;">$0.100 per GB &#8211; all data transfer in</td>
<td style="font-size: x-small; font-family: verdana, arial, helvetica, sans-serif; vertical-align: middle; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #cccccc; padding-top: 1px; padding-right: 4px; padding-bottom: 1px; padding-left: 4px; margin: 0px;">2.558 GB</td>
<td style="font-size: x-small; font-family: verdana, arial, helvetica, sans-serif; vertical-align: middle; text-align: right; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #cccccc; padding-top: 1px; padding-right: 4px; padding-bottom: 1px; padding-left: 4px; margin: 0px;">0.26</td>
</tr>
<tr id="AmazonS3blockitem2">
<td style="font-size: small; font-family: verdana, arial, helvetica, sans-serif; vertical-align: middle; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #cccccc; padding-top: 1px; padding-right: 4px; padding-bottom: 1px; padding-left: 4px; margin: 0px;" width="14"></td>
<td style="font-size: small; font-family: verdana, arial, helvetica, sans-serif; vertical-align: middle; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #cccccc; padding-top: 1px; padding-right: 4px; padding-bottom: 1px; padding-left: 4px; margin: 0px;" width="10%"></td>
<td style="font-size: x-small; font-family: verdana, arial, helvetica, sans-serif; vertical-align: middle; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #cccccc; padding-top: 1px; padding-right: 4px; padding-bottom: 1px; padding-left: 4px; margin: 0px;">$0.170 per GB &#8211; first 10 TB / month data transfer out</td>
<td style="font-size: x-small; font-family: verdana, arial, helvetica, sans-serif; vertical-align: middle; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #cccccc; padding-top: 1px; padding-right: 4px; padding-bottom: 1px; padding-left: 4px; margin: 0px;">1.073 GB</td>
<td style="font-size: x-small; font-family: verdana, arial, helvetica, sans-serif; vertical-align: middle; text-align: right; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #cccccc; padding-top: 1px; padding-right: 4px; padding-bottom: 1px; padding-left: 4px; margin: 0px;">0.18</td>
</tr>
<tr id="AmazonS3blockitem3">
<td style="font-size: small; font-family: verdana, arial, helvetica, sans-serif; vertical-align: middle; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #cccccc; padding-top: 1px; padding-right: 4px; padding-bottom: 1px; padding-left: 4px; margin: 0px;" width="14"></td>
<td style="font-size: small; font-family: verdana, arial, helvetica, sans-serif; vertical-align: middle; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #cccccc; padding-top: 1px; padding-right: 4px; padding-bottom: 1px; padding-left: 4px; margin: 0px;" width="10%"></td>
<td style="font-size: x-small; font-family: verdana, arial, helvetica, sans-serif; vertical-align: middle; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #cccccc; padding-top: 1px; padding-right: 4px; padding-bottom: 1px; padding-left: 4px; margin: 0px;">$0.01 per 1,000 PUT, COPY, POST, or LIST requests</td>
<td style="font-size: x-small; font-family: verdana, arial, helvetica, sans-serif; vertical-align: middle; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #cccccc; padding-top: 1px; padding-right: 4px; padding-bottom: 1px; padding-left: 4px; margin: 0px;">48,355 Requests</td>
<td style="font-size: x-small; font-family: verdana, arial, helvetica, sans-serif; vertical-align: middle; text-align: right; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #cccccc; padding-top: 1px; padding-right: 4px; padding-bottom: 1px; padding-left: 4px; margin: 0px;">0.48</td>
</tr>
<tr id="AmazonS3blockitem4">
<td style="font-size: small; font-family: verdana, arial, helvetica, sans-serif; vertical-align: middle; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #cccccc; padding-top: 1px; padding-right: 4px; padding-bottom: 1px; padding-left: 4px; margin: 0px;" width="14"></td>
<td style="font-size: small; font-family: verdana, arial, helvetica, sans-serif; vertical-align: middle; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #cccccc; padding-top: 1px; padding-right: 4px; padding-bottom: 1px; padding-left: 4px; margin: 0px;" width="10%"></td>
<td style="font-size: x-small; font-family: verdana, arial, helvetica, sans-serif; vertical-align: middle; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #cccccc; padding-top: 1px; padding-right: 4px; padding-bottom: 1px; padding-left: 4px; margin: 0px;">$0.01 per 10,000 GET and all other requests</td>
<td style="font-size: x-small; font-family: verdana, arial, helvetica, sans-serif; vertical-align: middle; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #cccccc; padding-top: 1px; padding-right: 4px; padding-bottom: 1px; padding-left: 4px; margin: 0px;">206,830 Requests</td>
<td style="font-size: x-small; font-family: verdana, arial, helvetica, sans-serif; vertical-align: middle; text-align: right; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #cccccc; padding-top: 1px; padding-right: 4px; padding-bottom: 1px; padding-left: 4px; margin: 0px;">0.21</td>
</tr>
<tr>
<td style="font-size: small; font-family: verdana, arial, helvetica, sans-serif; vertical-align: middle; background-color: #eeeeee; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #cccccc; padding-top: 1px; padding-right: 4px; padding-bottom: 1px; padding-left: 4px; margin: 0px;" width="14"></td>
<td style="font-size: small; font-family: verdana, arial, helvetica, sans-serif; vertical-align: middle; background-color: #eeeeee; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #cccccc; padding-top: 1px; padding-right: 4px; padding-bottom: 1px; padding-left: 4px; margin: 0px;"></td>
<td style="font-size: small; font-family: verdana, arial, helvetica, sans-serif; vertical-align: middle; background-color: #eeeeee; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #cccccc; padding-top: 1px; padding-right: 4px; padding-bottom: 1px; padding-left: 4px; margin: 0px;"></td>
<td style="font-size: xx-small; font-family: verdana, arial, helvetica, sans-serif; vertical-align: middle; background-color: #eeeeee; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #cccccc; padding-top: 1px; padding-right: 4px; padding-bottom: 1px; padding-left: 4px; margin: 0px;"></td>
<td style="font-size: small; font-family: verdana, arial, helvetica, sans-serif; vertical-align: middle; font-weight: bold; text-align: right; background-color: #eeeeee; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #cccccc; padding-top: 1px; padding-right: 4px; padding-bottom: 1px; padding-left: 4px; margin: 0px;">4.47</td>
</tr>
</tbody>
</table>
<p>What that really says is that I maintained <strong>22.2 GB</strong> of important data (including <strong>6 days</strong> worth of file version history for modified <em>and</em> deleted files of all types), <strong>2.6 G</strong>B of transfered data that came out of my computer, plus <strong>1.1 GB</strong> of data that came out of their cloud, I only spent <strong>$4.47</strong>. This is also for 2 computers, both of which I use for continuous work. If I didn&#8217;t make that many changes to my local set of data it would have only been <strong>$3.34 </strong>for that month. That&#8217;s more than I spend at Taco Bell after a night at the bars. I would much rather have my data safe.</p>
<p>The Jungle Disk software reliably and cheaply synchronizes your local and cloud data over the span of however many days you told it to. Jungle Disk itself only costs <strong>$2.00 per month</strong>. This is amazing! Not only is my data reliably stored at two places (one of which is indestructible) but it&#8217;s protected from <em>me</em> by giving me a set of data over a time frame that I can continue to access. You can even set it to never delete a file if you want. Jungle Disk will also hook you up with a network drive that you can treat basically like a hard drive. This data stays separate from your backup data, but it is charged just the same and is stored in the same cloud &#8220;bucket&#8221;.</p>
<p>This has been the best backup solution I have seen so far for my personal data and my personal business. Even for enterprise data it&#8217;s perfect (all of these transactions can be encrypted of course). Back-ups of this site as well as my other sites also sit on there.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.colingodsey.com/jungle-disk-with-amazon-s3-holy-grail-of-offsite-data-storage/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Draw, Josh.</title>
		<link>http://www.colingodsey.com/draw-josh/</link>
		<comments>http://www.colingodsey.com/draw-josh/#comments</comments>
		<pubDate>Mon, 17 Aug 2009 16:20:09 +0000</pubDate>
		<dc:creator>Colin Godsey</dc:creator>
				<category><![CDATA[Graphics]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[Northern Illinois University]]></category>
		<category><![CDATA[Sites]]></category>
		<category><![CDATA[draw]]></category>
		<category><![CDATA[drawing]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[sketch]]></category>

		<guid isPermaLink="false">http://www.colingodsey.com/?p=117</guid>
		<description><![CDATA[My buddy Josh Peter has been on his Daily Stranger escapade for 54 days already. This adventure includes drawing a sketch of a stranger (daily) and publishing it on his blog draw, josh. These drawings have kept my Google Reader account lively and entertaining for almost two months now! I recommend you check it too. [...]]]></description>
			<content:encoded><![CDATA[<p>My buddy <a href="http://www.joshpeterillustration.com/">Josh Peter</a> has been on his Daily Stranger escapade for 54 days already. This adventure includes drawing a sketch of a stranger (daily) and publishing it on his blog <a title="draw, josh" href="http://drawjosh.blogspot.com/">draw, josh</a>. These drawings have kept my Google Reader account lively and entertaining for almost two months now! I recommend you check it too. Here&#8217;s a fav:</p>
<p style="text-align: center;"><a href="http://drawjosh.blogspot.com/2009/07/daily-stranger-36.html"><img class="aligncenter" title="daily stranger 36" src="http://4.bp.blogspot.com/_JBsjej0ifUI/SnEA0zC16uI/AAAAAAAAAJw/cLvU4kV6pko/s400/Stranger36.jpg" alt="" width="400" height="304" /><br />
Daily Stranger 36</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.colingodsey.com/draw-josh/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Eclipse and Zend PDT Icons for Ubuntu/Linux</title>
		<link>http://www.colingodsey.com/eclipse-and-zend-pdt-icons-for-ubuntu-and-linux/</link>
		<comments>http://www.colingodsey.com/eclipse-and-zend-pdt-icons-for-ubuntu-and-linux/#comments</comments>
		<pubDate>Wed, 05 Aug 2009 21:52:28 +0000</pubDate>
		<dc:creator>Colin Godsey</dc:creator>
				<category><![CDATA[Graphics]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[gnome]]></category>
		<category><![CDATA[icon]]></category>
		<category><![CDATA[panel]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[zend]]></category>

		<guid isPermaLink="false">http://www.colingodsey.com/?p=108</guid>
		<description><![CDATA[I use Eclipse for all sorts of stuff including Zend PDT, Android SDK and C++. I like to keep my desktop looking well organized and looking professional. I never liked the default Eclipse icon that came with the Linux installs, so I made my own for Eclipse and Zend PDT icons with transparency that look [...]]]></description>
			<content:encoded><![CDATA[<p>I use <a href="http://www.eclipse.org">Eclipse</a> for all sorts of stuff including <a href="http://www.zend.com/community/pdt">Zend PDT</a>, <a href="http://developer.android.com/index.html">Android SDK</a> and C++. I like to keep my desktop looking well organized and looking professional. I never liked the default Eclipse icon that came with the Linux installs, so I made my own for Eclipse and Zend PDT icons with transparency that look snazzy with blending in GNOME panels or <a href="http://awn.wetpaint.com/">Avant Window Manager</a>.</p>
<p style="text-align: center;"><a href="http://www.colingodsey.com/wp-content/uploads/2009/08/zend.png"><img class="size-full wp-image-110  aligncenter" title="zend" src="http://www.colingodsey.com/wp-content/uploads/2009/08/zend.png" alt="zend" width="60" height="60" /></a><a href="http://www.colingodsey.com/wp-content/uploads/2009/08/eclipse.png"><img class="size-full wp-image-109  aligncenter" title="eclipse" src="http://www.colingodsey.com/wp-content/uploads/2009/08/eclipse.png" alt="eclipse" width="48" height="48" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.colingodsey.com/eclipse-and-zend-pdt-icons-for-ubuntu-and-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Coming Soon&#8230; Structure &amp; T2-Engine</title>
		<link>http://www.colingodsey.com/coming-soon-structure/</link>
		<comments>http://www.colingodsey.com/coming-soon-structure/#comments</comments>
		<pubDate>Mon, 13 Jul 2009 03:52:08 +0000</pubDate>
		<dc:creator>Colin Godsey</dc:creator>
				<category><![CDATA[Gaming]]></category>
		<category><![CDATA[Graphics]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Logos Engine]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[engine]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[opengl]]></category>
		<category><![CDATA[structure]]></category>
		<category><![CDATA[t2]]></category>

		<guid isPermaLink="false">http://www.colingodsey.com/?p=99</guid>
		<description><![CDATA[Hey guys, keep tuned for updates on CRG Studios&#8217; upcoming simulator: Structure. It is past concept and will soon be impacting your world. The engine this will be using will be my open source T2 Engine. This game will be cross-platform, hardware enabled and terribly awesome.

]]></description>
			<content:encoded><![CDATA[<p>Hey guys, keep tuned for updates on CRG Studios&#8217; upcoming simulator: Structure. It is past concept and will soon be impacting your world. The engine this will be using will be my open source T2 Engine. This game will be cross-platform, hardware enabled and terribly awesome.</p>
<p style="text-align: center;"><p><a href="http://www.colingodsey.com/coming-soon-structure/"><em>Click here to view the embedded video.</em></a></p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.colingodsey.com/coming-soon-structure/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Amarok 2 Under Windows</title>
		<link>http://www.colingodsey.com/amarok-2-under-windows/</link>
		<comments>http://www.colingodsey.com/amarok-2-under-windows/#comments</comments>
		<pubDate>Mon, 27 Apr 2009 18:59:50 +0000</pubDate>
		<dc:creator>Colin Godsey</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[kde]]></category>
		<category><![CDATA[media]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.colingodsey.com/?p=81</guid>
		<description><![CDATA[I know, I know. Some would say it&#8217;s gross or perverse, but in reality it is undeniably awesome. You can install Amarok 2 under Windows using The KDE on Windows Project.  I&#8217;ve always been a fan of Amarok and have found Winamp and other various Windows based music players just don&#8217;t do it as well [...]]]></description>
			<content:encoded><![CDATA[<p>I know, I know. Some would say it&#8217;s gross or perverse, but in reality it is undeniably awesome. You can install <a href="http://amarok.kde.org/" target="_blank">Amarok 2</a> under Windows using <a href="http://windows.kde.org/" target="_blank">The KDE on Windows Project</a>.  I&#8217;ve always been a fan of Amarok and have found Winamp and other various Windows based music players just don&#8217;t do it as well as Amarok. The only difficulty I had installed this was finding the native Amarok package in the KDE4W installer. I had to pick version 2.2.1 instead of the head stable release to find a prebuilt and working package for Amarok but alas I have it working!</p>
<p style="text-align: center;"><a href="http://www.colingodsey.com/wp-content/uploads/2009/04/amarok.png"><img class="size-medium wp-image-82  aligncenter" title="amarok windows" src="http://www.colingodsey.com/wp-content/uploads/2009/04/amarok-300x239.png" alt="amarok windows" width="300" height="239" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.colingodsey.com/amarok-2-under-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
