<?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 on: Bringing Google Calendar to My Desktop</title>
	<atom:link href="http://www.devangoldstein.com/87/bringing-google-calendar-to-my-desktop/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.devangoldstein.com/87/bringing-google-calendar-to-my-desktop/</link>
	<description>It&#039;s Devan Goldstein</description>
	<lastBuildDate>Wed, 01 Feb 2012 14:05:32 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>By: From the Ground Up &#187; Geektool, v2</title>
		<link>http://www.devangoldstein.com/87/bringing-google-calendar-to-my-desktop/comment-page-1/#comment-12038</link>
		<dc:creator>From the Ground Up &#187; Geektool, v2</dc:creator>
		<pubDate>Sat, 21 Jan 2012 17:10:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.devangoldstein.com/87/bringing-google-calendar-to-my-desktop/#comment-12038</guid>
		<description>[...] desktop. If you want to read more about how the script handles it, head over the author&#8217;s post for all the [...]</description>
		<content:encoded><![CDATA[<p>[...] desktop. If you want to read more about how the script handles it, head over the author&#8217;s post for all the [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: devan</title>
		<link>http://www.devangoldstein.com/87/bringing-google-calendar-to-my-desktop/comment-page-1/#comment-8758</link>
		<dc:creator>devan</dc:creator>
		<pubDate>Thu, 03 Nov 2011 13:51:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.devangoldstein.com/87/bringing-google-calendar-to-my-desktop/#comment-8758</guid>
		<description>Hi again, knaaptime,

I think there are three things going on here, none of which is your fault in the least. The first is that your event titles are longer than mine, so that makes things look a little less tidy. The second, which you point out, is that for some reason your School calendar has that funny name. Wish I could help you with that one, but I&#039;m clueless. (One option, as I think of it, would be to search for that long string in &lt;code&gt;$agenda&lt;/code&gt;, just before the creation of &lt;code&gt;@agenda_sorted&lt;/code&gt;, and replace it with &quot;School.&quot; I think &lt;code&gt;sed&lt;/code&gt; is the command you&#039;d want to look into for that.)

The third problem, which I can offer some help with, is that at some point, without thinking to update the blog post, I removed the &quot;Today&quot; and &quot;Tomorrow&quot; syntax for non-all-day events (and the &quot;Through ___&quot; syntax for all-day events) with just a single asterisk for events (of both types) happening on the current day. I found the asterisk cleaner and just as useful, but to go back to the version above wouldn&#039;t be too hard. Steps:

&lt;ol&gt;&lt;li&gt;On (or near) line 88 (line numbers will vary depending on how many calendar URLs you have), replace &lt;code&gt;$agenda .= &quot;*&quot;;&lt;/code&gt; with &lt;code&gt;$agenda .= &quot;Today: &quot;;&lt;/code&gt;. This will restore the original labeling behavior for non-all-day events for the current day.&lt;/li&gt;
&lt;li&gt;Around line 89 is a closing curly brace (&lt;code&gt;}&lt;/code&gt;). Right after &lt;em&gt;that&lt;/em&gt;, paste the following:
&lt;code&gt;
if ((($bday == ($tday + 1)) &amp;&amp; ($bmonth == $tmonth)) &#124;&#124; (($bday == 1) &amp;&amp; ($bmonth == ($tmonth + 1 ))))
	{
	$agenda .= &quot;Tomorrow: &quot;;
}
&lt;/code&gt;
This will bring back the &quot;Tomorrow: &quot; labeling—and should work even when &quot;tomorrow&quot; is the first day of the next month—which my original version never did, I think.&lt;/li&gt;
&lt;li&gt;To remove the numerical date from these entries (since it&#039;s now redundant), first delete line 95 (&lt;code&gt;$agenda .= $bmonth;&lt;/code&gt;). Next, from line 96, remove &lt;code&gt;/$bday, &lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Next, the &quot;Through: &quot; labeling for all-day events. On line 123, replace &lt;code&gt;$agenda .= &quot;*&quot;;&lt;/code&gt; with &lt;code&gt;$agenda .= &quot;Through $eday: &quot;&lt;/code&gt;.&lt;/li&gt; 
&lt;li&gt;To remove the numerical dates from &lt;em&gt;these&lt;/em&gt; entries, delete line 125 (&lt;code&gt;$agenda .= &quot;$bmonth/$bday-$emonth/$eday: &quot;;&lt;/code&gt;).&lt;/li&gt;
&lt;/ol&gt;

Let me know how these changes work for you! I have tested quickly on my end but am not good enough to know how things might translate from one machine to another.</description>
		<content:encoded><![CDATA[<p>Hi again, knaaptime,</p>
<p>I think there are three things going on here, none of which is your fault in the least. The first is that your event titles are longer than mine, so that makes things look a little less tidy. The second, which you point out, is that for some reason your School calendar has that funny name. Wish I could help you with that one, but I&#8217;m clueless. (One option, as I think of it, would be to search for that long string in <code>$agenda</code>, just before the creation of <code>@agenda_sorted</code>, and replace it with &#8220;School.&#8221; I think <code>sed</code> is the command you&#8217;d want to look into for that.)</p>
<p>The third problem, which I can offer some help with, is that at some point, without thinking to update the blog post, I removed the &#8220;Today&#8221; and &#8220;Tomorrow&#8221; syntax for non-all-day events (and the &#8220;Through ___&#8221; syntax for all-day events) with just a single asterisk for events (of both types) happening on the current day. I found the asterisk cleaner and just as useful, but to go back to the version above wouldn&#8217;t be too hard. Steps:</p>
<ol>
<li>On (or near) line 88 (line numbers will vary depending on how many calendar URLs you have), replace <code>$agenda .= "*";</code> with <code>$agenda .= "Today: ";</code>. This will restore the original labeling behavior for non-all-day events for the current day.</li>
<li>Around line 89 is a closing curly brace (<code>}</code>). Right after <em>that</em>, paste the following:<br />
<code><br />
if ((($bday == ($tday + 1)) &#038;&#038; ($bmonth == $tmonth)) || (($bday == 1) &#038;&#038; ($bmonth == ($tmonth + 1 ))))<br />
	{<br />
	$agenda .= "Tomorrow: ";<br />
}<br />
</code><br />
This will bring back the &#8220;Tomorrow: &#8221; labeling—and should work even when &#8220;tomorrow&#8221; is the first day of the next month—which my original version never did, I think.</li>
<li>To remove the numerical date from these entries (since it&#8217;s now redundant), first delete line 95 (<code>$agenda .= $bmonth;</code>). Next, from line 96, remove <code>/$bday, </code>.</li>
<li>Next, the &#8220;Through: &#8221; labeling for all-day events. On line 123, replace <code>$agenda .= "*";</code> with <code>$agenda .= "Through $eday: "</code>.</li>
<li>To remove the numerical dates from <em>these</em> entries, delete line 125 (<code>$agenda .= "$bmonth/$bday-$emonth/$eday: ";</code>).</li>
</ol>
<p>Let me know how these changes work for you! I have tested quickly on my end but am not good enough to know how things might translate from one machine to another.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: devan</title>
		<link>http://www.devangoldstein.com/87/bringing-google-calendar-to-my-desktop/comment-page-1/#comment-8750</link>
		<dc:creator>devan</dc:creator>
		<pubDate>Wed, 02 Nov 2011 21:25:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.devangoldstein.com/87/bringing-google-calendar-to-my-desktop/#comment-8750</guid>
		<description>Hey Knaaptime—Thanks for writing, and for the kind words on the script! I&#039;m headed out for the evening but will check this out as soon as I can, probably sometime tomorrow. If you figure anything out in the meantime, do let me know.
—D.</description>
		<content:encoded><![CDATA[<p>Hey Knaaptime—Thanks for writing, and for the kind words on the script! I&#8217;m headed out for the evening but will check this out as soon as I can, probably sometime tomorrow. If you figure anything out in the meantime, do let me know.<br />
—D.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: knaaptime</title>
		<link>http://www.devangoldstein.com/87/bringing-google-calendar-to-my-desktop/comment-page-1/#comment-8749</link>
		<dc:creator>knaaptime</dc:creator>
		<pubDate>Wed, 02 Nov 2011 21:21:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.devangoldstein.com/87/bringing-google-calendar-to-my-desktop/#comment-8749</guid>
		<description>Hi Devan,

thanks for your excellent work on this script. I&#039;ve spent a few hours today getting this to work (never read the first few posts and took me forever to realize that I had to change permissions).

So now I have the script running and geektool puts it on my desktop but it doesn&#039;t show up in your nice formatting like this: 

Today, 12:30-14:00: Meet with Andrés
Tomorrow, 08:00-09:00: Call with client
Tomorrow, 19:00-20:00: Dinner at Casbah
Through 09/14: Off from work

instead i get all the events on my calendars listed without any aggregation by date. something like this (terminal output): 

*11/02, 17:30-19:30: Harper
   Personal
11/03, 13:30-14:30: Developer Interview: David O&#039;Bryan, Charles P. Johnson and Associates
   Work
11/03, 20:00-22:30: Growth Management &amp; Environmental Planning (at 3219 ASY)
   99vdagsv9mhsd93aopgpqpe2t4@group.calendar.google.com
11/04, 14:00-15:00: Advocate Interview: J. Carroll Holzer, Holzer &amp; Lee (at Eli)
   Work
11/07, 17:30-19:45: Harper
   Personal
11/08, 21:00-23:30: Function &amp; Structure of Metro Areas (at 1101 ARC)
   99vdagsv9mhsd93aopgpqpe2t4@group.calendar.google.com
11/09, 17:30-19:30: Harper
   Personal
11/10, 21:00-23:30: Growth Management &amp; Environmental Planning (at 3219 ASY)
   99vdagsv9mhsd93aopgpqpe2t4@group.calendar.google.com
11/14, 17:30-19:45: Harper
   Personal
11/15, 21:00-23:30: Function &amp; Structure of Metro Areas (at 1101 ARC)
   99vdagsv9mhsd93aopgpqpe2t4@group.calendar.google.com
11/16, 17:30-19:30: Harper
   Personal
11/17, 21:00-23:30: Growth Management &amp; Environmental Planning (at 3219 ASY)
   99vdagsv9mhsd93aopgpqpe2t4@group.calendar.google.com
11/21, 17:30-19:45: Harper
   Personal
11/22, 21:00-23:30: Function &amp; Structure of Metro Areas (at 1101 ARC)
   99vdagsv9mhsd93aopgpqpe2t4@group.calendar.google.com
11/23, 17:30-19:30: Harper
   Personal
11/24, 21:00-23:30: Growth Management &amp; Environmental Planning (at 3219 ASY)
   99vdagsv9mhsd93aopgpqpe2t4@group.calendar.google.com
11/28, 17:30-19:45: Harper
   Personal
11/29, 21:00-23:30: Function &amp; Structure of Metro Areas (at 1101 ARC)
   99vdagsv9mhsd93aopgpqpe2t4@group.calendar.google.com
11/30, 17:30-19:30: Harper
   Personal
12/01, 21:00-23:30: Growth Management &amp; Environmental Planning (at 3219 ASY)
   99vdagsv9mhsd93aopgpqpe2t4@group.calendar.google.com
12/05, 17:30-19:45: Harper
   Personal
12/06, 21:00-23:30: Function &amp; Structure of Metro Areas (at 1101 ARC)
   99vdagsv9mhsd93aopgpqpe2t4@group.calendar.google.com
12/07, 17:30-19:30: Harper
   Personal
12/08, 21:00-23:30: Growth Management &amp; Environmental Planning (at 3219 ASY)
   99vdagsv9mhsd93aopgpqpe2t4@group.calendar.google.com
12/12, 17:30-19:45: Harper
   Personal
12/13, 21:00-23:30: Function &amp; Structure of Metro Areas (at 1101 ARC)
   99vdagsv9mhsd93aopgpqpe2t4@group.calendar.google.com
12/14, 17:30-19:30: Harper
   Personal
12/15, 21:00-23:30: Growth Management &amp; Environmental Planning (at 3219 ASY)
   99vdagsv9mhsd93aopgpqpe2t4@group.calendar.google.com
12/19, 17:30-19:45: Harper
   Personal
12/20, 21:00-23:30: Function &amp; Structure of Metro Areas (at 1101 ARC)
   99vdagsv9mhsd93aopgpqpe2t4@group.calendar.google.com
12/21, 17:30-19:30: Harper
   Personal
12/22, 21:00-23:30: Growth Management &amp; Environmental Planning (at 3219 ASY)
   99vdagsv9mhsd93aopgpqpe2t4@group.calendar.google.com
12/27, 21:00-23:30: Function &amp; Structure of Metro Areas (at 1101 ARC)
   99vdagsv9mhsd93aopgpqpe2t4@group.calendar.google.com
12/29, 21:00-23:30: Growth Management &amp; Environmental Planning (at 3219 ASY)
   99vdagsv9mhsd93aopgpqpe2t4@group.calendar.google.com
(I still dont know why my School calendar shows up as that random string rather than &#039;School&#039; but thats besides the point--its like that in google cal too)

do you have any idea whats going on? the only modifications I&#039;ve made to the script are to add my own URLs and swap out your name for mine.</description>
		<content:encoded><![CDATA[<p>Hi Devan,</p>
<p>thanks for your excellent work on this script. I&#8217;ve spent a few hours today getting this to work (never read the first few posts and took me forever to realize that I had to change permissions).</p>
<p>So now I have the script running and geektool puts it on my desktop but it doesn&#8217;t show up in your nice formatting like this: </p>
<p>Today, 12:30-14:00: Meet with Andrés<br />
Tomorrow, 08:00-09:00: Call with client<br />
Tomorrow, 19:00-20:00: Dinner at Casbah<br />
Through 09/14: Off from work</p>
<p>instead i get all the events on my calendars listed without any aggregation by date. something like this (terminal output): </p>
<p>*11/02, 17:30-19:30: Harper<br />
   Personal<br />
11/03, 13:30-14:30: Developer Interview: David O&#8217;Bryan, Charles P. Johnson and Associates<br />
   Work<br />
11/03, 20:00-22:30: Growth Management &amp; Environmental Planning (at 3219 ASY)<br />
   <a href="mailto:99vdagsv9mhsd93aopgpqpe2t4@group.calendar.google.com">99vdagsv9mhsd93aopgpqpe2t4@group.calendar.google.com</a><br />
11/04, 14:00-15:00: Advocate Interview: J. Carroll Holzer, Holzer &amp; Lee (at Eli)<br />
   Work<br />
11/07, 17:30-19:45: Harper<br />
   Personal<br />
11/08, 21:00-23:30: Function &amp; Structure of Metro Areas (at 1101 ARC)<br />
   <a href="mailto:99vdagsv9mhsd93aopgpqpe2t4@group.calendar.google.com">99vdagsv9mhsd93aopgpqpe2t4@group.calendar.google.com</a><br />
11/09, 17:30-19:30: Harper<br />
   Personal<br />
11/10, 21:00-23:30: Growth Management &amp; Environmental Planning (at 3219 ASY)<br />
   <a href="mailto:99vdagsv9mhsd93aopgpqpe2t4@group.calendar.google.com">99vdagsv9mhsd93aopgpqpe2t4@group.calendar.google.com</a><br />
11/14, 17:30-19:45: Harper<br />
   Personal<br />
11/15, 21:00-23:30: Function &amp; Structure of Metro Areas (at 1101 ARC)<br />
   <a href="mailto:99vdagsv9mhsd93aopgpqpe2t4@group.calendar.google.com">99vdagsv9mhsd93aopgpqpe2t4@group.calendar.google.com</a><br />
11/16, 17:30-19:30: Harper<br />
   Personal<br />
11/17, 21:00-23:30: Growth Management &amp; Environmental Planning (at 3219 ASY)<br />
   <a href="mailto:99vdagsv9mhsd93aopgpqpe2t4@group.calendar.google.com">99vdagsv9mhsd93aopgpqpe2t4@group.calendar.google.com</a><br />
11/21, 17:30-19:45: Harper<br />
   Personal<br />
11/22, 21:00-23:30: Function &amp; Structure of Metro Areas (at 1101 ARC)<br />
   <a href="mailto:99vdagsv9mhsd93aopgpqpe2t4@group.calendar.google.com">99vdagsv9mhsd93aopgpqpe2t4@group.calendar.google.com</a><br />
11/23, 17:30-19:30: Harper<br />
   Personal<br />
11/24, 21:00-23:30: Growth Management &amp; Environmental Planning (at 3219 ASY)<br />
   <a href="mailto:99vdagsv9mhsd93aopgpqpe2t4@group.calendar.google.com">99vdagsv9mhsd93aopgpqpe2t4@group.calendar.google.com</a><br />
11/28, 17:30-19:45: Harper<br />
   Personal<br />
11/29, 21:00-23:30: Function &amp; Structure of Metro Areas (at 1101 ARC)<br />
   <a href="mailto:99vdagsv9mhsd93aopgpqpe2t4@group.calendar.google.com">99vdagsv9mhsd93aopgpqpe2t4@group.calendar.google.com</a><br />
11/30, 17:30-19:30: Harper<br />
   Personal<br />
12/01, 21:00-23:30: Growth Management &amp; Environmental Planning (at 3219 ASY)<br />
   <a href="mailto:99vdagsv9mhsd93aopgpqpe2t4@group.calendar.google.com">99vdagsv9mhsd93aopgpqpe2t4@group.calendar.google.com</a><br />
12/05, 17:30-19:45: Harper<br />
   Personal<br />
12/06, 21:00-23:30: Function &amp; Structure of Metro Areas (at 1101 ARC)<br />
   <a href="mailto:99vdagsv9mhsd93aopgpqpe2t4@group.calendar.google.com">99vdagsv9mhsd93aopgpqpe2t4@group.calendar.google.com</a><br />
12/07, 17:30-19:30: Harper<br />
   Personal<br />
12/08, 21:00-23:30: Growth Management &amp; Environmental Planning (at 3219 ASY)<br />
   <a href="mailto:99vdagsv9mhsd93aopgpqpe2t4@group.calendar.google.com">99vdagsv9mhsd93aopgpqpe2t4@group.calendar.google.com</a><br />
12/12, 17:30-19:45: Harper<br />
   Personal<br />
12/13, 21:00-23:30: Function &amp; Structure of Metro Areas (at 1101 ARC)<br />
   <a href="mailto:99vdagsv9mhsd93aopgpqpe2t4@group.calendar.google.com">99vdagsv9mhsd93aopgpqpe2t4@group.calendar.google.com</a><br />
12/14, 17:30-19:30: Harper<br />
   Personal<br />
12/15, 21:00-23:30: Growth Management &amp; Environmental Planning (at 3219 ASY)<br />
   <a href="mailto:99vdagsv9mhsd93aopgpqpe2t4@group.calendar.google.com">99vdagsv9mhsd93aopgpqpe2t4@group.calendar.google.com</a><br />
12/19, 17:30-19:45: Harper<br />
   Personal<br />
12/20, 21:00-23:30: Function &amp; Structure of Metro Areas (at 1101 ARC)<br />
   <a href="mailto:99vdagsv9mhsd93aopgpqpe2t4@group.calendar.google.com">99vdagsv9mhsd93aopgpqpe2t4@group.calendar.google.com</a><br />
12/21, 17:30-19:30: Harper<br />
   Personal<br />
12/22, 21:00-23:30: Growth Management &amp; Environmental Planning (at 3219 ASY)<br />
   <a href="mailto:99vdagsv9mhsd93aopgpqpe2t4@group.calendar.google.com">99vdagsv9mhsd93aopgpqpe2t4@group.calendar.google.com</a><br />
12/27, 21:00-23:30: Function &amp; Structure of Metro Areas (at 1101 ARC)<br />
   <a href="mailto:99vdagsv9mhsd93aopgpqpe2t4@group.calendar.google.com">99vdagsv9mhsd93aopgpqpe2t4@group.calendar.google.com</a><br />
12/29, 21:00-23:30: Growth Management &amp; Environmental Planning (at 3219 ASY)<br />
   <a href="mailto:99vdagsv9mhsd93aopgpqpe2t4@group.calendar.google.com">99vdagsv9mhsd93aopgpqpe2t4@group.calendar.google.com</a><br />
(I still dont know why my School calendar shows up as that random string rather than &#8216;School&#8217; but thats besides the point&#8211;its like that in google cal too)</p>
<p>do you have any idea whats going on? the only modifications I&#8217;ve made to the script are to add my own URLs and swap out your name for mine.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: devan</title>
		<link>http://www.devangoldstein.com/87/bringing-google-calendar-to-my-desktop/comment-page-1/#comment-8317</link>
		<dc:creator>devan</dc:creator>
		<pubDate>Sun, 09 Oct 2011 07:02:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.devangoldstein.com/87/bringing-google-calendar-to-my-desktop/#comment-8317</guid>
		<description>Hi Kenny -- Thanks for letting me know! Great to hear this stuff is still proving useful to people.
Best,
Devan</description>
		<content:encoded><![CDATA[<p>Hi Kenny &#8212; Thanks for letting me know! Great to hear this stuff is still proving useful to people.<br />
Best,<br />
Devan</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kenny</title>
		<link>http://www.devangoldstein.com/87/bringing-google-calendar-to-my-desktop/comment-page-1/#comment-8316</link>
		<dc:creator>Kenny</dc:creator>
		<pubDate>Sun, 09 Oct 2011 06:54:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.devangoldstein.com/87/bringing-google-calendar-to-my-desktop/#comment-8316</guid>
		<description>I just want you to know that I&#039;m new to Geektools and the Mac, but I was able to use your instructions, and a lot references using Google to get this working.  Thanks for putting these instructions up few years ago!</description>
		<content:encoded><![CDATA[<p>I just want you to know that I&#8217;m new to Geektools and the Mac, but I was able to use your instructions, and a lot references using Google to get this working.  Thanks for putting these instructions up few years ago!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: My Geektool setup! &#124; Philocity</title>
		<link>http://www.devangoldstein.com/87/bringing-google-calendar-to-my-desktop/comment-page-1/#comment-4827</link>
		<dc:creator>My Geektool setup! &#124; Philocity</dc:creator>
		<pubDate>Fri, 18 Jun 2010 20:41:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.devangoldstein.com/87/bringing-google-calendar-to-my-desktop/#comment-4827</guid>
		<description>[...] The interior of the day planner is my Google Calendar feed which is an advanced, but totally possible, thing to do. If you&#8217;re up to the challenge then follow the steps here. [...]</description>
		<content:encoded><![CDATA[<p>[...] The interior of the day planner is my Google Calendar feed which is an advanced, but totally possible, thing to do. If you&#8217;re up to the challenge then follow the steps here. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: My Geektool setup!</title>
		<link>http://www.devangoldstein.com/87/bringing-google-calendar-to-my-desktop/comment-page-1/#comment-4825</link>
		<dc:creator>My Geektool setup!</dc:creator>
		<pubDate>Fri, 14 May 2010 22:33:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.devangoldstein.com/87/bringing-google-calendar-to-my-desktop/#comment-4825</guid>
		<description>[...] The interior of the day planner is my Google Calendar feed which is an advanced, but totally possible, thing to do.  If you&#8217;re up to the challenge then follow the steps here. [...]</description>
		<content:encoded><![CDATA[<p>[...] The interior of the day planner is my Google Calendar feed which is an advanced, but totally possible, thing to do.  If you&#8217;re up to the challenge then follow the steps here. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: devan</title>
		<link>http://www.devangoldstein.com/87/bringing-google-calendar-to-my-desktop/comment-page-1/#comment-4824</link>
		<dc:creator>devan</dc:creator>
		<pubDate>Tue, 20 Apr 2010 16:53:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.devangoldstein.com/87/bringing-google-calendar-to-my-desktop/#comment-4824</guid>
		<description>For those following this comment thread, note that I&#039;ve posted an &lt;a href=&quot;http://www.devangoldstein.com/dblog/wp-content/uploads/gcalpl.txt&quot; rel=&quot;nofollow&quot;&gt;updated version of the script&lt;/a&gt; that checks multiple calendars and takes care of some other weird behaviors I&#039;d found.

I haven&#039;t had too much time to update the post, so if you find anything strange, let me know.

Thanks,
Devan</description>
		<content:encoded><![CDATA[<p>For those following this comment thread, note that I&#8217;ve posted an <a href="http://www.devangoldstein.com/dblog/wp-content/uploads/gcalpl.txt" rel="nofollow">updated version of the script</a> that checks multiple calendars and takes care of some other weird behaviors I&#8217;d found.</p>
<p>I haven&#8217;t had too much time to update the post, so if you find anything strange, let me know.</p>
<p>Thanks,<br />
Devan</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: devan</title>
		<link>http://www.devangoldstein.com/87/bringing-google-calendar-to-my-desktop/comment-page-1/#comment-4789</link>
		<dc:creator>devan</dc:creator>
		<pubDate>Sat, 17 Oct 2009 13:45:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.devangoldstein.com/87/bringing-google-calendar-to-my-desktop/#comment-4789</guid>
		<description>I&#039;m happy you&#039;ve found love, ooooo. And Eliese must be a lucky young woman to have found someone willing to proclaim his love for her so publicly. I wish you two all the best.

And don&#039;t forget the condom, if you&#039;re thinking that way.</description>
		<content:encoded><![CDATA[<p>I&#8217;m happy you&#8217;ve found love, ooooo. And Eliese must be a lucky young woman to have found someone willing to proclaim his love for her so publicly. I wish you two all the best.</p>
<p>And don&#8217;t forget the condom, if you&#8217;re thinking that way.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

