<?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>Dear Mister Jones</title>
	<atom:link href="http://www.dearmisterjones.com/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dearmisterjones.com/wordpress</link>
	<description>Here&#039;s 2 cents, don&#039;t spend it all at once</description>
	<lastBuildDate>Sat, 19 May 2012 04:13:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<item>
		<title>Making Moolah as a Good Teacher</title>
		<link>http://www.dearmisterjones.com/wordpress/2012/05/18/making-moolah-as-a-good-teacher/</link>
		<comments>http://www.dearmisterjones.com/wordpress/2012/05/18/making-moolah-as-a-good-teacher/#comments</comments>
		<pubDate>Sat, 19 May 2012 04:10:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Pensive Paul]]></category>

		<guid isPermaLink="false">http://www.dearmisterjones.com/wordpress/?p=246</guid>
		<description><![CDATA[I&#8217;m back, miss me?  Seriously, it has been a long time since I&#8217;ve written a blog post.  I&#8217;ve been busy, that&#8217;s for sure.  Life&#8217;s been passing me by and all that &#8211; but I recently was re-motivated to share a few thoughts online with y&#8217;all.  Face it, writing and putting thoughts down on paper (sorta) [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m back, miss me?  Seriously, it has been a long time since I&#8217;ve written a blog post.  I&#8217;ve been busy, that&#8217;s for sure.  Life&#8217;s been passing me by and all that &#8211; but I recently was re-motivated to share a few thoughts online with y&#8217;all.  Face it, writing and putting thoughts down on paper (sorta) is therapeutic, whether anyone&#8217;s reading them or not.  So I&#8217;m going to try to get back into the habit of doing this at least monthly, and who knows, maybe even more often.</p>
<p>So I recently read this article about teachers making money: <a href="http://techcrunch.com/2012/05/17/teachers-makin-moola-on-the-web/">http://techcrunch.com/2012/05/17/teachers-makin-moola-on-the-web/</a>.  From that I was led to the site of <a title="Udemy - teach and earn" href="http://www.udemy.com/">Udemy</a>.  Holy cow, is it a great idea!  I don&#8217;t know that I consider myself a great teacher, but I do enjoy it &#8211; so this may be a tool I&#8217;ll be spending some time on in the future.</p>
<p>A few of my good reads out on the web lately:<br />
<a title="Ask Mormon Girl - Joanna Brooks" href="http://askmormongirl.wordpress.com/">AskMormonGirl </a>- really drew me in with some of the posts I found here, I can&#8217;t get enough of the comments that the readers leave &#8211; very thought-provoking.<br />
<a title="Passive Income Series" href="http://www.stevepavlina.com/blog/2012/04/passive-income-series/">StevePavlina.com&#8217;s series on Passive Income</a> &#8211; Although he has a lot of strange ideas on other things, when he puts his mind to writing a well thought-out series on something, he does an amazing job of writing in a sequence and style that just makes sense and sticks with you.<br />
<a title="Blog of Seth Godin" href="http://sethgodin.typepad.com/seths_blog/">Seth Godin&#8217;s blog</a> &#8211; This is the kind of stuff that you like to fall to sleep reading &#8211; usually thought-provoking and inspiring.</p>
<p>TTFN</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dearmisterjones.com/wordpress/2012/05/18/making-moolah-as-a-good-teacher/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Move An svn Repository</title>
		<link>http://www.dearmisterjones.com/wordpress/2009/09/17/how-to-move-an-svn-repository/</link>
		<comments>http://www.dearmisterjones.com/wordpress/2009/09/17/how-to-move-an-svn-repository/#comments</comments>
		<pubDate>Thu, 17 Sep 2009 14:35:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Technical Tom]]></category>
		<category><![CDATA[command line]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[scripting]]></category>

		<guid isPermaLink="false">http://www.dearmisterjones.com/wordpress/?p=161</guid>
		<description><![CDATA[On the source system, run: svnadmin dump /path/to/repository &#62; repository-name.dmp Copy the dump file to the new server.  There, create a new repository to house the dumped information: cd /path/to/new/repository svnadmin create repository-name svnadmin load repository-name &#60; repository-name.dmp Now, if you have a project that you checked out from the old location, that you want [...]]]></description>
			<content:encoded><![CDATA[<p>On the source system, run:</p>
<p><strong>svnadmin dump /path/to/repository &gt; repository-name.dmp</strong></p>
<p>Copy the dump file to the new server.  There, create a new repository to house the dumped information:</p>
<p><strong>cd /path/to/new/repository</strong></p>
<p><strong>svnadmin create repository-name</strong></p>
<p><strong>svnadmin load repository-name &lt; repository-name.dmp</strong></p>
<p>Now, if you have a project that you checked out from the old location, that you want to point to the new location, run the following command (assumes you&#8217;re located in the root of the directory housing the checkout you want to switch:</p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<pre class="brush: plain; title: ;">svn switch --relocate svn+ssh://old/path  svn+ssh://new/path . </pre>
<p><strong> </strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dearmisterjones.com/wordpress/2009/09/17/how-to-move-an-svn-repository/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft has removed the 10 half-open TCP connections limit</title>
		<link>http://www.dearmisterjones.com/wordpress/2009/06/10/157/</link>
		<comments>http://www.dearmisterjones.com/wordpress/2009/06/10/157/#comments</comments>
		<pubDate>Wed, 10 Jun 2009 14:24:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Technical Tom]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.dearmisterjones.com/wordpress/?p=157</guid>
		<description><![CDATA[I received the following from my friend, &#8216;Andrew from Vancouver&#8217;.  Pretty interesting&#8230; ***** I just noted that in the Windows Server 2008 and Vista SP2 &#8220;What&#8217;s significant&#8221; document, that Microsoft has removed the 10 half-open TCP connections limit that they introduced to impede worms and bots on Windows XP SP2. http://technet.microsoft.com/en-us/library/dd335036.aspx &#8220;SP2 removes the limit [...]]]></description>
			<content:encoded><![CDATA[<div><span style="color: #000000;"><span><span style="font-size: x-small; font-family: Arial;">I received the following from my friend, &#8216;Andrew from Vancouver&#8217;.  Pretty interesting&#8230;</span></span></span></div>
<div><span style="color: #000000;">*****<br />
</span></div>
<div><span style="color: #000000;"><span><span style="font-size: x-small; font-family: Arial;">I just  noted that in the Windows Server 2008 and Vista SP2 &#8220;What&#8217;s significant&#8221;  document, that Microsoft has removed the 10 half-open TCP connections limit that  they introduced to impede worms and bots on Windows XP SP2.</span></span></span></div>
<div><span style="color: #000000;"> </span></div>
<div><span style="color: #000000;"><span><span style="font-size: x-small; font-family: Arial;"><a href="http://technet.microsoft.com/en-us/library/dd335036.aspx" target="_blank">http://technet.microsoft.com/en-us/library/dd335036.aspx</a></span></span></span></div>
<div><span style="color: #000000;"> </span></div>
<div><span style="color: #000000;"><span><span style="font-size: x-small; font-family: Arial;">&#8220;SP2  removes the limit of 10 half open outbound TCP connections. By default, SP2 has  no limit on the number of half open outbound TCP connections.  &#8220;</span></span></span></div>
<div><span style="color: #000000;"> </span></div>
<div><span style="color: #000000;"><span><span style="font-size: x-small; font-family: Arial;">And of  course, some may want to turn it back on:</span></span></span></div>
<div><span style="color: #000000;"> </span></div>
<div><span style="color: #000000;"><span><span style="font-size: x-small; font-family: Arial;"><a href="http://support.microsoft.com/kb/969710" target="_blank">http://support.microsoft.com/kb/969710</a></span></span></span></div>
<div><span style="color: #000000;"> </span></div>
<div><span style="color: #000000;"><span><span style="font-size: x-small; font-family: Arial;">I  assume that they&#8217;ve decided their SDL is working and Vista is much less abused  by botnets than XP was:</span></span></span></div>
<div><span style="color: #000000;"> </span></div>
<div><span style="color: #000000;"><span><span style="font-size: x-small; font-family: Arial;"><a href="http://blogs.technet.com/mmpc/archive/2009/04/21/malware-distribution-across-operating-systems.aspx" target="_blank">http://blogs.technet.com/mmpc/archive/2009/04/21/malware-distribution-across-operating-systems.aspx</a></span></span></span></div>
<div><span style="color: #000000;"> </span></div>
<div><span style="color: #000000;"><span><span style="font-size: x-small; font-family: Arial;">&#8230;  and so they&#8217;ve decided to stop getting beaten up by bloggers and tech forum  posers over this artificial limit&#8230; which probably suckers  people into downloading dubious &#8220;patches&#8221; to increase their P2P download  speeds, which, since they&#8217;re installed deliberately by the sucker could be any  kind of malware instead.</span></span></span></div>
<div>*****</div>
<div>Thanks for sharing, Andrew!</div>
]]></content:encoded>
			<wfw:commentRss>http://www.dearmisterjones.com/wordpress/2009/06/10/157/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Scratchy Tags</title>
		<link>http://www.dearmisterjones.com/wordpress/2009/05/13/scratchy-tags/</link>
		<comments>http://www.dearmisterjones.com/wordpress/2009/05/13/scratchy-tags/#comments</comments>
		<pubDate>Wed, 13 May 2009 12:17:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Random Roy]]></category>
		<category><![CDATA[clothing]]></category>
		<category><![CDATA[fashion]]></category>
		<category><![CDATA[scratchy tags]]></category>

		<guid isPermaLink="false">http://www.dearmisterjones.com/wordpress/?p=154</guid>
		<description><![CDATA[I&#8217;d like to shake the hand of whoever did away with the scratchy tags in the back of the neck of T-Shirts.  There was never a good solution to them.  If you cut them really really short with a pair of scissors, you could still feel them.  You&#8217;d spend the rest of your wearing experience [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;d like to shake the hand of whoever did away with the scratchy tags in the back of the neck of T-Shirts.  There was never a good solution to them.  If you cut them really really short with a pair of scissors, you could still feel them.  You&#8217;d spend the rest of your wearing experience with that shirt thinking you should have just ripped out the tag &#8211; but then it was too short to do anything about it.  If you ripped them out &#8211; you&#8217;d almost always end up with some part of your collar detached from the rest of the shirt.</p>
<p>The only problem I have now is that occasionally I&#8217;ll discover partway through my day that I&#8217;m wearing my shirt backwards.  This little sacrifice in fashion is a small price to pay for comfort.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dearmisterjones.com/wordpress/2009/05/13/scratchy-tags/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Full Width Web Pages &#8211; or &#8211; Margins are Your Friend</title>
		<link>http://www.dearmisterjones.com/wordpress/2009/03/20/full-width-web-pages-or-margins-are-your-friend/</link>
		<comments>http://www.dearmisterjones.com/wordpress/2009/03/20/full-width-web-pages-or-margins-are-your-friend/#comments</comments>
		<pubDate>Fri, 20 Mar 2009 16:15:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Random Roy]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[layout]]></category>
		<category><![CDATA[white space]]></category>

		<guid isPermaLink="false">http://www.dearmisterjones.com/wordpress/?p=151</guid>
		<description><![CDATA[One of my pet peeves is when I visit a web site and it automatically takes up the entire width of the screen.  I have a rather large monitor (you&#8217;d be jealous if you saw it) &#8211; so when a block of text actually stretches completely from the left to the right, unless I&#8217;m sitting [...]]]></description>
			<content:encoded><![CDATA[<p>One of my pet peeves is when I visit a web site and it automatically takes up the entire width of the screen.  I have a rather large monitor (you&#8217;d be jealous if you saw it) &#8211; so when a block of text actually stretches completely from the left to the right, unless I&#8217;m sitting far back from the screen, I actually have to <em>move my head</em> from side to side to read it.  This requires much more effort than simply moving my eyes from left to right.  I&#8217;m not sure what it is about it that actually bugs me so much &#8211; I suppose I like some whitespace around the blocks of text that I read.  Otherwise I feel a feeling akin to claustrophobia.  I wonder what a word would be to describe it &#8211; zeromargiphobia? overwide-a-phobia?</p>
<p>Just needed to rant for a moment.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dearmisterjones.com/wordpress/2009/03/20/full-width-web-pages-or-margins-are-your-friend/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Search and Replace on Multiple Files</title>
		<link>http://www.dearmisterjones.com/wordpress/2009/03/13/search-and-replace-on-multiple-files/</link>
		<comments>http://www.dearmisterjones.com/wordpress/2009/03/13/search-and-replace-on-multiple-files/#comments</comments>
		<pubDate>Fri, 13 Mar 2009 16:42:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Technical Tom]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[scripts]]></category>

		<guid isPermaLink="false">http://www.dearmisterjones.com/wordpress/?p=148</guid>
		<description><![CDATA[Recently one of my hosting providers went and changed the path to my home directory without telling me.  So, I had to go through a gajillion files and modify a path to reflect the changes.  I thought I&#8217;d go ahead and share how I did that for anyone out there that has a similar need. [...]]]></description>
			<content:encoded><![CDATA[<p>Recently one of my hosting providers went and changed the path to my home directory without telling me.  So, I had to go through a <em>gajillion </em>files and modify a path to reflect the changes.  I thought I&#8217;d go ahead and share how I did that for anyone out there that has a similar need.</p>
<p>There are several ways to accomplish this &#8211; but this is how I like to do it (this is from a linux command shell):</p>
<p><strong>find . -name somefile -exec perl -pi.bliki -e &#8216;s/textToFind/replacement/g&#8217; {} \;</strong></p>
<p>The above command uses the find command, starting from the current location (.), looking for files named &#8216;somefile&#8217; (-name somefile), and every time it finds one, it runs the command following the -exec parameter.  The command following the -exec parameter is a perl one-liner that backs up the file it&#8217;s about to modify (with a .bliki extension, I just try to pick something I&#8217;m sure will not result in overwriting a legitimate file), and then does a global search and replace of textToFind with replacement.  In the above command, the {} is where find inserts the current file it has found.  You must backslash the semi-colon at the end so that the shell doesn&#8217;t interpret it and leaves it for use by the find -exec command.</p>
<p>Once you&#8217;ve completed the search and replace, you use the following command to go through and remove all of the backup files created with the .bliki extension.</p>
<p><strong>find . -name somefile.bliki -exec rm {} \;</strong></p>
<p>Hope this makes sense?</p>
<p>Post questions if you need clarification on anything.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dearmisterjones.com/wordpress/2009/03/13/search-and-replace-on-multiple-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Understanding the -GRY riddle</title>
		<link>http://www.dearmisterjones.com/wordpress/2009/01/26/understanding-the-gry-riddle/</link>
		<comments>http://www.dearmisterjones.com/wordpress/2009/01/26/understanding-the-gry-riddle/#comments</comments>
		<pubDate>Tue, 27 Jan 2009 05:47:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Random Roy]]></category>
		<category><![CDATA[riddles]]></category>

		<guid isPermaLink="false">http://www.dearmisterjones.com/wordpress/?p=145</guid>
		<description><![CDATA[I enjoy riddles.  By happenstance, I happened upon the (in)famous -gry riddle, but luckily before I got too carried away searching for an answer I found an essay written by the Word Detective on this very puzzle. The key to successfully finding an answer to this wriddle is in getting the wording correct: Angry and [...]]]></description>
			<content:encoded><![CDATA[<p>I enjoy riddles.  By happenstance, I happened upon the (in)famous -gry riddle, but luckily before I got too carried away searching for an answer I found an essay written by the <a href="http://www.word-detective.com">Word Detective </a>on this very puzzle.</p>
<p>The key to successfully finding an answer to this wriddle is in getting the wording correct:</p>
<p><strong>Angry and hungry are two words that end in &#8216;-gry&#8217;. There are three words in the English language. What is the third word? Everyone knows what it means and everyone uses it every day. Look closely and I have already given you the third word. What is it? </strong></p>
<p>For the answer, see this <a href="http://www.word-detective.com/gry.html" target="_blank">essay</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dearmisterjones.com/wordpress/2009/01/26/understanding-the-gry-riddle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unix Utilities on Windows</title>
		<link>http://www.dearmisterjones.com/wordpress/2009/01/08/unix-utilities-on-windows/</link>
		<comments>http://www.dearmisterjones.com/wordpress/2009/01/08/unix-utilities-on-windows/#comments</comments>
		<pubDate>Thu, 08 Jan 2009 15:18:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Technical Tom]]></category>
		<category><![CDATA[batch]]></category>
		<category><![CDATA[scripting]]></category>
		<category><![CDATA[unix]]></category>
		<category><![CDATA[win32]]></category>

		<guid isPermaLink="false">http://www.dearmisterjones.com/wordpress/?p=140</guid>
		<description><![CDATA[Feeling crippled on Windows by not having access to such commands as grep, awk, tail, less &#8230; ?  Go here to get a copy of these utilities ported to the Win32 platform.  They&#8217;ve made my life much easier when I&#8217;m trying to do some quick command-line trickery on a Windows box.]]></description>
			<content:encoded><![CDATA[<p>Feeling crippled on Windows by not having access to such commands as grep, awk, tail, less &#8230; ?  Go <a href="http://sourceforge.net/projects/unxutils" target="_blank">here </a>to get a copy of these utilities ported to the Win32 platform.  They&#8217;ve made my life <em>much</em> easier when I&#8217;m trying to do some quick command-line trickery on a Windows box.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dearmisterjones.com/wordpress/2009/01/08/unix-utilities-on-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adobe AIR &#8211; applicationStorageDirectory &#8211; where is it?</title>
		<link>http://www.dearmisterjones.com/wordpress/2009/01/07/adobe-air-applicationstoragedirectory-where-is-it/</link>
		<comments>http://www.dearmisterjones.com/wordpress/2009/01/07/adobe-air-applicationstoragedirectory-where-is-it/#comments</comments>
		<pubDate>Wed, 07 Jan 2009 17:01:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Technical Tom]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[air]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[scripting]]></category>

		<guid isPermaLink="false">http://www.dearmisterjones.com/wordpress/?p=133</guid>
		<description><![CDATA[When progamming an AIR application, you may want to make use of the applicationStorageDirectory available via the flash.filesystem package to store temporary files/folders.  You can find where your system is storing these files by doing something like the following: var f:File = File.applicationStorageDirectory.resolvePath(&#8220;Test.txt&#8221;); trace(f.nativePath + &#8216; is where my file is stored&#8217;);]]></description>
			<content:encoded><![CDATA[<p>When progamming an AIR application, you may want to make use of the applicationStorageDirectory available via the flash.filesystem package to store temporary files/folders.  You can find where your system is storing these files by doing something like the following:</p>
<p>var f:File = File.applicationStorageDirectory.resolvePath(&#8220;Test.txt&#8221;);<br />
trace(f.nativePath + &#8216; is where my file is stored&#8217;);</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dearmisterjones.com/wordpress/2009/01/07/adobe-air-applicationstoragedirectory-where-is-it/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reading Another&#8217;s Words is a Gift to the Author</title>
		<link>http://www.dearmisterjones.com/wordpress/2008/10/17/what-should-i-do-with-my-life/</link>
		<comments>http://www.dearmisterjones.com/wordpress/2008/10/17/what-should-i-do-with-my-life/#comments</comments>
		<pubDate>Sat, 18 Oct 2008 05:32:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Pensive Paul]]></category>
		<category><![CDATA[writing]]></category>

		<guid isPermaLink="false">http://www.dearmisterjones.com/wordpress/?p=116</guid>
		<description><![CDATA[I recently read an excellent article written by Po Bronson entitled, &#8216;What Should I Do With My Life?&#8216;  It&#8217;s an excerpt/summary of a book of the same name.  I don&#8217;t recall when I first ran across the article, but I bookmarked it under my &#8220;read this later&#8221; folder, because it was too long to digest [...]]]></description>
			<content:encoded><![CDATA[<p>I recently read an excellent article written by Po Bronson entitled, &#8216;<a href="http://www.fastcompany.com/magazine/66/mylife.html" target="_blank">What Should I Do With My Life?</a>&#8216;  It&#8217;s an excerpt/summary of a book of the same name.  I don&#8217;t recall when I first ran across the article, but I bookmarked it under my &#8220;read this later&#8221; folder, because it was too long to digest in a short 10 minute sitting.  Well, approximately 3 months later, I have finally returned and have read the entire article.  It was very good.  I don&#8217;t know what to do with <em>my</em> life yet, but I took great solace in reading Po Bronson express how others have gone about finding the answer to that question for themselves.</p>
<p>At any rate, I enjoyed the article so much I wanted to find out more about the author, so I meandered over to his <a href="http://www.pobronson.com/" target="_blank">web page</a>, and read Po&#8217;s basic philosophy on writing.  He closes with the <a href="http://www.pobronson.com/index_all_about_po.htm" target="_blank">following paragraph</a>:</p>
<p><span style="font-size: x-small; font-family: Georgia;">&#8220;I think when a reader reads a whole book &#8211; which takes  six to ten hours &#8211; that&#8217;s kind of a gift to the author. The gift of close,  undivided attention. To who else do we listen so closely for eight straight  hours? And when readers give that gift to me, I&#8217;m grateful for it.&#8221;</span></p>
<p>Amen to that.  When you consider that everyone has limitless choices available when it comes to reading material these days &#8211; it truly is a gift when someone chooses to spend time absorbing yours.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dearmisterjones.com/wordpress/2008/10/17/what-should-i-do-with-my-life/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

