<?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>A Singer, A Song</title>
	<atom:link href="http://www.drslewis.org/grant/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.drslewis.org/grant</link>
	<description>"... sing out loud, sing out strong... "</description>
	<lastBuildDate>Mon, 16 Aug 2010 11:03:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
		<item>
		<title>Fix for Lag when using iPhone Facebook App</title>
		<link>http://www.drslewis.org/grant/2010/08/10/fix-for-lag-when-using-iphone-facebook-app/</link>
		<comments>http://www.drslewis.org/grant/2010/08/10/fix-for-lag-when-using-iphone-facebook-app/#comments</comments>
		<pubDate>Tue, 10 Aug 2010 20:02:52 +0000</pubDate>
		<dc:creator>Grant</dc:creator>
				<category><![CDATA[Geek]]></category>
		<category><![CDATA[Philanthropy]]></category>

		<guid isPermaLink="false">http://www.drslewis.org/grant/?p=686</guid>
		<description><![CDATA[When using the Facebook app on your iPhone, are you experiencing long lags after clicking &#8220;like&#8221; or making a comment? If your phone is jailbroken, there&#8217;s a fix. The issue, blogger Doug Krahmer explains, is caused by the Facebook app caching all data indefinitely. &#8220;The data is never deleted and each cache file is checked/updated [...]]]></description>
			<content:encoded><![CDATA[<p>When using the Facebook app on your iPhone, are you experiencing long lags after clicking &#8220;like&#8221; or making a comment? If your phone is jailbroken, there&#8217;s a fix.</p>
<p>The issue, blogger Doug Krahmer explains, is caused by the Facebook app caching all data indefinitely. &#8220;The data is never deleted and each cache file is checked/updated every time the app attempts to post.&#8221; See Doug&#8217;s original post here: <a href="http://blog.krahmersoft.com/?p=17">http://blog.krahmersoft.com/?p=17</a></p>
<p>Doug&#8217;s solution was to create an auto-running script that cleans the cached Facebook data each morning at 4:00 AM. You&#8217;ll need to have SSH and terminal access to your iPhone.</p>
<p>NOTE: If the iPhone&#8217;s Terminal application crashes when launched, fix the problem by following the instructions <a href="http://www.iphonetechie.com/2010/08/tutorial-on-how-to-download-and-install-mobile-terminal-4-26-for-ios-4-4-0-1-on-iphone-4-3gs-ipad-3-2-1/#more-2549">here</a>.</p>
<p>Follow these steps:</p>
<p>1. Find your facebook app GUID by running the following command. The GUID will look something like (B81C7FF4-78B8-4898-8BFC-DA83AFEA8E95):</p>
<pre>find /User/Applications/*/Facebook.app/Facebook</pre>
<p>2. Create a new file named /usr/bin/fixfacebook.sh and insert the following content. (Note: you must replace each ?????????? with the facebook app GUID from the previous step.)</p>
<pre>#!/bin/sh</pre>
<pre>echo Removing facebook cache files...</pre>
<pre>rm /User/Applications/??????????/Library/Caches/Three20/0*
rm /User/Applications/??????????/Library/Caches/Three20/1*
rm /User/Applications/??????????/Library/Caches/Three20/2*
rm /User/Applications/??????????/Library/Caches/Three20/3*
rm /User/Applications/??????????/Library/Caches/Three20/4*
rm /User/Applications/??????????/Library/Caches/Three20/5*
rm /User/Applications/??????????/Library/Caches/Three20/6*
rm /User/Applications/??????????/Library/Caches/Three20/7*
rm /User/Applications/??????????/Library/Caches/Three20/8*
rm /User/Applications/??????????/Library/Caches/Three20/9*
rm /User/Applications/??????????/Library/Caches/Three20/a*
rm /User/Applications/??????????/Library/Caches/Three20/b*
rm /User/Applications/??????????/Library/Caches/Three20/c*
rm /User/Applications/??????????/Library/Caches/Three20/d*
rm /User/Applications/??????????/Library/Caches/Three20/e*
rm /User/Applications/??????????/Library/Caches/Three20/f*</pre>
<p>3. To set up a schedule, create a new file named /Library/LaunchDaemons/com.krahmersoft.fixfacebook.plist with the following content:</p>
<pre>&lt;?xml version="1.0? encoding="UTF-8??&gt;

&lt;!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN"
                "http://www.apple.com/DTDs/PropertyList-1.0.dtd"&gt;
&lt;plist version="1.0?&gt;
       &lt;dict&gt;
               &lt;key&gt;Label&lt;/key&gt;
               &lt;string&gt;com.krahmersoft.fixfacebook&lt;/string&gt;
               &lt;key&gt;OnDemand&lt;/key&gt;
               &lt;true/&gt;
               &lt;key&gt;Program&lt;/key&gt;
               &lt;string&gt;/usr/bin/fixfacebook.sh&lt;/string&gt;
               &lt;key&gt;StartCalendarInterval&lt;/key&gt;
               &lt;dict&gt;
                      &lt;key&gt;Hour&lt;/key&gt;
                      &lt;integer&gt;4&lt;/integer&gt;
                      &lt;key&gt;Minute&lt;/key&gt;
                      &lt;integer&gt;0&lt;/integer&gt;
               &lt;/dict&gt;
       &lt;/dict&gt;
&lt;/plist&gt;</pre>
<p>4. Run the following command to make the script executable. (I prefer to use Cyberduck to make these kind of changes.)</p>
<pre>chmod 755 /usr/bin/fixfacebook.sh</pre>
<p>5. Run the following command to preform the cleanup immediately (could take several minutes):</p>
<pre>/usr/bin/fixfacebook.sh</pre>
<p>6. Reboot your phone to activate the schedule.</p>
<p>That&#8217;s it! No more lagginess from the Facebook app.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.drslewis.org/grant/2010/08/10/fix-for-lag-when-using-iphone-facebook-app/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wisdom of Bob</title>
		<link>http://www.drslewis.org/grant/2010/07/28/wisdom-of-bob/</link>
		<comments>http://www.drslewis.org/grant/2010/07/28/wisdom-of-bob/#comments</comments>
		<pubDate>Wed, 28 Jul 2010 13:51:04 +0000</pubDate>
		<dc:creator>Grant</dc:creator>
				<category><![CDATA[Changes]]></category>
		<category><![CDATA[Fun]]></category>
		<category><![CDATA[Memories]]></category>

		<guid isPermaLink="false">http://www.drslewis.org/grant/?p=681</guid>
		<description><![CDATA[http://www.drslewis.org/camille/2009/01/wisdom-of-bob/]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.drslewis.org/camille/2009/01/wisdom-of-bob/">http://www.drslewis.org/camille/2009/01/wisdom-of-bob/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.drslewis.org/grant/2010/07/28/wisdom-of-bob/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Happy Birthday, Elise</title>
		<link>http://www.drslewis.org/grant/2010/07/07/happy-birthday-elise/</link>
		<comments>http://www.drslewis.org/grant/2010/07/07/happy-birthday-elise/#comments</comments>
		<pubDate>Wed, 07 Jul 2010 14:14:17 +0000</pubDate>
		<dc:creator>Grant</dc:creator>
				<category><![CDATA[Memories]]></category>

		<guid isPermaLink="false">http://www.drslewis.org/grant/?p=674</guid>
		<description><![CDATA[http://www.drslewis.org/camille/2001/07/elises-birth-story/]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.drslewis.org/camille/2001/07/elises-birth-story/">http://www.drslewis.org/camille/2001/07/elises-birth-story/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.drslewis.org/grant/2010/07/07/happy-birthday-elise/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Chewy&#8217;s First Day of School</title>
		<link>http://www.drslewis.org/grant/2010/06/29/chewys-first-day-of-school/</link>
		<comments>http://www.drslewis.org/grant/2010/06/29/chewys-first-day-of-school/#comments</comments>
		<pubDate>Tue, 29 Jun 2010 15:08:13 +0000</pubDate>
		<dc:creator>Grant</dc:creator>
				<category><![CDATA[Fun]]></category>

		<guid isPermaLink="false">http://www.drslewis.org/grant/?p=672</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone" title="Chewy's First Day of School" src="http://i.imgur.com/teq7w.jpg" alt="" width="471" height="600" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.drslewis.org/grant/2010/06/29/chewys-first-day-of-school/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Our First Geocaching Adventure</title>
		<link>http://www.drslewis.org/grant/2010/05/16/our-first-geocaching-adventure/</link>
		<comments>http://www.drslewis.org/grant/2010/05/16/our-first-geocaching-adventure/#comments</comments>
		<pubDate>Sun, 16 May 2010 22:56:09 +0000</pubDate>
		<dc:creator>Grant</dc:creator>
				<category><![CDATA[Fun]]></category>

		<guid isPermaLink="false">http://www.drslewis.org/grant/?p=643</guid>
		<description><![CDATA[Have you ever heard of geocaching? It&#8217;s a high-tech version of hide-and-seek or a scavenger hunt. Someone &#8220;buries&#8221; something for others to try and find using a GPS receiver. There are over 1 million active geocaches around the world! Usually a geocache consists of a small, waterproof container that holds a logbook and inexpensive trinkets. [...]]]></description>
			<content:encoded><![CDATA[<p>Have you ever heard of geocaching? It&#8217;s a high-tech version of hide-and-seek or a scavenger hunt. Someone &#8220;buries&#8221; something for others to try and find using a GPS receiver. There are over 1 million active geocaches around the world! Usually a geocache consists of a small, waterproof container that holds a logbook and inexpensive trinkets. When you find it, you write your name and the date in the accompanying log book, and if you want, you can take one of the trinkets hidden in the geocache&#8230; as long as you leave a trinket for the next person to find. Then later you log your find and write about your experience on <a href="http://www.geocaching.com">geocaching.com</a> so that your fellow geocachers and the person who originally hid the cache can read of your exploits.</p>
<p>Today was our first family geocaching adventure!</p>
<p>We had to delay our trip for a little while due to an afternoon thunderstorm and so took a side expedition just up the road to an old grist mill, the Gilreath Mill on highway 101 in Greer. Camille stayed in the car with our two snoozing boys, and I got out to explore for a bit.</p>
<p><a href="http://www.drslewis.org/grant/wp-content/uploads/2010/05/IMG_0021-11.jpeg"><img class="alignnone size-medium wp-image-646" title="IMG_0021-1" src="http://www.drslewis.org/grant/wp-content/uploads/2010/05/IMG_0021-11-300x224.jpg" alt="" width="300" height="224" /></a></p>
<p>History dates the mill to the early 1800s. Additional information on the mill is available on the <a href="http://www.nationalregister.sc.gov/greenville/S10817723009/index.htm">South Carolina Department of Archives and History website</a>.</p>
<p>By the time I&#8217;d finished exploring, the rain had stopped.</p>
<p>A <a href="http://itunes.apple.com/us/app/geocaching/id292242503?mt=8">geocaching  app that I&#8217;d downloaded to my iPhone</a> indicated  that there was a cache originally placed in November, 2008 on the site of the <a href="http://news.google.com/newspapers?nid=1876&amp;dat=19280615&amp;id=RDksAAAAIBAJ&amp;sjid=g8oEAAAAIBAJ&amp;pg=7056,4748901">old Chick Springs Hotel and Sanitarium</a>. Camille and I had read previously the very interesting history of that location, and it&#8217;s just across Wade Hampton from us, an area that we regularly drive past. We knew that would be a good first choice, and so off we drove. When we arrived, we set out from the car and trekked across the wet grass towards the old spring house, one of the few remaining structures.</p>
<p><a href="http://www.drslewis.org/grant/wp-content/uploads/2010/05/IMG_0030-1.jpeg"><img class="alignnone size-medium wp-image-645" title="IMG_0030-1" src="http://www.drslewis.org/grant/wp-content/uploads/2010/05/IMG_0030-1-300x224.jpg" alt="" width="300" height="224" /></a></p>
<p><a href="http://www.drslewis.org/grant/wp-content/uploads/2010/05/IMG_0029-1.jpeg"><img class="alignnone size-full wp-image-665" title="IMG_0029-1" src="http://www.drslewis.org/grant/wp-content/uploads/2010/05/IMG_0029-1.jpeg" alt="" width="300" height="225" /></a></p>
<p>There we stopped and listened to the spring gurgling inside the spring house.</p>
<p><a href="http://www.drslewis.org/grant/wp-content/uploads/2010/05/IMG_0028-1.jpeg"><img class="alignnone size-medium wp-image-666" title="IMG_0028-1" src="http://www.drslewis.org/grant/wp-content/uploads/2010/05/IMG_0028-1-225x300.jpg" alt="" width="225" height="300" /></a></p>
<p>The clues we were given told us that the cache was hidden somewhere about 6 feet off the ground, “wires window looking to the gazebo.” (There was an old gazebo on the back end of the property that you can see in two of the pictures above, the pictures without Isaac in them.) We worked our way around the backside of the spring house structure, looked up into the eaves, and there it was: a small, white, plastic 35mm film canister. It had a magnet attached to its bottom, the magnet holding the canister to a small metal plate.<br />
<a href="http://www.drslewis.org/grant/wp-content/uploads/2010/05/IMG_0027.png"><img class="alignnone size-medium wp-image-660" title="IMG_0027" src="http://www.drslewis.org/grant/wp-content/uploads/2010/05/IMG_0027-225x300.png" alt="" width="225" height="300" /></a><a href="http://www.drslewis.org/grant/wp-content/uploads/2010/05/IMG_0026-1.jpeg"></a></p>
<p><a href="http://www.drslewis.org/grant/wp-content/uploads/2010/05/IMG_0026-1.jpeg"><img class="alignnone size-medium wp-image-648" title="IMG_0026-1" src="http://www.drslewis.org/grant/wp-content/uploads/2010/05/IMG_0026-1-224x300.jpg" alt="" width="224" height="300" /></a><br />
The log indicated that the cache had been found by previous geocachers just a day earlier, and before that, a month earlier. There were about 25 other log entries dating back to when the cache was first hidden.</p>
<p>After signing and dating the log, we put the cache back in its hiding spot for the next people to find.</p>
<p><a href="http://www.drslewis.org/grant/wp-content/uploads/2010/05/IMG_0031-1.jpeg"><img class="alignnone size-full wp-image-667" title="IMG_0031-1" src="http://www.drslewis.org/grant/wp-content/uploads/2010/05/IMG_0031-1.jpeg" alt="" width="300" height="225" /></a></p>
<p>This cache&#8217;s container was too small to hold any trinkets. But there are scads of other caches close to our house, some less than 1/2 mile from our front door. I&#8217;m sure we&#8217;ll have opportunity to exchange &#8220;treasures&#8221; soon.</p>
<p>It was great that our first attempt could be so completely successful, and we&#8217;re already planning our next adventure. What a great family hobby!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.drslewis.org/grant/2010/05/16/our-first-geocaching-adventure/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Friday the 12th</title>
		<link>http://www.drslewis.org/grant/2010/02/12/friday-the-12th/</link>
		<comments>http://www.drslewis.org/grant/2010/02/12/friday-the-12th/#comments</comments>
		<pubDate>Fri, 12 Feb 2010 11:00:56 +0000</pubDate>
		<dc:creator>Grant</dc:creator>
				<category><![CDATA[Fun]]></category>

		<guid isPermaLink="false">http://www.drslewis.org/grant/?p=458</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone" title="Friday the 12th" src="http://imgur.com/yZgRB.jpg" alt="" width="599" height="481" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.drslewis.org/grant/2010/02/12/friday-the-12th/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The Outrage!</title>
		<link>http://www.drslewis.org/grant/2010/01/31/the-outrage/</link>
		<comments>http://www.drslewis.org/grant/2010/01/31/the-outrage/#comments</comments>
		<pubDate>Sun, 31 Jan 2010 13:22:59 +0000</pubDate>
		<dc:creator>Grant</dc:creator>
				<category><![CDATA[Changes]]></category>
		<category><![CDATA[Fun]]></category>

		<guid isPermaLink="false">http://www.drslewis.org/grant/?p=629</guid>
		<description><![CDATA[How dare he hew so close to the truth! The gall! The utter accuracy of it all! Dagnabbit! This lack of funds combined with an inability to seek help from any other source (not to mention threats that leaving this glorious ministry will ruin God’s will for your life), combines to create a class of [...]]]></description>
			<content:encoded><![CDATA[<p>How dare he hew so close to the truth! The gall! The utter accuracy of it all! Dagnabbit!</p>
<blockquote><p>This lack of funds combined with an inability to seek help from any  other source (not to mention threats that leaving this glorious ministry  will ruin God’s will for your life), combines to create a class of  indentured servitude with people who are too literally too poor to  escape the cycle. Add to this the bellowing of preachers who blast their  lackeys for even daring to inquire about how much money a ministry  position might pay and you end up with a very sad situation indeed.</p></blockquote>
<p>Via <a href="http://www.stufffundieslike.com/2010/01/badpay/">Stuff Fundies Like</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.drslewis.org/grant/2010/01/31/the-outrage/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Solved: Sync Contacts and Safari Bookmarks with iPhone</title>
		<link>http://www.drslewis.org/grant/2010/01/19/solved-sync-contacts-and-safari-bookmarks-with-iphone/</link>
		<comments>http://www.drslewis.org/grant/2010/01/19/solved-sync-contacts-and-safari-bookmarks-with-iphone/#comments</comments>
		<pubDate>Tue, 19 Jan 2010 15:30:26 +0000</pubDate>
		<dc:creator>Grant</dc:creator>
				<category><![CDATA[Geek]]></category>
		<category><![CDATA[Philanthropy]]></category>

		<guid isPermaLink="false">http://www.drslewis.org/grant/?p=626</guid>
		<description><![CDATA[Camille&#8217;s now a proud iPhone owner. Everything with the activation and setup went pretty smoothly with one fairly significant exception: I couldn&#8217;t get her contacts in Address Book or her Safari bookmarks to sync. Every time I tried, I&#8217;d get the following cryptic (and somewhat circular) message: iTunes could not sync contacts to the iPhone [...]]]></description>
			<content:encoded><![CDATA[<p>Camille&#8217;s now a proud iPhone owner. Everything with the activation and setup went pretty smoothly with one fairly significant exception: I couldn&#8217;t get her contacts in Address Book or her Safari bookmarks to sync. Every time I tried, I&#8217;d get the following cryptic (and somewhat circular) message:</p>
<blockquote><p><em>iTunes could not sync contacts to the iPhone because the sync server failed to sync the iPhone</em></p></blockquote>
<p>I addition to the above, the process would stall when trying to sync Safari bookmarks.</p>
<p>I was finally able to solve the problem <a href="http://discussions.apple.com/thread.jspa?threadID=1612348">thanks to a find over on Apple&#8217;s support forums</a>:</p>
<ul>
<li>back up the Apple Address Book</li>
<li>trash any items in the<strong> (user) / Library / ApplicationSupport / SyncServices</strong> folder</li>
<li>restart the computer</li>
<li>ensure sure that contacts and Safari bookmarks are checked to sync in iTunes</li>
<li> re-sync</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.drslewis.org/grant/2010/01/19/solved-sync-contacts-and-safari-bookmarks-with-iphone/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>In Grateful Memory</title>
		<link>http://www.drslewis.org/grant/2010/01/18/in-grateful-memory/</link>
		<comments>http://www.drslewis.org/grant/2010/01/18/in-grateful-memory/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 17:54:08 +0000</pubDate>
		<dc:creator>Grant</dc:creator>
				<category><![CDATA[Changes]]></category>
		<category><![CDATA[Ideas]]></category>

		<guid isPermaLink="false">http://www.drslewis.org/grant/?p=622</guid>
		<description><![CDATA[I am so grateful to be at a place in my life where I can celebrate with a full heart the achievements of those who are vastly different from the person I used to be. I am doubly grateful that my children, by God&#8217;s grace, will not be brought up in an intolerant, dismissive atmosphere [...]]]></description>
			<content:encoded><![CDATA[<p>I am so grateful to be at a place in my life where I can celebrate with a full heart the achievements of those who are vastly different from the person I used to be. I am doubly grateful that my children, by God&#8217;s grace, will not be brought up in an intolerant, dismissive atmosphere that turns a blind eye to the struggles of good men and women around them. I am grateful that, in my small way, I can be a part of the great dream dreamed by the good man we honor on this day.</p>
<p><a href="http://www.drslewis.org/camille/2010/01/shalom/">I am grateful</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.drslewis.org/grant/2010/01/18/in-grateful-memory/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Excavation at Davenport</title>
		<link>http://www.drslewis.org/grant/2010/01/16/the-excavation-at-davenport/</link>
		<comments>http://www.drslewis.org/grant/2010/01/16/the-excavation-at-davenport/#comments</comments>
		<pubDate>Sun, 17 Jan 2010 01:03:48 +0000</pubDate>
		<dc:creator>Grant</dc:creator>
				<category><![CDATA[Fun]]></category>

		<guid isPermaLink="false">http://www.drslewis.org/grant/?p=617</guid>
		<description><![CDATA[&#8220;My marble! My shiny marble!&#8221; Wails of disappointment as yet another of Gavin&#8217;s tiny treasures slipped into the recesses of our sofa. And so the excavation began. The yield: several coins gold pirate booty Yoshi a red die two tiny swords one miniature Darth Vader helmet one of my wife&#8217;s needles (in my finger, yeooooowch) [...]]]></description>
			<content:encoded><![CDATA[<p>&#8220;My marble! <em>My shiny marble!</em>&#8221; Wails of disappointment as yet another of Gavin&#8217;s tiny treasures slipped into the recesses of our sofa. And so the excavation began. The yield:</p>
<ul>
<li>several coins gold pirate booty</li>
<li>Yoshi</li>
<li>a red die</li>
<li>two tiny swords</li>
<li>one miniature Darth Vader helmet</li>
<li>one of my wife&#8217;s needles (in my finger, <em>yeooooowch</em>)</li>
<li>numerous snack memories</li>
<li>a sock</li>
<li>a cookie cutter</li>
<li>one black flute-o-phone (both halves)</li>
<li>Captain Hook&#8217;s famed appendage</li>
<li>a cotton ball</li>
<li>a lovely ruby gem</li>
<li>a diminutive medieval axe</li>
<li>one vintage Fisher-Price letter addressed to &#8220;Theater&#8221;</li>
<li>one unidentified Lego &#8220;thing&#8221;</li>
</ul>
<p>No marble unfortunately. But with all of the other wonders that emerged, who could care less?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.drslewis.org/grant/2010/01/16/the-excavation-at-davenport/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
