<?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>Idea Farm</title>
	<atom:link href="http://www.spencerchristensen.com/ideafarm/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.spencerchristensen.com/ideafarm</link>
	<description>Casting ideas to the wind to see what takes root</description>
	<lastBuildDate>Thu, 03 May 2012 19:05:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>SSH key forwarding</title>
		<link>http://www.spencerchristensen.com/ideafarm/2012/05/03/ssh-key-forwarding/</link>
		<comments>http://www.spencerchristensen.com/ideafarm/2012/05/03/ssh-key-forwarding/#comments</comments>
		<pubDate>Thu, 03 May 2012 19:05:48 +0000</pubDate>
		<dc:creator>spencer</dc:creator>
				<category><![CDATA[how-to]]></category>
		<category><![CDATA[Systems]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[ssh keys]]></category>

		<guid isPermaLink="false">http://www.spencerchristensen.com/ideafarm/?p=69</guid>
		<description><![CDATA[I recently built a new dev environment at work, based on DevCamps.  I made significant changes and customizations for our needs at Skullcandy.  As we've rolled camps out here and developers have adopted it, we've seen some common problems which are simple enough to fix but can be vexing to figure out. The most common [...]]]></description>
			<content:encoded><![CDATA[<p>I recently built a new dev environment at work, based on <a href="http://www.devcamps.org">DevCamps</a>.  I made significant changes and customizations for our needs at Skullcandy.  As we've rolled camps out here and developers have adopted it, we've seen some common problems which are simple enough to fix but can be vexing to figure out.</p>
<p>The most common problem developers have run into is caused by they ssh keys not forwarding.  It seems that this is not set by default pretty much everywhere, which I find confusing.  So here are the first steps to ensure your ssh key is forwarding correctly:</p>
<ol>
<li>Make sure you are using an ssh agent to store and forward your keys.  This seems obvious if you understand ssh forwarding, but it is surprising that this doesn't happen automatically on some systems (like Mac OS X).  So you need to check to see if your ssh agent has your ssh key loaded.  Do this with this command:
<pre>ssh-add -l</pre>
</li>
<li>You should see your ssh key(s) listed.  If not, then run:
<pre>ssh-add</pre>
</li>
<li>Create or edit the file $HOME/.ssh/config on your workstation and make sure this line is present:
<pre>ForwardAgent yes</pre>
</li>
</ol>
<p>This should get you forwarding your ssh key.  If you want to just forward your key on one connection only and not for all, then you can use the command line option to ssh to temporarily turn on forwarding, -A.  Like this:</p>
<pre>ssh -A user@somehost.com</pre>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.spencerchristensen.com/ideafarm/2012/05/03/ssh-key-forwarding/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Location of Tomboy notes files on Ubuntu 11.04</title>
		<link>http://www.spencerchristensen.com/ideafarm/2011/11/29/location-of-tomboy-notes-files-on-ubuntu-11-04/</link>
		<comments>http://www.spencerchristensen.com/ideafarm/2011/11/29/location-of-tomboy-notes-files-on-ubuntu-11-04/#comments</comments>
		<pubDate>Tue, 29 Nov 2011 20:09:42 +0000</pubDate>
		<dc:creator>spencer</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[tomboy]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.spencerchristensen.com/ideafarm/?p=66</guid>
		<description><![CDATA[I keep forgetting where the location is for tomboy notes on my old ubuntu laptop, and occasionally I need to retrieve them. They are located in $HOME/.local/share/tomboy/ where each note is in an xml file with a name like 74ce8803-d17a-4537-b502-2a792567828e.note.]]></description>
			<content:encoded><![CDATA[<p>I keep forgetting where the location is for tomboy notes on my old ubuntu laptop, and occasionally I need to retrieve them.</p>
<p>They are located in $HOME/.local/share/tomboy/ where each note is in an xml file with a name like 74ce8803-d17a-4537-b502-2a792567828e.note.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.spencerchristensen.com/ideafarm/2011/11/29/location-of-tomboy-notes-files-on-ubuntu-11-04/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fast and easy way to send Apache logs to syslog</title>
		<link>http://www.spencerchristensen.com/ideafarm/2011/11/15/fast-and-easy-way-to-send-apache-logs-to-syslog/</link>
		<comments>http://www.spencerchristensen.com/ideafarm/2011/11/15/fast-and-easy-way-to-send-apache-logs-to-syslog/#comments</comments>
		<pubDate>Wed, 16 Nov 2011 00:39:47 +0000</pubDate>
		<dc:creator>spencer</dc:creator>
				<category><![CDATA[how-to]]></category>
		<category><![CDATA[Systems]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[syslog]]></category>

		<guid isPermaLink="false">http://www.spencerchristensen.com/ideafarm/?p=62</guid>
		<description><![CDATA[I keep forgetting how to do this and have to look it up every time, so I'm writing it down.  If you want to send Apache logs to syslog, it really is simple.  I'm talking about RHEL/CentOS/Fedora servers with standard packages installed.  Follow these simple steps: In your Apache config where you set CustomLog, make [...]]]></description>
			<content:encoded><![CDATA[<p>I keep forgetting how to do this and have to look it up every time, so I'm writing it down.  <img src='http://www.spencerchristensen.com/ideafarm/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>If you want to send Apache logs to syslog, it really is simple.  I'm talking about RHEL/CentOS/Fedora servers with standard packages installed.  Follow these simple steps:</p>
<p>In your Apache config where you set CustomLog, make that line look something like this:</p>
<p><code><br />
CustomLog "|/bin/logger -p local1.info -t apache" combined<br />
ErrorLog syslog:local1<br />
</code></p>
<p>Let's break this down and explain it....<span id="more-62"></span></p>
<p>The secret is a program on your server <tt>/bin/logger</tt> which allows you to pipe anything to syslog.  You just need to define a which facility to log.  In my example I'm using local1.</p>
<p>The other step is to make sure that /etc/syslog.conf (or whatever your syslog program config is), is handling the right facility as apache.</p>
<p>Here is what I add to my syslog.conf</p>
<pre># apache
local1.info             /var/log/httpd/apache.log
local1.!info            /var/log/httpd/error.log</pre>
<p>That should be it. Restart httpd and syslog and you should see your apache logs coming through.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.spencerchristensen.com/ideafarm/2011/11/15/fast-and-easy-way-to-send-apache-logs-to-syslog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sagetv, is it doomed or saved?</title>
		<link>http://www.spencerchristensen.com/ideafarm/2011/11/06/sagetv-is-it-doomed-or-saved/</link>
		<comments>http://www.spencerchristensen.com/ideafarm/2011/11/06/sagetv-is-it-doomed-or-saved/#comments</comments>
		<pubDate>Mon, 07 Nov 2011 05:49:23 +0000</pubDate>
		<dc:creator>spencer</dc:creator>
				<category><![CDATA[Grumblings]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[sagetv]]></category>

		<guid isPermaLink="false">http://www.spencerchristensen.com/ideafarm/?p=56</guid>
		<description><![CDATA[A few months ago it was announced that Sagetv was acquired by Google. There was a press release, and the hompage of Sagetv was updated, but otherwise it was a pretty quiet and under the radar operation. No one really knows the details of the deal, or what will become of Sagetv. You can no [...]]]></description>
			<content:encoded><![CDATA[<p>A few months ago it was announced that Sagetv was acquired by Google. There was a press release, and the hompage of Sagetv was updated, but otherwise it was a pretty quiet and under the radar operation. No one really knows the details of the deal, or what will become of Sagetv.</p>
<p>You can no longer purchase Sagetv or any of its products, as the entire store on their site is gone. The only part of their site that is still operational is the forums, but I've always felt that their forums weren't that helpful.</p>
<p>They did say that for those who own Sagetv can expect the program guide (the tv schedule for upcoming shows and what is on what channel) to still be functional until next Summer. So that means that either they need to provide a new solution for my DVR/PVR/Media center/streaming center/music/photos/etc server or I'm going to have to abandon Sagetv and go find something else.</p>
<p>This really has me worried. I expect good things out of Google, but Sagetv has been as very good product and solution. The next best thing out there is probably MythTV, but the best thing that Sagetv had over Mythtv was the custom made, prebuilt hardware, at an affordable price. There aren't good hardware solutions for Myth that pass the "significant other test", but Sagetv did as soon as I set it up.</p>
<p>Hurumph.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.spencerchristensen.com/ideafarm/2011/11/06/sagetv-is-it-doomed-or-saved/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zorbing</title>
		<link>http://www.spencerchristensen.com/ideafarm/2011/08/03/zorbing/</link>
		<comments>http://www.spencerchristensen.com/ideafarm/2011/08/03/zorbing/#comments</comments>
		<pubDate>Wed, 03 Aug 2011 22:11:35 +0000</pubDate>
		<dc:creator>spencer</dc:creator>
				<category><![CDATA[Adventure]]></category>
		<category><![CDATA[vacation]]></category>
		<category><![CDATA[zorb]]></category>

		<guid isPermaLink="false">http://www.spencerchristensen.com/ideafarm/?p=3</guid>
		<description><![CDATA[My wife and I went to New Zealand back in 2004 and loved it. LOVED IT! I was looking through some old photos and stumbled across this one: Ah... good times! It makes me want to go again. I just checked out http://www.zorb.com/zorb/locations/ and found that they have a location in the US! We'll need [...]]]></description>
			<content:encoded><![CDATA[<p>My wife and I went to New Zealand back in 2004 and loved it. LOVED IT! I was looking through some old photos and stumbled across this one:</p>
<div id="attachment_43" class="wp-caption alignnone" style="width: 310px"><a href="http://www.spencerchristensen.com/ideafarm/wp-content/uploads/2011/08/NZ-Imgp0199.jpg"><img class="size-medium wp-image-43" title="NZ-Imgp0199" src="http://www.spencerchristensen.com/ideafarm/wp-content/uploads/2011/08/NZ-Imgp0199-300x225.jpg" alt="Standing next to a Zorb ball" width="300" height="225" /></a>
<p class="wp-caption-text">Becky and me Zorbing in Rotorua, NZ</p>
</div>
<p>Ah... good times! It makes me want to go again. I just checked out <a href="http://www.zorb.com/zorb/locations/">http://www.zorb.com/zorb/locations/</a> and found that they have a location in the US! We'll need to plan a trip to Tennessee soon. <img src='http://www.spencerchristensen.com/ideafarm/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>If you aren't familiar with Zorbing, the basic idea is that you climb inside a gigantic plastic ball and then roll down a hill.  It is a blast.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.spencerchristensen.com/ideafarm/2011/08/03/zorbing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Newest programming project- Library Queue</title>
		<link>http://www.spencerchristensen.com/ideafarm/2011/08/02/newest-programming-project-library-queue/</link>
		<comments>http://www.spencerchristensen.com/ideafarm/2011/08/02/newest-programming-project-library-queue/#comments</comments>
		<pubDate>Tue, 02 Aug 2011 23:15:20 +0000</pubDate>
		<dc:creator>spencer</dc:creator>
				<category><![CDATA[Project Ideas]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[library]]></category>
		<category><![CDATA[movies]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://www.spencerchristensen.com/ideafarm/?p=40</guid>
		<description><![CDATA[A couple months ago I started work on a new personal project: Library Queue.  The project is to build a website/webservices that will enable users to manage a queue for checking out movies from their local public library much like a Netflix queue.  I'm not sure how other library web sites compare, but at least [...]]]></description>
			<content:encoded><![CDATA[<p>A couple months ago I started work on a new personal project: Library Queue.  The project is to build a website/webservices that will enable users to manage a queue for checking out movies from their local public library much like a Netflix queue.  I'm not sure how other library web sites compare, but at least for the Salt Lake City public library (http://slcpl.org) browsing and searching for movies is not user friendly at all.  It really could be soooo much better if they were organized and presented in a UI similar to Netflix or Redbox.  And the other aspect is a queue of movies you'd like to watch at some point but don't want to put a "hold" on all the movies right then.</p>
<p>I'm thinking that you will be able to configure the queue system to look at your currently checked out movies and the currently on hold movies and then will only move things from in queue to hold when there is "room" for it.  Meaning, if I set a limit to "Number of movies checked out or on hold" to 10, then I can only have 10 movies in checkout status or on hold.  As soon as I return a checked out movie or cancel a hold on a movie that will open up a spot and the system will automatically take the next movie in my queue and place a hold on it for me.</p>
<p>Then I am free to browse and search for all the movies I want to watch and throw them all in a queue.  The system will work through the queue and track everything.</p>
<p>That's the basic idea.  I've started working on prototyping it and building tests for portions of the code.  But it's still a long way from being functional.  I hope to have something usable for myself in the next month or so.  If I can get some help (or enough time) to make the UI decent then I might open it up for anyone to use.  Right now, I'm building this with the SLC city library, but also plan to support the SL county library too.  I've designed it so I should be able to add more libraries in the future.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.spencerchristensen.com/ideafarm/2011/08/02/newest-programming-project-library-queue/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>An update on books I&#8217;m reading</title>
		<link>http://www.spencerchristensen.com/ideafarm/2011/07/31/an-update-on-books-im-reading/</link>
		<comments>http://www.spencerchristensen.com/ideafarm/2011/07/31/an-update-on-books-im-reading/#comments</comments>
		<pubDate>Mon, 01 Aug 2011 05:58:34 +0000</pubDate>
		<dc:creator>spencer</dc:creator>
				<category><![CDATA[Book reviews]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[books]]></category>

		<guid isPermaLink="false">http://www.spencerchristensen.com/ideafarm/?p=37</guid>
		<description><![CDATA[So I'm always reading a book.  Or two or three.  At the same time of course.  However, I'm not a very fast reader, nor am I a consistent reader.  So even though I'm "always reading a book", it may take me 4 or 5 months to finish one. Last year I read probably 3 or [...]]]></description>
			<content:encoded><![CDATA[<p>So I'm always reading a book.  Or two or three.  At the same time of course.  However, I'm not a very fast reader, nor am I a consistent reader.  So even though I'm "always reading a book", it may take me 4 or 5 months to finish one.</p>
<p>Last year I read probably 3 or 4 books.  So far this year I've read two and am almost finished with a third:</p>
<ul>
<li>The Fellowship of the Ring (first book in the Lord of the Rings trilogy)</li>
<li>Johnathan Livingston Seagull</li>
<li>Eragon (almost finished with this one)</li>
</ul>
<p>They've all been enjoyable.  While these are the ones I've finished (or nearly), here are some that I'm still in the midst of:</p>
<ul>
<li>The Art of Scalability (about scalable system and business architecture)</li>
<li>Learning Groovy and Grails</li>
<li>Myths of Innovation</li>
<li>97 Things Every Software Architect Should Know</li>
<li>Oracle Essentials</li>
</ul>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.spencerchristensen.com/ideafarm/2011/07/31/an-update-on-books-im-reading/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blog face lift</title>
		<link>http://www.spencerchristensen.com/ideafarm/2011/07/31/blog-face-lift/</link>
		<comments>http://www.spencerchristensen.com/ideafarm/2011/07/31/blog-face-lift/#comments</comments>
		<pubDate>Mon, 01 Aug 2011 05:31:09 +0000</pubDate>
		<dc:creator>spencer</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[blog]]></category>

		<guid isPermaLink="false">http://www.spencerchristensen.com/ideafarm/?p=32</guid>
		<description><![CDATA[I've been using Movable Type for blogging for a long time now, like 2 years.  I am now switching to WordPress.  Reason being- I did a custom install of Movable Type and I don't really want to go through the effort to upgrade it, or maintain it.  My hosting service provider has an auto-install of [...]]]></description>
			<content:encoded><![CDATA[<p>I've been using Movable Type for blogging for a long time now, like 2 years.  I am now switching to WordPress.  Reason being- I did a custom install of Movable Type and I don't really want to go through the effort to upgrade it, or maintain it.  My hosting service provider has an auto-install of WordPress with automated upgrades and plugins and all sorts of things that I don't have to manage.  Simple enough.</p>
<p>&nbsp;</p>
<p>So, I've imported everything from my MT blog over here and think this will be a better long-term blog platform.</p>
<p>&nbsp;</p>
<p>Oh- p.s.  I changed the name of the blog.  Different name, but same concept.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.spencerchristensen.com/ideafarm/2011/07/31/blog-face-lift/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Yet Another Ubuntu Upgrade</title>
		<link>http://www.spencerchristensen.com/ideafarm/2011/06/19/yet_another_ubuntu_upgrade/</link>
		<comments>http://www.spencerchristensen.com/ideafarm/2011/06/19/yet_another_ubuntu_upgrade/#comments</comments>
		<pubDate>Sun, 19 Jun 2011 21:14:32 +0000</pubDate>
		<dc:creator>spencer</dc:creator>
				<category><![CDATA[Adventure]]></category>
		<category><![CDATA[Grumblings]]></category>
		<category><![CDATA[how-to]]></category>
		<category><![CDATA[Systems]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[flashing led]]></category>
		<category><![CDATA[flashing light]]></category>
		<category><![CDATA[stop]]></category>
		<category><![CDATA[Ubuntu upgrade]]></category>

		<guid isPermaLink="false">http://www.spencerchristensen.com/ideafarm/?p=30</guid>
		<description><![CDATA[So Ubuntu 11.04 was release a few weeks ago and I decided to upgrade this weekend. &#160;In prep for the upgrade, I backed up my laptop onto my external portable hard drive that I may need (my home dir, and a few other things in /etc, some cronjobs, etc.). &#160;I then did a clean re-install [...]]]></description>
			<content:encoded><![CDATA[<p>So Ubuntu 11.04 was release a few weeks ago and I decided to upgrade this weekend. &nbsp;In prep for the upgrade, I backed up my laptop onto my external portable hard drive that I may need (my home dir, and a few other things in /etc, some cronjobs, etc.). &nbsp;I then did a clean re-install from CD. &nbsp;In the past the ugrade-in-place has taken a long time, and was not completely problem free. &nbsp;Whereas the last time I did a clean re-install it was pretty much problem free- except getting all my personal files/configuration/settings the way I like them all back took some time. &nbsp;So that is the same approach I decided to take with this upgrade.
<div></div>
<div>Its only been 2 days since I upgraded on Friday and I just remembered that the little LED on my laptop for wireless networking blinks &nbsp;now as the default behavior. &nbsp;Ugh!!! &nbsp;So stupid. &nbsp;I remember going bonkers about this last time. &nbsp;However, the solution I used last time isn't going to work now since things have changed in the new version of Ubuntu.</div>
<div></div>
<div>So... this is how I fixed it this time. &nbsp;I created a file in /etc/modprob.d/ called wlan.conf and added this one line to the file:</div>
<div></div>
<div></div>
<div>
<pre>
<div>root@spencer-laptop:~# cat /etc/modprobe.d/wlan.conf&nbsp;</div>
<div>options iwlcore led_mode=1</div>
</pre>
</div>
<div></div>
<div>And then I rebooted, and BINGO! &nbsp;No more flashing light for wireless! &nbsp;Yay! &nbsp;And the was much rejoicing.</div>
<div></div>
]]></content:encoded>
			<wfw:commentRss>http://www.spencerchristensen.com/ideafarm/2011/06/19/yet_another_ubuntu_upgrade/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Saw Paul Simon in Concert in Seattle</title>
		<link>http://www.spencerchristensen.com/ideafarm/2011/04/16/saw_paul_simon_in_concert_in_s/</link>
		<comments>http://www.spencerchristensen.com/ideafarm/2011/04/16/saw_paul_simon_in_concert_in_s/#comments</comments>
		<pubDate>Sat, 16 Apr 2011 17:35:59 +0000</pubDate>
		<dc:creator>spencer</dc:creator>
				<category><![CDATA[Adventure]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[concert]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[Paul Simon]]></category>
		<category><![CDATA[Seattle]]></category>
		<category><![CDATA[vacation]]></category>

		<guid isPermaLink="false">http://www.spencerchristensen.com/ideafarm/?p=29</guid>
		<description><![CDATA[My wife and I flew to Seattle April 14-17 so we could go to a concert. &#160;:-) &#160;We went to see Paul Simon as he kicked off a new tour, and we went to the first concert of the tour. &#160;It was at the WAMU theater, which is part of Qwest Field in Seattle (Qwest [...]]]></description>
			<content:encoded><![CDATA[<p>My wife and I flew to Seattle April 14-17 so we could go to a concert. &nbsp;:-) &nbsp;We went to see Paul Simon as he kicked off a new tour, and we went to the first concert of the tour. &nbsp;It was at the WAMU theater, which is part of Qwest Field in Seattle (Qwest Field is where the football team Seattle Seahawks play).
<div></div>
<div>The concert was soooo good. &nbsp;We really enjoyed it. &nbsp;I wanted to remember what he played so with the help of my wife, we wrote down the songs from memory. &nbsp;Here's the playlist from the concert, although- we may have missed a song or two and it is not in order:</div>
<div></div>
<div><u><b>songs from the concert:</b></u><br />crazy love<br />afterlife<br />rewrite<br />love is eternal sacred light<br />so beautiful or so what<br />only living boy in new york<br />I know what I know<br />that was your mother<br />father and daughter<br />50 ways to leave your lover<br />kodachrome<br />diamonds on the souls of her shoes<br />slip slide and away<br />hearts and bones<br />the obvious child<br />train in the distance (? not sure)<br />gone at last<br />love and hard times</p>
<p>encore 1:<br />sounds of silence<br />(? can't remember)</div>
<div>encore 2:<br />here comes the sun (beatles cover)<br />late in the evening</p>
</div>
<div></div>
]]></content:encoded>
			<wfw:commentRss>http://www.spencerchristensen.com/ideafarm/2011/04/16/saw_paul_simon_in_concert_in_s/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

