<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for Chris Carey</title>
	<atom:link href="http://chriscarey.com/wordpress/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://chriscarey.com/wordpress</link>
	<description>Software Developer San Francisco</description>
	<lastBuildDate>Tue, 03 Jan 2012 18:55:23 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on How to modify iPhone Calendar colors on Jailbroken iPhone by Chris Carey</title>
		<link>http://chriscarey.com/wordpress/2009/02/10/how-to-modify-iphone-calendar-colors-with-sqlite3/comment-page-1/#comment-1429</link>
		<dc:creator>Chris Carey</dc:creator>
		<pubDate>Tue, 03 Jan 2012 18:55:23 +0000</pubDate>
		<guid isPermaLink="false">http://chriscarey.com/blog/?p=353#comment-1429</guid>
		<description>Yeah I noticed that just the other day but haven&#039;t had time to blog it yet. Thanks for that info rockstarTS!</description>
		<content:encoded><![CDATA[<p>Yeah I noticed that just the other day but haven&#8217;t had time to blog it yet. Thanks for that info rockstarTS!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to modify iPhone Calendar colors on Jailbroken iPhone by Tim</title>
		<link>http://chriscarey.com/wordpress/2009/02/10/how-to-modify-iphone-calendar-colors-with-sqlite3/comment-page-1/#comment-1428</link>
		<dc:creator>Tim</dc:creator>
		<pubDate>Tue, 03 Jan 2012 18:24:37 +0000</pubDate>
		<guid isPermaLink="false">http://chriscarey.com/blog/?p=353#comment-1428</guid>
		<description>With the update to ios 5 the schema has changed slightly for the Calendar.sqlitedb file.  Instead of using RGB colors (color_r, color_g, color_b), Apple has changed it to use a single hex color called &quot;color&quot;. :)

So an example update query would look something like this:

update Calendar set color=&#039;#FF0000&#039; where title = ‘your_calendar_name_here’;

The above hex color (#FF0000) is a shade of red.  To find your favorite color in hex just search in Google for &quot;hex colors&quot;.  There are tons of sites that have hex color charts.</description>
		<content:encoded><![CDATA[<p>With the update to ios 5 the schema has changed slightly for the Calendar.sqlitedb file.  Instead of using RGB colors (color_r, color_g, color_b), Apple has changed it to use a single hex color called &#8220;color&#8221;. <img src='http://chriscarey.com/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>So an example update query would look something like this:</p>
<p>update Calendar set color=&#8217;#FF0000&#8242; where title = ‘your_calendar_name_here’;</p>
<p>The above hex color (#FF0000) is a shade of red.  To find your favorite color in hex just search in Google for &#8220;hex colors&#8221;.  There are tons of sites that have hex color charts.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Running Debian on AppleTV by Chris Carey</title>
		<link>http://chriscarey.com/wordpress/2010/08/22/running-debian-on-appletv-aug-2010/comment-page-1/#comment-1416</link>
		<dc:creator>Chris Carey</dc:creator>
		<pubDate>Mon, 12 Dec 2011 23:12:32 +0000</pubDate>
		<guid isPermaLink="false">http://chriscarey.com/wordpress/?p=599#comment-1416</guid>
		<description>Not that I&#039;m aware of.. yet. It&#039;s like an iPad without the screen.</description>
		<content:encoded><![CDATA[<p>Not that I&#8217;m aware of.. yet. It&#8217;s like an iPad without the screen.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Running Debian on AppleTV by Ipguy</title>
		<link>http://chriscarey.com/wordpress/2010/08/22/running-debian-on-appletv-aug-2010/comment-page-1/#comment-1415</link>
		<dc:creator>Ipguy</dc:creator>
		<pubDate>Sat, 10 Dec 2011 09:44:07 +0000</pubDate>
		<guid isPermaLink="false">http://chriscarey.com/wordpress/?p=599#comment-1415</guid>
		<description>Is it possible to install Debian or Ubuntu on the Applt TV 2?</description>
		<content:encoded><![CDATA[<p>Is it possible to install Debian or Ubuntu on the Applt TV 2?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Running Debian on AppleTV by cobra2</title>
		<link>http://chriscarey.com/wordpress/2010/08/22/running-debian-on-appletv-aug-2010/comment-page-1/#comment-1402</link>
		<dc:creator>cobra2</dc:creator>
		<pubDate>Thu, 03 Nov 2011 02:57:10 +0000</pubDate>
		<guid isPermaLink="false">http://chriscarey.com/wordpress/?p=599#comment-1402</guid>
		<description>To get around the HDA/SDA issue, you need to install the OS to an external HD and force the appletv to boot from that. I&#039;ve got 5x 1TB external drives hooked up via a 7port powered USB hub. I had to dd the OS install to the beginning of each EXTERNAL drive but NOT the internal drive. I then added all the seperate partitions to /etc/fstab via UUID. This allowed me to not have to worry about which drive booted up first. 
I created a script to run on a reboot that runs dd to copy the root partition across all the external drives. 

I use the atv as a local webserver for testing, NFS shares, mpd server, and seedbox for my torrents. I don&#039;t have X installed or mess with any of that gui crap. 
It runs Slackware-current.</description>
		<content:encoded><![CDATA[<p>To get around the HDA/SDA issue, you need to install the OS to an external HD and force the appletv to boot from that. I&#8217;ve got 5x 1TB external drives hooked up via a 7port powered USB hub. I had to dd the OS install to the beginning of each EXTERNAL drive but NOT the internal drive. I then added all the seperate partitions to /etc/fstab via UUID. This allowed me to not have to worry about which drive booted up first.<br />
I created a script to run on a reboot that runs dd to copy the root partition across all the external drives. </p>
<p>I use the atv as a local webserver for testing, NFS shares, mpd server, and seedbox for my torrents. I don&#8217;t have X installed or mess with any of that gui crap.<br />
It runs Slackware-current.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to modify iPhone Calendar colors on Jailbroken iPhone by Damien</title>
		<link>http://chriscarey.com/wordpress/2009/02/10/how-to-modify-iphone-calendar-colors-with-sqlite3/comment-page-1/#comment-1390</link>
		<dc:creator>Damien</dc:creator>
		<pubDate>Mon, 08 Aug 2011 22:58:54 +0000</pubDate>
		<guid isPermaLink="false">http://chriscarey.com/blog/?p=353#comment-1390</guid>
		<description>Thanks for your tutorial. I currently have several calendars, including some synchronised with Gmail. All the Gmail calendars have the grey colour.

So I have managed to install openssh, sqlite3, connect to my iphone and do the sql queries to change the colours manually.

However, it looks like everytime calendar synchronises with Gmail, the gmail calendars&#039; colour reverts back to the original grey! Does anyone know how I can prevent this?</description>
		<content:encoded><![CDATA[<p>Thanks for your tutorial. I currently have several calendars, including some synchronised with Gmail. All the Gmail calendars have the grey colour.</p>
<p>So I have managed to install openssh, sqlite3, connect to my iphone and do the sql queries to change the colours manually.</p>
<p>However, it looks like everytime calendar synchronises with Gmail, the gmail calendars&#8217; colour reverts back to the original grey! Does anyone know how I can prevent this?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Firesheep netmask error solved by Tony Burkhart</title>
		<link>http://chriscarey.com/wordpress/2010/11/08/firesheep-error-solved/comment-page-1/#comment-1389</link>
		<dc:creator>Tony Burkhart</dc:creator>
		<pubDate>Mon, 08 Aug 2011 22:35:17 +0000</pubDate>
		<guid isPermaLink="false">http://chriscarey.com/wordpress/?p=710#comment-1389</guid>
		<description>Worked perfect. Thank you :)</description>
		<content:encoded><![CDATA[<p>Worked perfect. Thank you <img src='http://chriscarey.com/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Tricking out your AppleTV running Linux by dito</title>
		<link>http://chriscarey.com/wordpress/2010/09/11/tricking-out-your-appletv-running-linux/comment-page-1/#comment-1388</link>
		<dc:creator>dito</dc:creator>
		<pubDate>Mon, 11 Jul 2011 02:20:21 +0000</pubDate>
		<guid isPermaLink="false">http://chriscarey.com/wordpress/?p=615#comment-1388</guid>
		<description>that&#039;s great, I am wondering if this can work as a desktop, can I use firefox or chrome and browse silverlight sites, would that be slow or doable?</description>
		<content:encoded><![CDATA[<p>that&#8217;s great, I am wondering if this can work as a desktop, can I use firefox or chrome and browse silverlight sites, would that be slow or doable?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Show or Hide hidden files in Finder OS X by Mark Matthews</title>
		<link>http://chriscarey.com/wordpress/2011/05/10/show-or-hide-hidden-files-in-finder-os-x/comment-page-1/#comment-1387</link>
		<dc:creator>Mark Matthews</dc:creator>
		<pubDate>Thu, 23 Jun 2011 19:01:43 +0000</pubDate>
		<guid isPermaLink="false">http://chriscarey.com/wordpress/?p=790#comment-1387</guid>
		<description>Just came across this after all my files magically disappeared for some reason. Thank you!</description>
		<content:encoded><![CDATA[<p>Just came across this after all my files magically disappeared for some reason. Thank you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on MacBook Air 2010 Faces of Death by Pete Sisti</title>
		<link>http://chriscarey.com/wordpress/2011/05/04/macbook-air-2010-faces-of-death/comment-page-1/#comment-1386</link>
		<dc:creator>Pete Sisti</dc:creator>
		<pubDate>Thu, 09 Jun 2011 14:20:12 +0000</pubDate>
		<guid isPermaLink="false">http://chriscarey.com/wordpress/?p=762#comment-1386</guid>
		<description>Same same, frequent.  Took in to Apple, after two days was told could not replicate.  Of course, they would have to use the Air for two weeks if that&#039;s the way they are going to diagnose it..
I have not had the issue yet without the monitor plugged in...</description>
		<content:encoded><![CDATA[<p>Same same, frequent.  Took in to Apple, after two days was told could not replicate.  Of course, they would have to use the Air for two weeks if that&#8217;s the way they are going to diagnose it..<br />
I have not had the issue yet without the monitor plugged in&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>

