<?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>jduck.net &#187; Uncategorized</title>
	<atom:link href="http://jduck.net/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://jduck.net</link>
	<description></description>
	<lastBuildDate>Fri, 02 Jul 2010 13:01:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>5 Dangerous things you should let your kids do.</title>
		<link>http://jduck.net/2008/01/08/5-dangerous-things-you-should-let-your-kids-do/</link>
		<comments>http://jduck.net/2008/01/08/5-dangerous-things-you-should-let-your-kids-do/#comments</comments>
		<pubDate>Tue, 08 Jan 2008 14:43:55 +0000</pubDate>
		<dc:creator>Jonah</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[kids]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://jduck.net/2008/01/08/5-dangerous-things-you-should-let-your-kids-do/</guid>
		<description><![CDATA[Gever Tulley has a great video about the sort of dangerous things kids need to do when growing up. It is nice to see this kind of thing. Its a breath of fresh air from the fear society we live in. On a related note, kids don&#8217;t get the freedom to go out walking and [...]]]></description>
			<content:encoded><![CDATA[<p>Gever Tulley has a <a href="http://www.ted.com/index.php/talks/view/id/202">great video</a> about the sort of dangerous things kids need to do when growing up.  It is nice to see this kind of thing.  Its a breath of fresh air from the fear society we live in.  On a related note, kids don&#8217;t get the freedom to <a href="http://www.dailymail.co.uk/pages/live/articles/news/news.html?in_article_id=462091&#038;in_page_id=1770">go out walking and exploring</a> much anymore.</p>
]]></content:encoded>
			<wfw:commentRss>http://jduck.net/2008/01/08/5-dangerous-things-you-should-let-your-kids-do/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Scanning with sane&#8217;s scanimage from an ADF scanner to PDF and OCRed Text</title>
		<link>http://jduck.net/2008/01/05/ocr-scanning/</link>
		<comments>http://jduck.net/2008/01/05/ocr-scanning/#comments</comments>
		<pubDate>Sat, 05 Jan 2008 17:34:21 +0000</pubDate>
		<dc:creator>Jonah</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[hacks]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[scanning]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://jduck.net/2008/01/05/ocr-scanning/</guid>
		<description><![CDATA[Using libsane and tesseract, you can scan from an ADF (or non ADF) scanner in Ubuntu 7.10 to a PDF and OCR&#8217;ed text document with a few easy steps. First we need to make sure we have the necessary packages installed. apt-get install tesseract-ocr sane-utils The tesseract-ocr package gives us a utility called tesseract which [...]]]></description>
			<content:encoded><![CDATA[<p>Using libsane and tesseract, you can scan from an ADF (or non ADF) scanner in Ubuntu 7.10 to a PDF and OCR&#8217;ed text document with a few easy steps.</p>
<p>First we need to make sure we have the necessary packages installed.</p>
<pre>
apt-get install tesseract-ocr sane-utils
</pre>
<p><span id="more-110"></span></p>
<p>The tesseract-ocr package gives us a utility called tesseract which takes a TIFF file as input and will output the OCR&#8217;d .txt file of the tiff.</p>
<pre>
tesseract my.tif output
</pre>
<p>Now we need a command line method to grab the TIFF, sane-utils comes to the rescue.  The command &#8220;scanimage&#8221; from sane will let us do that.  It is a great little utility that I recommend reading up on to learn more about its features and options, as they may vary based on the type of scanner you have.  My scanner has an Auto Document Feeder (ADF) so be aware that my instructions are specific to an ADF scanner.</p>
<p>This example is for scanning a letter sized piece of paper in batch mode saving output in the format of a TIFF</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">scanimage <span style="color: #660033;">-y</span> <span style="color: #000000;">279.4</span> <span style="color: #660033;">-x</span> <span style="color: #000000;">215.9</span> <span style="color: #660033;">--batch</span> <span style="color: #660033;">--format</span>=tiff <span style="color: #660033;">--mode</span> Lineart <span style="color: #660033;">--resolution</span> <span style="color: #000000;">300</span> <span style="color: #660033;">--source</span> ADF</pre></div></div>

<p>This will output a new TIFF for each page that is scanned.</p>
<p>The below script combines several steps to output a single PDF document and .txt file for a scan job.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #007800;">outname</span>=<span style="color: #007800;">$1</span>
<span style="color: #007800;">startdir</span>=$<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #7a0874; font-weight: bold;">pwd</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>
<span style="color: #007800;">tmpdir</span>=scan-<span style="color: #007800;">$RANDOM</span>
&nbsp;
<span style="color: #7a0874; font-weight: bold;">cd</span> <span style="color: #000000; font-weight: bold;">/</span>tmp
<span style="color: #c20cb9; font-weight: bold;">mkdir</span> <span style="color: #007800;">$tmpdir</span>
<span style="color: #7a0874; font-weight: bold;">cd</span> <span style="color: #007800;">$tmpdir</span>
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;################## Scanning ###################&quot;</span>
scanimage <span style="color: #660033;">-y</span> <span style="color: #000000;">279.4</span> <span style="color: #660033;">-x</span> <span style="color: #000000;">215.9</span> <span style="color: #660033;">--batch</span> <span style="color: #660033;">--format</span>=tiff <span style="color: #660033;">--mode</span> Lineart <span style="color: #660033;">--resolution</span> <span style="color: #000000;">300</span> <span style="color: #660033;">--source</span> ADF
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;################### OCRing ####################&quot;</span>
<span style="color: #007800;">i</span>=<span style="color: #000000;">1</span>
<span style="color: #000000; font-weight: bold;">for</span> page <span style="color: #000000; font-weight: bold;">in</span> $<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #c20cb9; font-weight: bold;">ls</span> <span style="color: #000000; font-weight: bold;">*</span>.tif<span style="color: #7a0874; font-weight: bold;">&#41;</span>; <span style="color: #000000; font-weight: bold;">do</span>
        <span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #660033;">-n</span> <span style="color: #ff0000;">&quot;Page: <span style="color: #007800;">$i</span> - &quot;</span>
        <span style="color: #666666; font-style: italic;">#run tesseract on each page and combine the outputs in a single file with a .txt extension.</span>
        tesseract <span style="color: #007800;">$page</span> <span style="color: #007800;">$page</span>
        <span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;---BEGIN PAGE: <span style="color: #007800;">$i</span> ---&quot;</span> <span style="color: #000000; font-weight: bold;">&gt;&gt;</span> <span style="color: #007800;">$outname</span>.txt
        <span style="color: #c20cb9; font-weight: bold;">cat</span> <span style="color: #007800;">$page</span>.txt <span style="color: #000000; font-weight: bold;">&gt;&gt;</span> <span style="color: #007800;">$outname</span>.txt
        <span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;---END PAGE: $1 ---&quot;</span> <span style="color: #000000; font-weight: bold;">&gt;&gt;</span> <span style="color: #007800;">$outname</span>.txt
        <span style="color: #007800;">i</span>=$<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #c20cb9; font-weight: bold;">expr</span> <span style="color: #007800;">$i</span> + <span style="color: #000000;">1</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>
<span style="color: #000000; font-weight: bold;">done</span>
<span style="color: #c20cb9; font-weight: bold;">mv</span> <span style="color: #007800;">$outname</span>.txt <span style="color: #007800;">$startdir</span>
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;############## Converting to PDF ##############&quot;</span>
<span style="color: #666666; font-style: italic;">#Use tiffcp to combine output tiffs to a single mult-page tiff</span>
tiffcp <span style="color: #660033;">-c</span> lzw out<span style="color: #000000; font-weight: bold;">*</span>.tif output.tif 
<span style="color: #666666; font-style: italic;">#Convert the tiff to PDF</span>
tiff2pdf output.tif <span style="color: #000000; font-weight: bold;">&gt;</span> <span style="color: #007800;">$startdir</span><span style="color: #000000; font-weight: bold;">/</span><span style="color: #007800;">$outname</span>
<span style="color: #7a0874; font-weight: bold;">cd</span> ..
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;################ Cleaning Up ################&quot;</span>
<span style="color: #c20cb9; font-weight: bold;">rm</span> <span style="color: #660033;">-rf</span> <span style="color: #007800;">$tmpdir</span>
<span style="color: #7a0874; font-weight: bold;">cd</span> <span style="color: #007800;">$startdir</span></pre></div></div>

<p>I name the above script &#8220;scandoc&#8221; and it can be run by typing &#8220;scandoc myoutput.pdf&#8221; which will drop a pdf file (called myoutput.pdf) and a .txt (called myoutput.pdf.txt) file in the current directory with all the pages from the ADF.  Very handy!</p>
<p><strong>EDIT:</strong><br />
I&#8217;ve added Joe&#8217;s contributions in the comments to a <a href="http://gist.github.com/311548">gist</a> at github. </p>
]]></content:encoded>
			<wfw:commentRss>http://jduck.net/2008/01/05/ocr-scanning/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>A bundle of links&#8230;</title>
		<link>http://jduck.net/2007/11/06/a-bundle-of-links/</link>
		<comments>http://jduck.net/2007/11/06/a-bundle-of-links/#comments</comments>
		<pubDate>Tue, 06 Nov 2007 14:44:20 +0000</pubDate>
		<dc:creator>Jonah</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[links]]></category>

		<guid isPermaLink="false">http://jduck.net/2007/11/06/a-bundle-of-links/</guid>
		<description><![CDATA[Some neat things found on the web recently: Ponoko &#8211; Custom Laser cutting of Plexiglas and plywood. Make your circuit boards in china for cheap CouchDB simple database for content management systems. Mabel&#8217;s Labels &#8211; Got kids? Need to label their stuff, these look neat.]]></description>
			<content:encoded><![CDATA[<p>Some neat things found on the web recently:</p>
<li><a href="http://ponoko.com">Ponoko</a> &#8211; Custom Laser cutting of Plexiglas and plywood.</li>
<li>Make your <a href="http://www.nearfuturelaboratory.com/?p=337">circuit boards in china</a> for cheap</li>
<li><a href="http://couchdb.org">CouchDB</a> simple database for content management systems.</li>
<li><a href="http://www.mabel.ca/mabel.php">Mabel&#8217;s Labels</a> &#8211; Got kids?  Need to label their stuff, these look neat.</li>
]]></content:encoded>
			<wfw:commentRss>http://jduck.net/2007/11/06/a-bundle-of-links/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>United Airlines Marketing</title>
		<link>http://jduck.net/2007/09/24/united-airlines-marketing/</link>
		<comments>http://jduck.net/2007/09/24/united-airlines-marketing/#comments</comments>
		<pubDate>Mon, 24 Sep 2007 19:26:31 +0000</pubDate>
		<dc:creator>Jonah</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jduck.net/2007/09/24/united-airlines-marketing/</guid>
		<description><![CDATA[So, I receive this letter in the mail about once per week for the last 3 months telling me I have a balance in my United Mileage Plus account. It says I have 6,904 miles, that plus the 21,500 I&#8217;ll get from United will let me get enough for a free ticket which runs 25,000 [...]]]></description>
			<content:encoded><![CDATA[<p>So, I receive this letter in the mail about once per week for the last 3 months telling me I have a balance in my United Mileage Plus account.  It says I have 6,904 miles, that plus the 21,500 I&#8217;ll get from United will let me get enough for a free ticket which runs 25,000 miles, oh boy!  Never mind the $60 annual fee, the 18.24% APY, I can get a free ticket baby&#8230;I can go places&#8230;see the world.</p>
<p><a href='http://jduck.net/blog/wp-content/uploads/2007/09/united1.png' title='united1.png'><img src='http://jduck.net/blog/wp-content/uploads/2007/09/united1.png' alt='united1.png' /></a></p>
<p>Wait, what is that&#8230;there is an asterisk there&#8230;what does it say about that.  &#8220;Based on mileage plus account balance as of 6/1/07.  United Mileage Plus is not liable for mileage balance misprints.&#8221;  Hmmm&#8230;alright.</p>
<p>Ok, well lets go check united.com:<br />
<a href='http://jduck.net/blog/wp-content/uploads/2007/09/united2.png' title='united2.png'><img src='http://jduck.net/blog/wp-content/uploads/2007/09/united2.png' alt='united2.png' /></a>What&#8217;s this..my miles expired on 06/30/2007, leaving me with a balance of 0.</p>
<p>So the notice I have been receiving every week for 3 months straight has been grossly misleading and too good to be true.  I know the airlines are hurting&#8230;.but c&#8217;mon guys lay off the deceptive marketing practices.</p>
]]></content:encoded>
			<wfw:commentRss>http://jduck.net/2007/09/24/united-airlines-marketing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>links for 2007-07-06</title>
		<link>http://jduck.net/2007/07/06/links-for-2007-07-06/</link>
		<comments>http://jduck.net/2007/07/06/links-for-2007-07-06/#comments</comments>
		<pubDate>Fri, 06 Jul 2007 14:25:55 +0000</pubDate>
		<dc:creator>Jonah</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[links]]></category>

		<guid isPermaLink="false">http://jduck.net/2007/07/06/links-for-2007-07-06/</guid>
		<description><![CDATA[PyMedia &#8211; Python module for avi, mp3, dvd, wma, ogg processing &#8211; pymedia Looks like an interesting/useful module that could be useful in the acoustic project. (tags: audio python) Kiva.org &#8211; Loans that change lives (tags: microlending)]]></description>
			<content:encoded><![CDATA[<ul class="delicious">
<li>
<div class="delicious-link"><a href="http://pymedia.org/">PyMedia &#8211; Python module for avi, mp3, dvd, wma, ogg processing &#8211; pymedia</a></div>
<div class="delicious-extended">Looks like an interesting/useful module that could be useful in the acoustic project.</div>
<div class="delicious-tags">(tags: <a href="http://del.icio.us/jduckles/audio">audio</a> <a href="http://del.icio.us/jduckles/python">python</a>)</div>
</li>
<li>
<div class="delicious-link"><a href="http://www.kiva.org/app.php?page=businesses">Kiva.org &#8211; Loans that change lives</a></div>
<div class="delicious-tags">(tags: <a href="http://del.icio.us/jduckles/microlending">microlending</a>)</div>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://jduck.net/2007/07/06/links-for-2007-07-06/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Woowee&#8230;</title>
		<link>http://jduck.net/2007/07/03/woowee/</link>
		<comments>http://jduck.net/2007/07/03/woowee/#comments</comments>
		<pubDate>Tue, 03 Jul 2007 19:51:12 +0000</pubDate>
		<dc:creator>Jonah</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[geospatial]]></category>
		<category><![CDATA[gis]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://jduck.net/2007/07/03/woowee/</guid>
		<description><![CDATA[The blog is getting mighty impersonal with all those del.icio.us posts. Maybe that can serve as a reminder for me to post more. I have been hacking on a bunch of convenience code in python for the LTM (Land Transformation Model) which serves as the land use projection portion of my research. Basically just wrapping [...]]]></description>
			<content:encoded><![CDATA[<p>The blog is getting mighty impersonal with all those del.icio.us posts.  Maybe that can serve as a reminder for me to post more.  </p>
<p>I have been hacking on a bunch of convenience code in python for the LTM (Land Transformation Model) which serves as the land use projection portion of my research.  Basically just wrapping a bunch of ArcGIS functions that do what I need done and then some file manipulation and config file writing before I launch code written by our postdoc.  Going to try and do some time projections for all of the state of Indiana and then go back to my Muskegon study area with the new tools to re-run the model up there.  It should make things run much more smoothly.</p>
]]></content:encoded>
			<wfw:commentRss>http://jduck.net/2007/07/03/woowee/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>links for 2007-07-03</title>
		<link>http://jduck.net/2007/07/03/links-for-2007-07-03/</link>
		<comments>http://jduck.net/2007/07/03/links-for-2007-07-03/#comments</comments>
		<pubDate>Tue, 03 Jul 2007 14:22:10 +0000</pubDate>
		<dc:creator>Jonah</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jduck.net/2007/07/03/links-for-2007-07-03/</guid>
		<description><![CDATA[Beginner&#8217;s Guide to the Vi editor (tags: vi)]]></description>
			<content:encoded><![CDATA[<ul class="delicious">
<li>
<div class="delicious-link"><a href="http://www-acs.ucsd.edu/info/vi_tutorial.php">Beginner&#8217;s Guide to the Vi editor</a></div>
<div class="delicious-tags">(tags: <a href="http://del.icio.us/jduckles/vi">vi</a>)</div>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://jduck.net/2007/07/03/links-for-2007-07-03/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>links for 2007-07-02</title>
		<link>http://jduck.net/2007/07/02/links-for-2007-07-02/</link>
		<comments>http://jduck.net/2007/07/02/links-for-2007-07-02/#comments</comments>
		<pubDate>Mon, 02 Jul 2007 14:22:35 +0000</pubDate>
		<dc:creator>Jonah</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jduck.net/2007/07/02/links-for-2007-07-02/</guid>
		<description><![CDATA[iGmail :: An IMAPv4 gateway to Gmail (tags: imap gmail) ActivePython 2.5 &#8211; Online Docs : HOWTO Fetch Internet Resources Using urllib2 (tags: python) ten small Python programs &#8211; comp.lang.python &#124; Google Groups (tags: learning python) Welcome to NHGIS — National Historical Geographic Information System (tags: historical gis)]]></description>
			<content:encoded><![CDATA[<ul class="delicious">
<li>
<div class="delicious-link"><a href="http://www.butterfat.net/igmail/">iGmail :: An IMAPv4 gateway to Gmail</a></div>
<div class="delicious-tags">(tags: <a href="http://del.icio.us/jduckles/imap">imap</a> <a href="http://del.icio.us/jduckles/gmail">gmail</a>)</div>
</li>
<li>
<div class="delicious-link"><a href="http://aspn.activestate.com/ASPN/docs/ActivePython/2.5/howto/urllib2/index.html">ActivePython 2.5 &#8211; Online Docs : HOWTO Fetch Internet Resources Using urllib2</a></div>
<div class="delicious-tags">(tags: <a href="http://del.icio.us/jduckles/python">python</a>)</div>
</li>
<li>
<div class="delicious-link"><a href="http://groups.google.com.au/group/comp.lang.python/browse_thread/thread/3eb8837f6dc278c1/a93a2512163f3a21">ten small Python programs &#8211; comp.lang.python | Google Groups</a></div>
<div class="delicious-tags">(tags: <a href="http://del.icio.us/jduckles/learning">learning</a> <a href="http://del.icio.us/jduckles/python">python</a>)</div>
</li>
<li>
<div class="delicious-link"><a href="http://www.nhgis.org/">Welcome to NHGIS — National Historical Geographic Information System</a></div>
<div class="delicious-tags">(tags: <a href="http://del.icio.us/jduckles/historical">historical</a> <a href="http://del.icio.us/jduckles/gis">gis</a>)</div>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://jduck.net/2007/07/02/links-for-2007-07-02/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>links for 2007-06-30</title>
		<link>http://jduck.net/2007/06/30/links-for-2007-06-30/</link>
		<comments>http://jduck.net/2007/06/30/links-for-2007-06-30/#comments</comments>
		<pubDate>Sat, 30 Jun 2007 14:22:47 +0000</pubDate>
		<dc:creator>Jonah</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jduck.net/2007/06/30/links-for-2007-06-30/</guid>
		<description><![CDATA[ONLamp.com &#8212; Processing Mailbox Files with mailbox.py (tags: python) Tentative NumPy Tutorial - (tags: %s)]]></description>
			<content:encoded><![CDATA[<ul class="delicious">
<li>
<div class="delicious-link"><a href="http://www.onlamp.com/pub/a/python/2007/06/28/processing-mailbox-files-with-mailboxpy.html">ONLamp.com &#8212; Processing Mailbox Files with mailbox.py</a></div>
<div class="delicious-tags">(tags: <a href="http://del.icio.us/jduckles/python">python</a>)</div>
</li>
<li>
<div class="delicious-link"><a href="http://www.scipy.org/Tentative_NumPy_Tutorial">Tentative NumPy Tutorial -</a></div>
<div class="delicious-tags">(tags: <a href="http://del.icio.us/jduckles/%s">%s</a>)</div>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://jduck.net/2007/06/30/links-for-2007-06-30/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>links for 2007-06-29</title>
		<link>http://jduck.net/2007/06/29/links-for-2007-06-29/</link>
		<comments>http://jduck.net/2007/06/29/links-for-2007-06-29/#comments</comments>
		<pubDate>Fri, 29 Jun 2007 14:28:17 +0000</pubDate>
		<dc:creator>Jonah</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jduck.net/2007/06/29/links-for-2007-06-29/</guid>
		<description><![CDATA[MODIS Rapid Response System &#8211; Subsets &#8211; USA3 2007/163 06/12/07 Terra 250m (tags: modis muskegon)]]></description>
			<content:encoded><![CDATA[<ul class="delicious">
<li>
<div class="delicious-link"><a href="http://rapidfire.sci.gsfc.nasa.gov/subsets/?USA3/2007163/USA3.2007163.terra.250m.jpg">MODIS Rapid Response System &#8211; Subsets &#8211; USA3 2007/163 06/12/07 Terra 250m</a></div>
<div class="delicious-tags">(tags: <a href="http://del.icio.us/jduckles/modis">modis</a> <a href="http://del.icio.us/jduckles/muskegon">muskegon</a>)</div>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://jduck.net/2007/06/29/links-for-2007-06-29/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
