<?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 &#187; Uncategorized</title>
	<atom:link href="http://chriscarey.com/wordpress/category/uncategorized/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>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>SLCC Barbering and Cosmetology School</title>
		<link>http://chriscarey.com/wordpress/2010/03/13/slcc-barbering-and-cosmetology-school/</link>
		<comments>http://chriscarey.com/wordpress/2010/03/13/slcc-barbering-and-cosmetology-school/#comments</comments>
		<pubDate>Sat, 13 Mar 2010 07:24:04 +0000</pubDate>
		<dc:creator>Chris Carey</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://chriscarey.com/wordpress/?p=516</guid>
		<description><![CDATA[Funny Video]]></description>
			<content:encoded><![CDATA[<p><object width="560" height="340"><param name="movie" value="http://www.youtube.com/v/9XLshEBvYdw&#038;hl=en_US&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/9XLshEBvYdw&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="340"></embed></object><br />
Funny Video</p>
]]></content:encoded>
			<wfw:commentRss>http://chriscarey.com/wordpress/2010/03/13/slcc-barbering-and-cosmetology-school/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SSH KeepAlive</title>
		<link>http://chriscarey.com/wordpress/2009/06/03/ssh-keepalive/</link>
		<comments>http://chriscarey.com/wordpress/2009/06/03/ssh-keepalive/#comments</comments>
		<pubDate>Thu, 04 Jun 2009 00:18:09 +0000</pubDate>
		<dc:creator>Chris Carey</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://chriscarey.com/blog/?p=390</guid>
		<description><![CDATA[By default, your ssh daemon probably will kick you out after a period of no activity. I like to set the following in sshd_config: TCPKeepAlive yes ClientAliveInterval 60]]></description>
			<content:encoded><![CDATA[<p>By default, your ssh daemon probably will kick you out after a period of no activity. I like to set the following in sshd_config:</p>
<p>TCPKeepAlive yes<br />
ClientAliveInterval 60</p>
]]></content:encoded>
			<wfw:commentRss>http://chriscarey.com/wordpress/2009/06/03/ssh-keepalive/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

