<?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, 04 Mar 2012 02:53:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Find out which program is using which port on OS X</title>
		<link>http://chriscarey.com/wordpress/2012/03/03/find-out-which-program-is-using-which-port-on-os-x/</link>
		<comments>http://chriscarey.com/wordpress/2012/03/03/find-out-which-program-is-using-which-port-on-os-x/#comments</comments>
		<pubDate>Sun, 04 Mar 2012 02:53:51 +0000</pubDate>
		<dc:creator>Chris Carey</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://chriscarey.com/wordpress/?p=855</guid>
		<description><![CDATA[lsof -i &#124; grep LISTEN or lsof -i -P &#124; grep]]></description>
			<content:encoded><![CDATA[<p><code><br />
lsof -i  | grep LISTEN<br />
</code><br />
or<br />
<code><br />
lsof -i -P | grep
<portnumber>
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://chriscarey.com/wordpress/2012/03/03/find-out-which-program-is-using-which-port-on-os-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OS X Mountain Lion Background Image</title>
		<link>http://chriscarey.com/wordpress/2012/02/16/os-x-mountain-lion-background-image/</link>
		<comments>http://chriscarey.com/wordpress/2012/02/16/os-x-mountain-lion-background-image/#comments</comments>
		<pubDate>Fri, 17 Feb 2012 01:50:33 +0000</pubDate>
		<dc:creator>Chris Carey</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://chriscarey.com/wordpress/?p=844</guid>
		<description><![CDATA[Excited for OS X Mountain Lion http://www.apple.com/macosx/mountain-lion/ Here is the full size background image from the upcoming OS:]]></description>
			<content:encoded><![CDATA[<p>Excited for OS X Mountain Lion <a href="http://www.apple.com/macosx/mountain-lion/">http://www.apple.com/macosx/mountain-lion/</a></p>
<p>Here is the full size background image from the upcoming OS:</p>
<p><a href="http://9to5mac.files.wordpress.com/2012/02/galaxy.jpg"><img src="http://9to5mac.files.wordpress.com/2012/02/galaxy.jpg" alt="OS X Mountain Lion Background" style="width:550px" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://chriscarey.com/wordpress/2012/02/16/os-x-mountain-lion-background-image/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using PHP to create a MySQL datetime</title>
		<link>http://chriscarey.com/wordpress/2012/02/08/using-php-to-create-a-mysql-datetime/</link>
		<comments>http://chriscarey.com/wordpress/2012/02/08/using-php-to-create-a-mysql-datetime/#comments</comments>
		<pubDate>Wed, 08 Feb 2012 21:02:51 +0000</pubDate>
		<dc:creator>Chris Carey</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[PHP MySQL]]></category>

		<guid isPermaLink="false">http://chriscarey.com/wordpress/?p=837</guid>
		<description><![CDATA[For reference $datetime = date('Y-m-d H:i:s');]]></description>
			<content:encoded><![CDATA[<p>For reference<br />
<code><br />
$datetime = date('Y-m-d H:i:s');<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://chriscarey.com/wordpress/2012/02/08/using-php-to-create-a-mysql-datetime/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<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 (you must have Cydia in &#8220;Developer&#8221; mode so it lists the command-line utilities) - ssh to your iPhone (as user mobile) - Run sqlite3 and open [...]]]></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 (you must have Cydia in &#8220;Developer&#8221; mode so it lists the command-line utilities)</p>
<p>- ssh to your iPhone (as user mobile)</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>8</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>
	</channel>
</rss>

