<?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/"
	 xmlns:slash="http://purl.org/rss/1.0/modules/slash/" 
>

<channel>
	<title>Daniel Bergey</title>
	<atom:link href="http://danielbergey.com/motion/feed/" rel="self" type="application/rss+xml" />
	<link>http://danielbergey.com/motion</link>
	<description>Commotion</description>
	<lastBuildDate>Mon, 02 Nov 2009 02:45:59 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Seriously, go plug in your computer.</title>
		<link>http://danielbergey.com/motion/2009/11/seriously-go-plug-in-your-computer/</link>
		<comments>http://danielbergey.com/motion/2009/11/seriously-go-plug-in-your-computer/#comments</comments>
		<pubDate>Sun, 01 Nov 2009 13:24:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[applescript]]></category>
		<category><![CDATA[launchd]]></category>
		<category><![CDATA[macbook]]></category>
		<category><![CDATA[power]]></category>
		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://danielbergey.com/motion/?p=662</guid>
		<description><![CDATA[This happens a lot: I&#8217;ll be programming along, in the zone, so much that even the low-power alert doesn&#8217;t dissuade me from my task:

That&#8217;s bad. Because inevitably, I&#8217;ll be just in the middle of a thought when the computer shuts off, ten minutes later. I don&#8217;t actually *lose* anything, of course, because MacBooks are usually [...]]]></description>
			<content:encoded><![CDATA[<p>This happens a lot: I&#8217;ll be programming along, in the zone, so much that even the low-power alert doesn&#8217;t dissuade me from my task:</p>
<div align="center" style="margin: -25px -45px;"><img src="http://danielbergey.com/motion/wp-content/uploads/2009/11/reservepower.png" alt="reservepower.png" border="0" width="555" height="243" style="border-width: 0;" /></div>
<p>That&#8217;s bad. Because inevitably, I&#8217;ll be just in the middle of a thought when the computer shuts off, ten minutes later. I don&#8217;t actually *lose* anything, of course, because MacBooks are usually smart about keeping enough power to stay alive. *(Note: haven&#8217;t used anything else for a while; other platforms may do just as well. <acronym title="Your Mileage May Vary">YMMV</a>.)*</p>
<p>Still. It happened so much that I decided to do something about it:</p>
<div align="center" style="margin: -25px -45px;"><img src="http://danielbergey.com/motion/wp-content/uploads/2009/11/seriouslyplugin.png" alt="seriouslyplugin.png" border="0" width="500" height="233" style="border-width: 0;" /></div>
<p>I made a new text file, named it <code>"batterywarning"</code> and threw it in <code>/Applications/Scripts/</code> with the following contents:</p>
<p>	#!/usr/bin/env ruby</p>
<p>	`pmset -g batt` =~ /discharging; (\d+:(\d+)) remaining/;<br />
	if $1 &#038;& $1 < &#8216;0:10&#8217; then<br />
	  nums = %w{ zero one two three four five six seven eight nine ten }<br />
	  mins = nums[$2.to_i]&#160;? (nums[$2.to_i] +&#8221; minute&#8221;+ ($2==&#8217;01&#8217;&#160;? &#8221;&#160;: &#8216;s&#8217;))&#160;: $1<br />
	  exec &#8220;osascript -e &#8216;tell application &#34;AppleScript Runner&#34; to &#8220;+<br />
	    &#8220;display alert &#34;Seriously, go plug in your computer.&#34; &#8220;+<br />
	    &#8220;message &#34;There&rsquo;s only about &#8220;+ mins + &#8221; left! &#8220;+<br />
	    &#8220;How many times do you need to be told?&#34; as warning&#8217;&#8221;<br />
	end</p>
<p>The gist: when run, the script checks the current estimated remaining time on the battery. If it&#8217;s below 10 minutes (the point at which the native warning appears), it displays its own alert box warning the user of their procrastinatory folly. If there is more than 10 minutes remaining, it does nothing.</p>
<p>I made the script executable (<code>chmod +x /path/to/script</code>), and configured <code>launchd</code> to run it every minute by creating a plist named <code>"com.dbergey.batterywarning.plist"</code> in <code>~/Library/LaunchAgents/</code> thusly:</p>
<p>	<?xml version="1.0" encoding="UTF-8"?><br />
	<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"></p>
<plist version="1.0">
	<dict><br />
		<key>Label</key><br />
		<string>com.dbergey.batterywarning</string><br />
		<key>ProgramArguments</key><br />
		<array><br />
			<string>/Applications/Scripts/batterywarning</string><br />
		</array><br />
		<key>LowPriorityIO</key></p>
<true/>
		<key>StartInterval</key><br />
		<integer>60</integer><br />
	</dict>
	</plist>
<p>Then, from the command line, I did this to tell <code>launchd</code> about it:</p>
<p>	launchctl load ~/Library/LaunchAgents/com.dbergey.batterywarning.plist </p>
<p>And it worked! Hopefully I will be more proactive about plugging in when warned up to 10 times before shutoff. <img src='http://danielbergey.com/motion/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<div class="smartshare" style="display: none;"></div>]]></content:encoded>
			<wfw:commentRss>http://danielbergey.com/motion/2009/11/seriously-go-plug-in-your-computer/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	<slash:comments>1</slash:comments>
	</item>
		<item>
		<title>Made It</title>
		<link>http://danielbergey.com/motion/2009/08/made-it/</link>
		<comments>http://danielbergey.com/motion/2009/08/made-it/#comments</comments>
		<pubDate>Mon, 10 Aug 2009 03:58:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Family]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[driving]]></category>
		<category><![CDATA[forest]]></category>
		<category><![CDATA[google maps]]></category>
		<category><![CDATA[looking glass falls]]></category>
		<category><![CDATA[mt. vernon]]></category>
		<category><![CDATA[ohio]]></category>
		<category><![CDATA[south carolina]]></category>

		<guid isPermaLink="false">http://www.danielbergey.com/weblog/?p=659</guid>
		<description><![CDATA[Arrived in South Carolina after 10 hours of driving. My parents et al are still stuck in traffic, having left OH shortly after we did (stopped for dinner in Mt. Vernon, but still). I&#8217;m very glad we made it.
Google Maps took us all up and around some back roads that said something to the effect [...]]]></description>
			<content:encoded><![CDATA[<p>Arrived in South Carolina after 10 hours of driving. My parents <em>et al</em> are still stuck in traffic, having left OH shortly after we did (stopped for dinner in Mt. Vernon, but still). I&#8217;m very glad we made it.</p>
<p>Google Maps took us all up and around some back roads that said something to the effect of &#8220;15mph curves, 4200ft elevation, next 16 miles.&#8221; Got to see loads of forest and the <a href="http://www.romanticasheville.com/looking_glass_falls.htm">Looking Glass Falls</a> as we carefully blew by, but I think we&#8217;ll go back a different way, thank you very much.</p>
<div class="smartshare" style="display: none;"></div>]]></content:encoded>
			<wfw:commentRss>http://danielbergey.com/motion/2009/08/made-it/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<slash:comments>0</slash:comments>
	</item>
		<item>
		<title>Mr. &amp; Mrs. Timothy W. Bergey</title>
		<link>http://danielbergey.com/motion/2009/08/mr-mrs-timothy-w-bergey/</link>
		<comments>http://danielbergey.com/motion/2009/08/mr-mrs-timothy-w-bergey/#comments</comments>
		<pubDate>Sun, 09 Aug 2009 04:31:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Family]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[Love]]></category>
		<category><![CDATA[wedding]]></category>

		<guid isPermaLink="false">http://www.danielbergey.com/weblog/?p=657</guid>
		<description><![CDATA[Married!
]]></description>
			<content:encoded><![CDATA[<p>Married!</p>
<div class="smartshare" style="display: none;"></div>]]></content:encoded>
			<wfw:commentRss>http://danielbergey.com/motion/2009/08/mr-mrs-timothy-w-bergey/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	<slash:comments>3</slash:comments>
	</item>
		<item>
		<title>Wedding Rehearsal Day</title>
		<link>http://danielbergey.com/motion/2009/08/wedding-rehearsal-day/</link>
		<comments>http://danielbergey.com/motion/2009/08/wedding-rehearsal-day/#comments</comments>
		<pubDate>Sat, 08 Aug 2009 04:39:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Family]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[chlorine]]></category>
		<category><![CDATA[cooler]]></category>
		<category><![CDATA[ice]]></category>
		<category><![CDATA[lasagna]]></category>
		<category><![CDATA[pool]]></category>
		<category><![CDATA[rehearsal]]></category>
		<category><![CDATA[toe]]></category>
		<category><![CDATA[wedding]]></category>

		<guid isPermaLink="false">http://www.danielbergey.com/weblog/?p=655</guid>
		<description><![CDATA[Too late to write much tonight.
Suffice to say the wedding rehearsal went well, the lasagna and walnut pound cake was awesome, and after we bought a new cooler and 44 lbs of ice in which to put all the leftovers, it fell out of the car onto Mom&#8217;s toe. Yeah, the very same one in [...]]]></description>
			<content:encoded><![CDATA[<p>Too late to write much tonight.</p>
<p>Suffice to say the wedding rehearsal went well, the lasagna and walnut pound cake was awesome, and after we bought a new cooler and 44 lbs of ice in which to put all the leftovers, it fell out of the car onto Mom&#8217;s toe. Yeah, the very same one in the &#8220;boot&#8221;. Not good.</p>
<p>But she put ice on it, and the rest of us all had a good time in the hotel pool until we all got overwhelmed and/or coughy and/or asthmatic from the chlorine and steam.</p>
<div class="smartshare" style="display: none;"></div>]]></content:encoded>
			<wfw:commentRss>http://danielbergey.com/motion/2009/08/wedding-rehearsal-day/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<slash:comments>0</slash:comments>
	</item>
		<item>
		<title>Concrete</title>
		<link>http://danielbergey.com/motion/2009/08/concrete/</link>
		<comments>http://danielbergey.com/motion/2009/08/concrete/#comments</comments>
		<pubDate>Fri, 07 Aug 2009 05:15:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Family]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[concrete]]></category>
		<category><![CDATA[toe]]></category>

		<guid isPermaLink="false">http://www.danielbergey.com/weblog/?p=653</guid>
		<description><![CDATA[Today my family (parents + siblings remaining at home) was in a minor car accident. Fortunately, there were only minor injuries.
Apparently, a 4-inch-ish piece of concrete struck the windshield of their van while they were traveling to Ohio for my brother&#8217;s wedding on Saturday. The glass cut my mom&#8217;s arms all up, and the projectile [...]]]></description>
			<content:encoded><![CDATA[<p>Today my family (parents + siblings remaining at home) was in a minor car accident. Fortunately, there were only minor injuries.</p>
<p>Apparently, a 4-inch-ish piece of concrete struck the windshield of their van while they were traveling to Ohio for my brother&#8217;s wedding on Saturday. The glass cut my mom&#8217;s arms all up, and the projectile inconveniently struck her in the toe, which is bruised and jammed now.</p>
<p>So if you see her this weekend, that&#8217;s why she has a big boot on her foot.</p>
<div class="smartshare" style="display: none;"></div>]]></content:encoded>
			<wfw:commentRss>http://danielbergey.com/motion/2009/08/concrete/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	<slash:comments>1</slash:comments>
	</item>
		<item>
		<title>New Theme: Oulipo</title>
		<link>http://danielbergey.com/motion/2009/08/new-theme-oulipo/</link>
		<comments>http://danielbergey.com/motion/2009/08/new-theme-oulipo/#comments</comments>
		<pubDate>Thu, 06 Aug 2009 02:48:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[mignolo]]></category>
		<category><![CDATA[oulipo]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.danielbergey.com/weblog/?p=647</guid>
		<description><![CDATA[Changed my WordPress theme to Oulipo by Andrea Mignolo. I like it because it has nice typography and is still rather minimalist.
I&#8217;ve played with some similar ideas over the months/years, but could never seem to get anything together. I don&#8217;t have time to make a complete WordPress theme these days anyway.  
You might need [...]]]></description>
			<content:encoded><![CDATA[<p>Changed my WordPress theme to <a href="http://andreamignolo.com/oulipo/">Oulipo</a> by <a href="http://andreamignolo.com/">Andrea Mignolo</a>. I like it because it has nice typography and is still rather minimalist.</p>
<p>I&#8217;ve played with some similar ideas over the months/years, but could never seem to get anything together. I don&#8217;t have time to make a complete WordPress theme these days anyway. <img src='http://danielbergey.com/motion/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>You might need to use <a href="http://getfirefox.com/">FireFox 3.5</a> or <a href="http://apple.com/safari/">Safari 4</a> to see it all. I haven&#8217;t looked at it in Internet Explorer yet.</p>
<div class="smartshare" style="display: none;"></div>]]></content:encoded>
			<wfw:commentRss>http://danielbergey.com/motion/2009/08/new-theme-oulipo/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	<slash:comments>2</slash:comments>
	</item>
		<item>
		<title>Desktop Pictures for Stacked Displays</title>
		<link>http://danielbergey.com/motion/2009/08/desktop-pictures-for-stacked-displays/</link>
		<comments>http://danielbergey.com/motion/2009/08/desktop-pictures-for-stacked-displays/#comments</comments>
		<pubDate>Wed, 05 Aug 2009 03:45:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[desktop pictures]]></category>
		<category><![CDATA[stacked displays]]></category>
		<category><![CDATA[wallpaper]]></category>

		<guid isPermaLink="false">http://www.danielbergey.com/weblog/?p=645</guid>
		<description><![CDATA[These days I set my laptop directly below my 20&#8221; display, which is set up on some books. I really like the setup, as I don&#8217;t have to move my head around to interact with the second display; I can just glance down or straight ahead.
I can&#8217;t find any nice desktop pictures, though &#8230; all [...]]]></description>
			<content:encoded><![CDATA[<p>These days I set my laptop directly below my 20&#8221; display, which is set up on some books. I really like the setup, as I don&#8217;t have to move my head around to interact with the second display; I can just glance down or straight ahead.</p>
<p>I can&#8217;t find any nice desktop pictures, though &#8230; all the dual-display desktops are for side-by-side configurations. There are &#8220;vertical&#8221; desktop pictures, too, but they are designed for when you have your display turned 90&deg;.</p>
<p>Has anyone ever seen desktop pictures designed for stacked displays?</p>
<div class="smartshare" style="display: none;"></div>]]></content:encoded>
			<wfw:commentRss>http://danielbergey.com/motion/2009/08/desktop-pictures-for-stacked-displays/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<slash:comments>0</slash:comments>
	</item>
		<item>
		<title>Reggy on Bodega</title>
		<link>http://danielbergey.com/motion/2009/08/reggy-on-bodega/</link>
		<comments>http://danielbergey.com/motion/2009/08/reggy-on-bodega/#comments</comments>
		<pubDate>Wed, 05 Aug 2009 03:01:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[bodega]]></category>
		<category><![CDATA[reggy]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://www.danielbergey.com/weblog/?p=641</guid>
		<description><![CDATA[My friend Sam made something helpful a couple of years ago. I still use it from time to time to test regular expression matching.

Now Reggy is on Bodega, your new corner store for Mac apps. Check &#8216;em both out.
]]></description>
			<content:encoded><![CDATA[<p>My friend <a href="http://samsouder.com/">Sam</a> made <a href="http://reggyapp.com/">something helpful</a> a couple of years ago. I still use it from time to time to test regular expression matching.</p>
<p><img src="http://www.danielbergey.com/weblog/wp-content/uploads/2009/08/reggy_on_bodega.png" alt="reggy_on_bodega.png" border="0" width="455" height="375" /></p>
<p>Now <a href="http://reggyapp.com/">Reggy</a> is on <a href="http://appbodega.com/">Bodega</a>, your new corner store for Mac apps. Check &#8216;em both out.</p>
<div class="smartshare" style="display: none;"></div>]]></content:encoded>
			<wfw:commentRss>http://danielbergey.com/motion/2009/08/reggy-on-bodega/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<slash:comments>0</slash:comments>
	</item>
		<item>
		<title>You&#039;re Doing It Wrong</title>
		<link>http://danielbergey.com/motion/2009/08/youre-doing-it-wrong/</link>
		<comments>http://danielbergey.com/motion/2009/08/youre-doing-it-wrong/#comments</comments>
		<pubDate>Tue, 04 Aug 2009 03:23:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Bible]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[youredoingitwrong]]></category>

		<guid isPermaLink="false">http://www.danielbergey.com/weblog/?p=638</guid>
		<description><![CDATA[If you&#8217;ve ever said to yourself, &#8220;I&#8217;m a better Christian than {$person} because I &#8230;&#8221;
- have a daily &#8220;quiet time&#8221;
- have certain dress standards
- speak in tongues
- don&#8217;t go to movies
- have been baptized
- don&#8217;t drink alcohol
- don&#8217;t listen to rock music
- never miss a church service
&#8230; then [you&#8217;re doing it wrong](http://icanhascheezburger.com/2007/04/28/youre-doing-it-wrong-2/).
P.S. I used to [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;ve ever said to yourself, &#8220;I&#8217;m a better Christian than <em>{$person}</em> because I &#8230;&#8221;</p>
<p>- have a daily &#8220;quiet time&#8221;<br />
- have certain dress standards<br />
- speak in tongues<br />
- don&#8217;t go to movies<br />
- have been baptized<br />
- don&#8217;t drink alcohol<br />
- don&#8217;t listen to rock music<br />
- never miss a church service</p>
<p>&#8230; then [you&#8217;re doing it wrong](http://icanhascheezburger.com/2007/04/28/youre-doing-it-wrong-2/).</p>
<p>P.S. I used to think some of these things.</p>
<p><b>Update:</b> Some people have also had trouble with these:</p>
<p>- don&#8217;t eat meat that has been sacrificed to an idol<br />
- don&#8217;t eat with Gentiles<br />
- am circumcised<br />
- was baptized by Paul<br />
- was baptized by Peter<br />
- was baptized by Apollos</p>
<div class="smartshare" style="display: none;"></div>]]></content:encoded>
			<wfw:commentRss>http://danielbergey.com/motion/2009/08/youre-doing-it-wrong/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	<slash:comments>2</slash:comments>
	</item>
		<item>
		<title>Spiritual Influences and Education</title>
		<link>http://danielbergey.com/motion/2009/08/spiritual-influences-and-education/</link>
		<comments>http://danielbergey.com/motion/2009/08/spiritual-influences-and-education/#comments</comments>
		<pubDate>Mon, 03 Aug 2009 04:03:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Bible]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[brian onken]]></category>
		<category><![CDATA[charlie boyd]]></category>
		<category><![CDATA[emergent church]]></category>
		<category><![CDATA[engage community church]]></category>
		<category><![CDATA[jon hand]]></category>
		<category><![CDATA[science]]></category>
		<category><![CDATA[tim keller]]></category>
		<category><![CDATA[truth]]></category>

		<guid isPermaLink="false">http://www.danielbergey.com/weblog/?p=625</guid>
		<description><![CDATA[Some of my spiritual influences and education over the past two years:
- From Charlie Boyd I learned not to let anyone tell me I need to do anything special or extra to merit God&#8217;s favor or attention. Working overtime to &#8220;keep all the rules&#8221; is not only unnecessary, but dangerous. (See the entire book of [...]]]></description>
			<content:encoded><![CDATA[<p>Some of my spiritual influences and education over the past two years:</p>
<p>- From <strong><a href="http://southsidefellowship.org/">Charlie Boyd</a></strong> I learned not to let anyone tell me I need to do anything special or extra to merit God&#8217;s favor or attention. Working overtime to &#8220;keep all the rules&#8221; is not only unnecessary, but dangerous. <cite>(See <a href="http://www.gnpcb.org/esv/search/?q=gal+1-6">the entire book of Galatians</a>.)</cite></p>
<p>- From <strong><a href="http://summathetes.wordpress.com/">Brian Onken</a></strong> I learned that God doesn&#8217;t need my help to accomplish His purposes. I&#8217;m welcome to come along for the ride (and even help out), but God will get done what He wants to get done, with or without me. (<a href="http://en.wikipedia.org/wiki/Calvinism">Calvin</a> wasn&#8217;t all wrong.)</p>
<p>- From <strong><a href="http://amzn.com/0525950494/">Tim Keller</a></strong> I learned that it&#8217;s okay to believe that Science just might have the answers, and to speculate that <a href="http://www.gnpcb.org/esv/search/?q=gen%201">Genesis 1</a> just might be more poetry than narrative.</p>
<p>- From <strong><a href="http://engagecommunitychurch.com/">Jon Hand</a></strong> I learned that all truth is God&#8217;s truth. If something exhibits love, beauty or truth, God can be found therein, regardless if it is labeled Sacred or Secular. And I learned it&#8217;s okay to ask the big questions, the REALLY big ones, questions that might earn me funny looks in most churches.</p>
<p>I also learned from Jon and others that I didn&#8217;t have to be a Conservative to be a Christian. It&#8217;s okay to disagree with the evangelical world&#8217;s consensus on social issues like poverty, war, and homosexuality.</p>
<p>Deconstructing and rebuilding one&#8217;s faith is a normal, even necessary part of spirituality. Never stop asking yourself why you believe what you believe, and don&#8217;t be afraid to change it if necessary.</p>
<p>So. I think I&#8217;ve become more <a href="http://en.wikipedia.org/wiki/Emerging_church">Emergent</a> than anything else these days, with a dash of the <a href="http://en.wikipedia.org/wiki/Protestant_Reformation">Reformation</a> thrown in for good measure. In the next few months, <a href="http://fairlyordinary.com/">Jennifer</a> and I hope to find a community here in Ann Arbor in which to continue our spiritual conversation.</p>
<div class="smartshare" style="display: none;"></div>]]></content:encoded>
			<wfw:commentRss>http://danielbergey.com/motion/2009/08/spiritual-influences-and-education/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	<slash:comments>4</slash:comments>
	</item>
	</channel>
</rss>
