<?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>Chris Carey</title>
	<atom:link href="http://chriscarey.com/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://chriscarey.com/wordpress</link>
	<description>Software Developer San Francisco</description>
	<lastBuildDate>Sun, 08 Jan 2012 03:14:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Changing Calendar Colors on a Jailbroken iPhone running iOS 5</title>
		<link>http://chriscarey.com/wordpress/2012/01/07/changing-calendar-colors-on-a-jailbroken-iphone-running-ios-5/</link>
		<comments>http://chriscarey.com/wordpress/2012/01/07/changing-calendar-colors-on-a-jailbroken-iphone-running-ios-5/#comments</comments>
		<pubDate>Sat, 07 Jan 2012 22:54:00 +0000</pubDate>
		<dc:creator>Chris Carey</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://chriscarey.com/wordpress/?p=819</guid>
		<description><![CDATA[iOS 5 changed the database that deals with Calendar colors. The value is now a hex value just like CSS uses (something like #fe6548) - Install sqlite3 via Cydia - ssh to your iPhone - Run sqlite3 and open the calendar database - Issue the SQL commands to change the calendar colors: -Quit sqlite3 -Quit [...]]]></description>
			<content:encoded><![CDATA[<p>iOS 5 changed the database that deals with Calendar colors. The value is now a hex value just like CSS uses (something like #fe6548)</p>
<p>- Install sqlite3 via Cydia</p>
<p>- ssh to your iPhone</p>
<p>- Run sqlite3 and open the calendar database</p>
<pre class="brush: bash; title: ; notranslate">
iPhone:~ mobile$ sqlite3 /var/mobile/Library/Calendar/Calendar.sqlitedb
</pre>
<p>- Issue the SQL commands to change the calendar colors:</p>
<pre class="brush: bash; title: ; notranslate">
sqlite&gt; UPDATE Calendar SET color='#9FC6E7' WHERE title = 'Chris Carey';
sqlite&gt; UPDATE Calendar SET color='#FF7537' WHERE title = 'Work';
sqlite&gt; UPDATE Calendar SET color='#D06B64' WHERE title = 'Important';
sqlite&gt; UPDATE Calendar SET color='#B3DC6C' WHERE title = 'School';
sqlite&gt; UPDATE Calendar SET color='#4986E7' WHERE title = 'Chris &amp; Nasique';
sqlite&gt; UPDATE Calendar SET color='#AC725E' WHERE title = 'Health';
</pre>
<p>-Quit sqlite3</p>
<pre class="brush: bash; title: ; notranslate">
.quit
</pre>
<p>-Quit ssh</p>
<pre class="brush: bash; title: ; notranslate">
exit
</pre>
<p>If needed, kill the calendar app or reboot the phone to get it to reload the new colors</p>
]]></content:encoded>
			<wfw:commentRss>http://chriscarey.com/wordpress/2012/01/07/changing-calendar-colors-on-a-jailbroken-iphone-running-ios-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twitter API, PHP precision and scientific notation</title>
		<link>http://chriscarey.com/wordpress/2011/11/29/twitter-api-and-php-default-precision-of-14/</link>
		<comments>http://chriscarey.com/wordpress/2011/11/29/twitter-api-and-php-default-precision-of-14/#comments</comments>
		<pubDate>Wed, 30 Nov 2011 01:20:40 +0000</pubDate>
		<dc:creator>Chris Carey</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://chriscarey.com/wordpress/?p=805</guid>
		<description><![CDATA[If you use PHP and the Twitter API, be on the lookout for this issue. Twitter IDs are up to 141 quadrillion (141 million billion). These Twitter IDs exceed PHP&#8217;s default precision of 14. So your Twitter IDs could be converted to scientific notation by PHP. A Twitter ID of 141675395434037249 will be stored as [...]]]></description>
			<content:encoded><![CDATA[<p>If you use PHP and the Twitter API, be on the lookout for this issue.</p>
<p>Twitter IDs are up to 141 quadrillion (141 million billion). These Twitter IDs exceed PHP&#8217;s default precision of 14. So your Twitter IDs could be converted to scientific notation by PHP. </p>
<p>A Twitter ID of 141675395434037249 will be stored as 1.41675395434037249E+17 once PHP gets it&#8217;s hands on it.</p>
<p>This could cause code that has been working great for a while to stop working.</p>
<p>Edit your php.ini and set precision to 20, or use<br />
ini_set(&#8216;precision&#8217;, 20);</p>
]]></content:encoded>
			<wfw:commentRss>http://chriscarey.com/wordpress/2011/11/29/twitter-api-and-php-default-precision-of-14/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Debian squeeze libmysqlclient.so.15</title>
		<link>http://chriscarey.com/wordpress/2011/11/18/debian-squeeze-libmysqlclient-so-15/</link>
		<comments>http://chriscarey.com/wordpress/2011/11/18/debian-squeeze-libmysqlclient-so-15/#comments</comments>
		<pubDate>Fri, 18 Nov 2011 22:48:40 +0000</pubDate>
		<dc:creator>Chris Carey</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://chriscarey.com/wordpress/?p=803</guid>
		<description><![CDATA[Here is what you need if you have some binary on Debian squeeze which wants libmysqlclient.so.15 wget http://ftp.nl.debian.org/debian/pool/main/m/mysql-dfsg-5.0/libmysqlclient15off_5.0.51a-24+lenny5_i386.deb sudo dpkg -i libmysqlclient15off_5.0.51a-24+lenny5_i386.deb]]></description>
			<content:encoded><![CDATA[<p>Here is what you need if you have some binary on Debian squeeze which wants libmysqlclient.so.15</p>
<p><code><br />
wget http://ftp.nl.debian.org/debian/pool/main/m/mysql-dfsg-5.0/libmysqlclient15off_5.0.51a-24+lenny5_i386.deb<br />
sudo dpkg -i libmysqlclient15off_5.0.51a-24+lenny5_i386.deb<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://chriscarey.com/wordpress/2011/11/18/debian-squeeze-libmysqlclient-so-15/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>mBuzz Maintenance Page</title>
		<link>http://chriscarey.com/wordpress/2011/10/12/mbuzz-maintenance-page/</link>
		<comments>http://chriscarey.com/wordpress/2011/10/12/mbuzz-maintenance-page/#comments</comments>
		<pubDate>Wed, 12 Oct 2011 07:53:53 +0000</pubDate>
		<dc:creator>Chris Carey</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://chriscarey.com/wordpress/?p=796</guid>
		<description><![CDATA[mBuzz Maintenance page. The &#8216;Like&#8217; and &#8216;Comment&#8217; buttons both function. It sent the Likes and Comments into an IRC channel that could be seen during the upgrade process.]]></description>
			<content:encoded><![CDATA[<p><a href="http://chriscarey.com/wordpress/wp-content/uploads/2011/10/Facebook-mBuzz-Maintenance-Page.png"><img src="http://chriscarey.com/wordpress/wp-content/uploads/2011/10/Facebook-mBuzz-Maintenance-Page.png" alt="" title="Facebook mBuzz Maintenance Page" width="600" class="alignnone size-full wp-image-797" /></a></p>
<p>mBuzz Maintenance page. The &#8216;Like&#8217; and &#8216;Comment&#8217; buttons both function. It sent the Likes and Comments into an IRC channel that could be seen during the upgrade process.</p>
]]></content:encoded>
			<wfw:commentRss>http://chriscarey.com/wordpress/2011/10/12/mbuzz-maintenance-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Show or Hide hidden files in Finder OS X</title>
		<link>http://chriscarey.com/wordpress/2011/05/10/show-or-hide-hidden-files-in-finder-os-x/</link>
		<comments>http://chriscarey.com/wordpress/2011/05/10/show-or-hide-hidden-files-in-finder-os-x/#comments</comments>
		<pubDate>Tue, 10 May 2011 22:39:01 +0000</pubDate>
		<dc:creator>Chris Carey</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://chriscarey.com/wordpress/?p=790</guid>
		<description><![CDATA[Here is how it&#8217;s done via the Terminal: defaults write com.apple.finder AppleShowAllFiles TRUE killall Finder How to Hide Hidden Files: defaults write com.apple.finder AppleShowAllFiles FALSE killall Finder Thanks Brooks Andrus]]></description>
			<content:encoded><![CDATA[<p>Here is how it&#8217;s done via the Terminal:<br />
<code><br />
defaults write com.apple.finder AppleShowAllFiles TRUE<br />
killall Finder<br />
</code><br />
How to Hide Hidden Files:<br />
<code><br />
defaults write com.apple.finder AppleShowAllFiles FALSE<br />
killall Finder<br />
</code></p>
<p>Thanks <a href="http://www.brooksandrus.com/blog/2007/03/23/mac-os-x-show-hide-hidden-files-in-finder/">Brooks Andrus</a></p>
]]></content:encoded>
			<wfw:commentRss>http://chriscarey.com/wordpress/2011/05/10/show-or-hide-hidden-files-in-finder-os-x/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Google Search Globe</title>
		<link>http://chriscarey.com/wordpress/2011/05/06/google-search-globe/</link>
		<comments>http://chriscarey.com/wordpress/2011/05/06/google-search-globe/#comments</comments>
		<pubDate>Fri, 06 May 2011 15:26:21 +0000</pubDate>
		<dc:creator>Chris Carey</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://chriscarey.com/wordpress/?p=782</guid>
		<description><![CDATA[Google is working on this open source data visualization project Search Globe, check it out. I&#8217;m a big fan of creative data visualization.]]></description>
			<content:encoded><![CDATA[<p>Google is working on this open source data visualization project <strong>Search Globe</strong>, <a href="http://data-arts.appspot.com/globe-search">check it out</a>. I&#8217;m a big fan of creative data visualization.</p>
<p><iframe src="http://data-arts.appspot.com/globe-search/embed" height="500" width="500"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://chriscarey.com/wordpress/2011/05/06/google-search-globe/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MacBook Air 2010 Faces of Death</title>
		<link>http://chriscarey.com/wordpress/2011/05/04/macbook-air-2010-faces-of-death/</link>
		<comments>http://chriscarey.com/wordpress/2011/05/04/macbook-air-2010-faces-of-death/#comments</comments>
		<pubDate>Thu, 05 May 2011 02:01:49 +0000</pubDate>
		<dc:creator>Chris Carey</dc:creator>
				<category><![CDATA[Apple]]></category>

		<guid isPermaLink="false">http://chriscarey.com/wordpress/?p=762</guid>
		<description><![CDATA[My MacBook Air 2010 has been crashing a lot. Here is a sampling of some of the screens of death I&#8217;ve experienced over the past 3 days. I&#8217;ve read that this is an issue with the Macbook Air&#8217;s when attached to an external monitor (link). It certainly does seem more common when connected to a [...]]]></description>
			<content:encoded><![CDATA[<p>My MacBook Air 2010 has been crashing a lot. Here is a sampling of some of the screens of death I&#8217;ve experienced over the past 3 days.</p>
<p>I&#8217;ve read that this is an issue with the Macbook Air&#8217;s when attached to an external monitor (<a href="https://discussions.apple.com/thread/2629780?threadID=2629780&#038;start=90&#038;tstart=0">link</a>). It certainly does seem more common when connected to a monitor. However, I&#8217;ve got the crash when using the laptop without connector as well.</p>
<p>Also, when connected to some monitors with VGA, there is a wavyness to the screen image which look like jagged vertical saw blades.</p>
<p>Blue screen of death (no external monitor):</p>
<p><a href="http://chriscarey.com/wordpress/wp-content/uploads/2011/05/20110504-070101.jpg"><img src="http://chriscarey.com/wordpress/wp-content/uploads/2011/05/20110504-070101.jpg" alt="20110504-070101.jpg" class="alignnone size-full" /></a><br />
<span id="more-762"></span></p>
<p>White screen of death with magenta screen of death on the external monitor:</p>
<p><a href="http://chriscarey.com/wordpress/wp-content/uploads/2011/05/20110504-070111.jpg"><img src="http://chriscarey.com/wordpress/wp-content/uploads/2011/05/20110504-070111.jpg" alt="20110504-070111.jpg" class="alignnone size-full" /></a></p>
<p>Red screen of death with white screen of death on the external monitor:</p>
<p><a href="http://chriscarey.com/wordpress/wp-content/uploads/2011/05/20110504-070120.jpg"><img src="http://chriscarey.com/wordpress/wp-content/uploads/2011/05/20110504-070120.jpg" alt="20110504-070120.jpg" class="alignnone size-full" /></a></p>
<p>Frozen screen with white screen of death on the external monitor:</p>
<p><a href="http://chriscarey.com/wordpress/wp-content/uploads/2011/05/20110504-070128.jpg"><img src="http://chriscarey.com/wordpress/wp-content/uploads/2011/05/20110504-070128.jpg" alt="20110504-070128.jpg" class="alignnone size-full" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://chriscarey.com/wordpress/2011/05/04/macbook-air-2010-faces-of-death/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Google Buzz link inside GMail</title>
		<link>http://chriscarey.com/wordpress/2011/02/21/google-buzz-link-inside-gmail/</link>
		<comments>http://chriscarey.com/wordpress/2011/02/21/google-buzz-link-inside-gmail/#comments</comments>
		<pubDate>Tue, 22 Feb 2011 03:37:06 +0000</pubDate>
		<dc:creator>Chris Carey</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://chriscarey.com/wordpress/?p=738</guid>
		<description><![CDATA[The location of Google Buzz within GMail does not make sense to me. Currently Google Buzz is inside of GMail, along with Inbox, etc: Here is how it should look. Google Buzz should be it&#8217;s own section up with Mail:]]></description>
			<content:encoded><![CDATA[<p>The location of Google Buzz within GMail does not make sense to me. </p>
<p>Currently Google Buzz is inside of GMail, along with Inbox, etc:</p>
<p><a href="http://chriscarey.com/wordpress/wp-content/uploads/2011/02/gmail-buzz-1.png"><img src="http://chriscarey.com/wordpress/wp-content/uploads/2011/02/gmail-buzz-1.png" alt="" title="gmail-buzz-1" width="173" height="335" class="alignleft size-full wp-image-739" /></a>
<div style="clear:both;"></div>
<div style="height:20px;"></div>
<p>Here is how it should look. Google Buzz should be it&#8217;s own section up with Mail:</p>
<p><a href="http://chriscarey.com/wordpress/wp-content/uploads/2011/02/gmail-buzz-2.png"><img src="http://chriscarey.com/wordpress/wp-content/uploads/2011/02/gmail-buzz-2.png" alt="" title="gmail-buzz-2" width="173" height="335" class="alignleft size-full wp-image-740" /></a>
<div style="clear:both;"></div>
]]></content:encoded>
			<wfw:commentRss>http://chriscarey.com/wordpress/2011/02/21/google-buzz-link-inside-gmail/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Firesheep netmask error solved</title>
		<link>http://chriscarey.com/wordpress/2010/11/08/firesheep-error-solved/</link>
		<comments>http://chriscarey.com/wordpress/2010/11/08/firesheep-error-solved/#comments</comments>
		<pubDate>Tue, 09 Nov 2010 03:07:58 +0000</pubDate>
		<dc:creator>Chris Carey</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://chriscarey.com/wordpress/?p=710</guid>
		<description><![CDATA[When using Firesheep on MacOSX you get: &#8220;Couldn&#8217;t get netmask for device en1: en1: no IPv4 address assigned.&#8221; Open up terminal and type &#8220;ifconfig&#8221; to see if your ethernet cart is indeed on en1. My Mac Air has the wireless card as en0, not en1. Go to the url &#8220;about:config&#8221; in Firefox. This opens up [...]]]></description>
			<content:encoded><![CDATA[<p>When using Firesheep on MacOSX you get:</p>
<p>&#8220;Couldn&#8217;t get netmask for device en1: en1: no IPv4 address assigned.&#8221;</p>
<p>Open up terminal and type &#8220;ifconfig&#8221; to see if your ethernet cart is indeed on en1. My Mac Air has the wireless card as en0, not en1.</p>
<p>Go to the url &#8220;about:config&#8221; in Firefox. This opens up extra configuration options for Firefox. Search for &#8216;firesheep&#8217; and there will be an option to change the Firesheep interface. </p>
]]></content:encoded>
			<wfw:commentRss>http://chriscarey.com/wordpress/2010/11/08/firesheep-error-solved/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Super Mario Bros Blocks</title>
		<link>http://chriscarey.com/wordpress/2010/09/27/super-mario-bros-blocks/</link>
		<comments>http://chriscarey.com/wordpress/2010/09/27/super-mario-bros-blocks/#comments</comments>
		<pubDate>Mon, 27 Sep 2010 17:09:51 +0000</pubDate>
		<dc:creator>Chris Carey</dc:creator>
				<category><![CDATA[Art]]></category>

		<guid isPermaLink="false">http://chriscarey.com/wordpress/?p=687</guid>
		<description><![CDATA[As a distraction from all the Calculus homework I had to do this weekend, here is my weekend art project Super Mario Bros Blocks The blocks were purchased from Barclay Woods http://www.barclaywoods.com/craft_parts.htm#cubes The people at Barclay are great and I would definitely do business with them again.]]></description>
			<content:encoded><![CDATA[<p>As a distraction from all the Calculus homework I had to do this weekend, here is my weekend art project Super Mario Bros Blocks</p>
<p>The blocks were purchased from Barclay Woods <a href="http://www.barclaywoods.com/craft_parts.htm#cubes">http://www.barclaywoods.com/craft_parts.htm#cubes</a></p>
<p>The people at Barclay are great and I would definitely do business with them again.</p>

<a href='http://chriscarey.com/wordpress/2010/09/27/super-mario-bros-blocks/back-camera/' title='Back Camera'><img width="150" height="150" src="http://chriscarey.com/wordpress/wp-content/uploads/2010/09/IMG_0166-150x150.jpg" class="attachment-thumbnail" alt="Back Camera" title="Back Camera" /></a>
<a href='http://chriscarey.com/wordpress/2010/09/27/super-mario-bros-blocks/img_0167/' title='IMG_0167'><img width="150" height="150" src="http://chriscarey.com/wordpress/wp-content/uploads/2010/09/IMG_0167-150x150.jpg" class="attachment-thumbnail" alt="IMG_0167" title="IMG_0167" /></a>
<a href='http://chriscarey.com/wordpress/2010/09/27/super-mario-bros-blocks/img_0168/' title='IMG_0168'><img width="150" height="150" src="http://chriscarey.com/wordpress/wp-content/uploads/2010/09/IMG_0168-150x150.jpg" class="attachment-thumbnail" alt="IMG_0168" title="IMG_0168" /></a>
<a href='http://chriscarey.com/wordpress/2010/09/27/super-mario-bros-blocks/back-camera-2/' title='Back Camera'><img width="150" height="150" src="http://chriscarey.com/wordpress/wp-content/uploads/2010/09/IMG_0169-150x150.jpg" class="attachment-thumbnail" alt="Back Camera" title="Back Camera" /></a>
<a href='http://chriscarey.com/wordpress/2010/09/27/super-mario-bros-blocks/back-camera-3/' title='Back Camera'><img width="150" height="150" src="http://chriscarey.com/wordpress/wp-content/uploads/2010/09/IMG_0170-150x150.jpg" class="attachment-thumbnail" alt="Back Camera" title="Back Camera" /></a>
<a href='http://chriscarey.com/wordpress/2010/09/27/super-mario-bros-blocks/back-camera-4/' title='Back Camera'><img width="150" height="150" src="http://chriscarey.com/wordpress/wp-content/uploads/2010/09/IMG_0171-150x150.jpg" class="attachment-thumbnail" alt="Back Camera" title="Back Camera" /></a>
<a href='http://chriscarey.com/wordpress/2010/09/27/super-mario-bros-blocks/back-camera-5/' title='Back Camera'><img width="150" height="150" src="http://chriscarey.com/wordpress/wp-content/uploads/2010/09/IMG_0172-150x150.jpg" class="attachment-thumbnail" alt="Back Camera" title="Back Camera" /></a>
<a href='http://chriscarey.com/wordpress/2010/09/27/super-mario-bros-blocks/back-camera-6/' title='Back Camera'><img width="150" height="150" src="http://chriscarey.com/wordpress/wp-content/uploads/2010/09/IMG_0173-150x150.jpg" class="attachment-thumbnail" alt="Back Camera" title="Back Camera" /></a>
<a href='http://chriscarey.com/wordpress/2010/09/27/super-mario-bros-blocks/back-camera-7/' title='Back Camera'><img width="150" height="150" src="http://chriscarey.com/wordpress/wp-content/uploads/2010/09/IMG_0174-150x150.jpg" class="attachment-thumbnail" alt="Back Camera" title="Back Camera" /></a>
<a href='http://chriscarey.com/wordpress/2010/09/27/super-mario-bros-blocks/back-camera-8/' title='Back Camera'><img width="150" height="150" src="http://chriscarey.com/wordpress/wp-content/uploads/2010/09/IMG_0175-e1285608016517-150x150.jpg" class="attachment-thumbnail" alt="Back Camera" title="Back Camera" /></a>
<a href='http://chriscarey.com/wordpress/2010/09/27/super-mario-bros-blocks/back-camera-9/' title='Back Camera'><img width="150" height="150" src="http://chriscarey.com/wordpress/wp-content/uploads/2010/09/IMG_0176-e1285607922916-150x150.jpg" class="attachment-thumbnail" alt="Back Camera" title="Back Camera" /></a>
<a href='http://chriscarey.com/wordpress/2010/09/27/super-mario-bros-blocks/back-camera-10/' title='Back Camera'><img width="150" height="150" src="http://chriscarey.com/wordpress/wp-content/uploads/2010/09/IMG_0177-e1285607886894-150x150.jpg" class="attachment-thumbnail" alt="Back Camera" title="Back Camera" /></a>
<a href='http://chriscarey.com/wordpress/2010/09/27/super-mario-bros-blocks/back-camera-11/' title='Back Camera'><img width="150" height="150" src="http://chriscarey.com/wordpress/wp-content/uploads/2010/09/IMG_0178-e1285607868129-150x150.jpg" class="attachment-thumbnail" alt="Back Camera" title="Back Camera" /></a>
<a href='http://chriscarey.com/wordpress/2010/09/27/super-mario-bros-blocks/back-camera-12/' title='Back Camera'><img width="150" height="150" src="http://chriscarey.com/wordpress/wp-content/uploads/2010/09/IMG_0179-e1285607839451-150x150.jpg" class="attachment-thumbnail" alt="Back Camera" title="Back Camera" /></a>
<a href='http://chriscarey.com/wordpress/2010/09/27/super-mario-bros-blocks/back-camera-13/' title='Back Camera'><img width="150" height="150" src="http://chriscarey.com/wordpress/wp-content/uploads/2010/09/IMG_0180-150x150.jpg" class="attachment-thumbnail" alt="Back Camera" title="Back Camera" /></a>
<a href='http://chriscarey.com/wordpress/2010/09/27/super-mario-bros-blocks/img_0236/' title='IMG_0236'><img width="150" height="150" src="http://chriscarey.com/wordpress/wp-content/uploads/2010/09/IMG_0236-150x150.jpg" class="attachment-thumbnail" alt="IMG_0236" title="IMG_0236" /></a>

]]></content:encoded>
			<wfw:commentRss>http://chriscarey.com/wordpress/2010/09/27/super-mario-bros-blocks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

