<?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>~larcher &#187; geek</title>
	<atom:link href="http://spoon.cx/~larcher/category/geek/feed/" rel="self" type="application/rss+xml" />
	<link>http://spoon.cx/~larcher</link>
	<description>Larry Archer's irregular weblog</description>
	<lastBuildDate>Wed, 08 Feb 2012 16:03:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Pachube and the wifi thermostat</title>
		<link>http://spoon.cx/~larcher/2012/02/01/pachube-and-the-wifi-thermostat/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=pachube-and-the-wifi-thermostat</link>
		<comments>http://spoon.cx/~larcher/2012/02/01/pachube-and-the-wifi-thermostat/#comments</comments>
		<pubDate>Wed, 01 Feb 2012 11:30:08 +0000</pubDate>
		<dc:creator>larcher</dc:creator>
				<category><![CDATA[geek]]></category>
		<category><![CDATA[thingaday]]></category>

		<guid isPermaLink="false">https://spoon.cx/~larcher/?p=1084</guid>
		<description><![CDATA[A few months ago, I installed a wifi-enabled thermostat. It connects to a service in the cloud ( my.radiothermostat.com ) and from there you can connect to it from its Android and iOS apps, or directly from the Web. And I was pretty excited (maybe inordinately so) to find out it has an open REST [...]]]></description>
			<content:encoded><![CDATA[<p>A few months ago, I installed a <a href="http://radiothermostat.com/">wifi-enabled thermostat</a>.  It connects to a service in the cloud ( my.radiothermostat.com ) and from there you can connect to it from its Android and iOS apps, or directly from the Web.  And I was pretty excited (maybe inordinately so) to find out it has an open REST API with some pretty decent <a href="http://www.radiothermostat.com/documents/RTCOA%20WiFI%20API%20V1_0R3.pdf">documentation</a>. This thermostat speaks JSON.</p>
<p>Literally within an hour of finding the API docs, I had a Python script grabbing temperature readings from the thermostat and pumping them intro a Pachube feed.  It took longer to get the thing attached to the A/C and reliably connected to wifi.</p>
<h3>Code</h3>
<p>I used the requests module for retrieving the JSON. Here&#8217;s the short version (config variables have been hardcoded and error checking remove for brevity <img src='http://spoon.cx/wordpress/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> .</p>
<p><code>response = requests.get( 'http://192.168.1.123/temp' )<br />
indoor_temp = json.loads( response.content )['temp']</code></p>
<p>It helped speed things along significantly having the Pachube part mostly taken care of by the <a href="http://petervizi.github.com/python-eeml/">eeml module</a>.  Adding that temperature as a new datapoint to my feed goes something like this.</p>
<p><code>import eeml<br />
pachube = eeml.Pachube( PACHUBE_API_URL, PACHUBE_API_KEY )<br />
# This particular feed has named datastreams -- if you're posting to one with a numerical ID instead, enter that here.<br />
datastream = 'temp'<br />
pachube.update( [ eeml.Data(datastream, indoor_temp) ] )<br />
pachube.put()<br />
</code></p>
<h3>Excuses</h3>
<p>I was about to wrap this up with a list of reasons I haven&#8217;t posted the entire chunk of code on github yet. But like many unpublished personal software projects, it really comes down to some combination of <em>perfectionism</em> and (perceived) <em>lack of free time</em>.  &#8220;The perfect is the enemy of the good enough&#8221; and all that.  The right way would be to just post it already &#8211; having code out there publicly means other people can spend their free time to help me make it perfect. <img src='http://spoon.cx/wordpress/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>Maybe next weekend.</p>
]]></content:encoded>
			<wfw:commentRss>http://spoon.cx/~larcher/2012/02/01/pachube-and-the-wifi-thermostat/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flickr screensaver for Linux</title>
		<link>http://spoon.cx/~larcher/2009/01/06/flickr-screensaver-for-linux/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=flickr-screensaver-for-linux</link>
		<comments>http://spoon.cx/~larcher/2009/01/06/flickr-screensaver-for-linux/#comments</comments>
		<pubDate>Tue, 06 Jan 2009 15:07:40 +0000</pubDate>
		<dc:creator>larcher</dc:creator>
				<category><![CDATA[geek]]></category>
		<category><![CDATA[pictures]]></category>
		<category><![CDATA[flickr]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[rss]]></category>
		<category><![CDATA[screensaver]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://spoon.cx/~larcher/?p=551</guid>
		<description><![CDATA[The TV in the kitchen is wired up to the MythTV box (which sits in a closet in another room).  If the TV is left on after a recorded show ends, the MythTV menus are not so pretty to look at.   The standard &#8220;Pictures folder&#8221; screensaver is nice, but I got tired of manually copying [...]]]></description>
			<content:encoded><![CDATA[<p>The TV in the kitchen is wired up to the MythTV box (which sits in a closet in another room).   If the TV is left on after a recorded show ends, the MythTV menus are not so pretty to look at.   The standard &#8220;Pictures folder&#8221; screensaver is nice, but I got tired of manually copying and managing pictures on the Myth box.  Why not use Flickr as the automated source of the pictures?</p>
<p>I poked around for &#8220;flickr screensaver linux&#8221; on Google and was a bit disappointed.  Most of the results a) discuss Mac- or Windows-only solutions, b) link to programs that no longer exist, or c) are more complicated than what I need.</p>
<p>Well, it <em>is</em> Linux &#8230; time to roll my own.  Maybe this solution is so obvious that no one bothered to document it, but this is what I came up with.   Maybe it will save time for someone else.  Besides, I need a new post to break in the new theme on this blog. <img src='http://spoon.cx/wordpress/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>The basic formula: RSS feed from Flickr + podcast downloader + cron +  &#8220;Pictures folder&#8221; screensaver.<br />
Read on for the details &#8230;</p>
<p><span id="more-551"></span></p>
<p>Actually, any RSS feed with images as <code>enclosure</code>s will work, since that&#8217;s what the podcatching software looks for.  However, podget does not handle Atom feeds with enclosures, so make sure you reach for the RSS.  The tricky part of this setup was finding a feed for the <a href="http://www.flickr.com/explore/interesting/">Interesting pics on Flickr</a>.   Flickr does not supply an official feed, but someone has <a href="http://seanreiser.com/flickrInterestingnessFeed">already solved this problem</a>.  (His <a href="http://antwrp.gsfc.nasa.gov">APOD</a> feed is nice as well.)</p>
<p>You want step-by-step?  It&#8217;s actually pretty Easy In Linux (not to be confused with regular<em> </em>easy):</p>
<ul>
<li>Install the podcatcher:<br />
<code>sudo apt-get install podget</code></li>
<li>Tell <code>podget</code> to download to the ~/Pictures directory.  Here&#8217;s the relevant line from my <code>~/.podget/podgetrc</code>:<br />
<code>dir_library=/home/mythtv/Pictures</code><br />
( <strong>alternate:</strong> tell the Pictures screensaver to grab images from the podcast directory )</li>
<li>Add feeds to podget.   Here&#8217;s my <code>~/.podget/serverlist</code>:<br />
<code># FORMAT:    &lt;url&gt; &lt;category&gt; &lt;name&gt;<br />
#<br />
# my photostream<br />
<a href="http://api.flickr.com/services/feeds/photos_public.gne?id=31073629@N00&amp;lang=en-us&amp;format=rss2">http://api.flickr.com/services/feeds/photos_public.gne?id=31073629@N00&amp;lang=en-us&amp;format=rss2</a> screensaver Flickr mine<br />
#<br />
# my favorites<br />
<a href="http://api.flickr.com/services/feeds/photos_faves.gne?id=31073629@N00&amp;lang=en-us&amp;format=rss_200">http://api.flickr.com/services/feeds/photos_faves.gne?id=31073629@N00&amp;lang=en-us&amp;format=rss_200</a> screensaver Flickr faves<br />
#<br />
# Flickr pictures with "interestingness"<br />
<a title="Flickr interestingness feed" href="http://feeds.feedburner.com/seanreiser/flickrinterestingness">http://feeds.feedburner.com/seanreiser/flickrinterestingness</a> screensaver flickr interesting<br />
#<br />
# Astronomy Picture of the Day<br />
<a href="http://feeds.feedburner.com/seanreiser/apod">http://feeds.feedburner.com/seanreiser/apod</a> screensaver APOD</code></li>
<li>Tell cron to grab new pictures once a day:<br />
Run <code>crontab -e</code> and add this line:<br />
<code>0 5 * * * podget  # run podget at 5am every day</code><br />
(You may need to give a full path for <code>podget</code>)</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://spoon.cx/~larcher/2009/01/06/flickr-screensaver-for-linux/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Dorkbot Austin!</title>
		<link>http://spoon.cx/~larcher/2006/07/14/dorkbot-austin/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=dorkbot-austin</link>
		<comments>http://spoon.cx/~larcher/2006/07/14/dorkbot-austin/#comments</comments>
		<pubDate>Fri, 14 Jul 2006 06:10:08 +0000</pubDate>
		<dc:creator>larcher</dc:creator>
				<category><![CDATA[austin]]></category>
		<category><![CDATA[geek]]></category>
		<category><![CDATA[hardware]]></category>
		<category><![CDATA[science]]></category>

		<guid isPermaLink="false">http://spoon.cx/~larcher/blog/?p=496</guid>
		<description><![CDATA[Natalie and I went out dorking tonight The dorkbot made it&#8217;s second appearance in Austin tonight at Cafe Mundi. There was some great geeking going on .. I think we missed the first presentation though (got there around 8:30). First one we saw was Joel Greenberg showing off his nifty homemade mic zeppelin. According to [...]]]></description>
			<content:encoded><![CDATA[<p>Natalie and I went out dorking tonight <img src='http://spoon.cx/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   The <a href="http://dorkbot.org/dorkbotaustin/">dorkbot</a> made it&#8217;s second appearance in Austin tonight at <a href="http://www.cafemundi.com/">Cafe Mundi</a>.   There was some great geeking going on .. I think we missed the first presentation though (got there around 8:30).  </p>
<p>First one we saw was Joel Greenberg showing off his nifty homemade <a href="http://www.joelandkaren.com/mic-zeppelin/">mic zeppelin</a>.  According to my del.icio.us links, I read about this back in April, but didn&#8217;t realize he was from Austin.  (Note to self: checkout his <a href="http://friendstalking.joelandkaren.com/">podcast</a> )</p>
<p>Next up was  Rich LeGrand and his <a href="http://www.charmedlabs.com">Lego-bot with a Gameboy brain</a>.  Basically, he put an FPGA and some flash memory on a card that fits in the Gameboy Advance cartridge slot, which lets the GBA brain talk to sensors and motor controllers and cameras and all kinds of roboty goodness.  For a demo, the bot spotted a loose lego piece, wheeled itself over, grabbed the piece, and moved it to the other side of the table.   It was also able to learn and repeat and little dance &#8212; you push the thing around the table, and it senses the movement through the motors, records it, and plays it back.  ( <a href="http://www.youtube.com/watch?v=s1aBDbvEX9o">video!</a> )</p>
<p>The Austin <a href="http://www.robotgroup.net/">Robot Group</a> had the last two presentations:  Eric Lundquist  explained the <a href="http://www.robotgroup.net/index.cgi/BabblingHead">Babbling Head</a> and had it sing a few songs, and Vern Graner demoed  the controller board/prototype of a funky spin-art game-type-thing they&#8217;re making for the next <a href="http://www.firstnightaustin.org/">First Night Austin</a>.</p>
<p>All kinds of Neat Stuff[tm] .. we&#8217;ll have to go back next month.  (I heard they had a homemade Tesla coil last month!)  I managed to catch part of the evening with the voice recorder on my iAudio.  I&#8217;ll try to clean it up and stick it online sometime in the next few days. </p>
<p>[tags] austin, austintx, geek, dorkbot, dorkbotaustin, nerd, robots, robotics[/tags]</p>
]]></content:encoded>
			<wfw:commentRss>http://spoon.cx/~larcher/2006/07/14/dorkbot-austin/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Network-enabled Garage Door</title>
		<link>http://spoon.cx/~larcher/2006/05/22/network-enabled-garage-door/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=network-enabled-garage-door</link>
		<comments>http://spoon.cx/~larcher/2006/05/22/network-enabled-garage-door/#comments</comments>
		<pubDate>Mon, 22 May 2006 17:07:03 +0000</pubDate>
		<dc:creator>larcher</dc:creator>
				<category><![CDATA[geek]]></category>
		<category><![CDATA[hardware]]></category>
		<category><![CDATA[house]]></category>
		<category><![CDATA[life]]></category>
		<category><![CDATA[project]]></category>

		<guid isPermaLink="false">http://spoon.cx/~larcher/blog/?p=491</guid>
		<description><![CDATA[This has been in my “to-blog-about” queue for a while, and seeing this post on the Make blog tipped it into the “must-blog-now” category. Summary: combine a wifi adapter, some sensors, and some electronics and you can monitor your garage online. A few months ago, I had a similar idea but took a different approach. [...]]]></description>
			<content:encoded><![CDATA[<p>This has been in my “to-blog-about” queue for a while, and seeing <a href="http://www.makezine.com/blog/archive/2006/05/how_to_make_a_garage_monitor.html?CMP=OTC-0D6B48984890">this post</a> on the Make blog tipped it into the “must-blog-now” category.   Summary: combine a wifi adapter, some sensors, and some electronics and you can monitor your garage online.</p>
<p>A few months ago, I had a similar idea but took a different approach.   I was a bit more speed-oriented (some might say lazy) and decided to use the X10 system I already have going in the house.    Maybe not as elegant or robust as making a circuit from scratch and hooking it directly into the ethernet, but</p>
<h3>Sensing</h3>
<p>I used an <a href="http://www.smarthome.com/4060.html">X10 Powerflash module</a> connected to a reed switch mounted on the overhead door.  When the door changes state, it sends an X10 code of on or off, telling if the door was just opened or closed.  The signal is received by an X10 CM11A attached to the house server, which triggers a short script that logs the time and status in a text file (again, “speed-oriented” .. as in speed of completion).  Another script generates a (SSL and password protected) web page displaying the current state of the overhead door and time of last change: “Garage was opened at 8:00 am”.</p>
<h3>Control</h3>
<p>Now I have webpage that tells me I left the garage door wide open when I took off for work … if only I could close it remotely!  Once more, with ease-of-installation in mind, I grabbed another X10 product from Fry’s, the <a href="http://www.smarthome.com/2010.html">Universal module</a> and wired it to the same contacts that connect to the wall-mounted door-opener button.  A small addition to that web script, and a click will use the <a href="http://heyu.tanj.com/">heyu program</a> to generate the proper X10 signal, causing the relay to fire and close the door.</p>
<h5>Side note:</h5>
<p>Our garage door has an “electric eye” to detect an object (or person) in the path of the closing door, and will reverse and refuse to close if something’s in the way.  (I believe this is required by state law.)  It’s still possible to close the door on your car if the bumper and the beam are at different levels, but at least it makes it harder <img src='http://spoon.cx/wordpress/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' />    There’s an LED on the sensor itself, but it’s hard to see from inside the car without adjusting the side-mirror to an odd angle.   So there’s a possible enhancement to my version of the garage monitor: use the signal from the original obstruction sensor to drive a second better placed LED.</p>
<p>[tags] house,homeautomation,x10,nerd,geek,make,diy,garage,sensors,control,remotecontrol[/tags]</p>
]]></content:encoded>
			<wfw:commentRss>http://spoon.cx/~larcher/2006/05/22/network-enabled-garage-door/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nerd Hotrod</title>
		<link>http://spoon.cx/~larcher/2006/02/22/im-blog-post-via-aim/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=im-blog-post-via-aim</link>
		<comments>http://spoon.cx/~larcher/2006/02/22/im-blog-post-via-aim/#comments</comments>
		<pubDate>Wed, 22 Feb 2006 06:22:37 +0000</pubDate>
		<dc:creator>larcher</dc:creator>
				<category><![CDATA[car]]></category>
		<category><![CDATA[geek]]></category>
		<category><![CDATA[hardware]]></category>
		<category><![CDATA[project]]></category>

		<guid isPermaLink="false">http://spoon.cx/~larcher/blog/?p=474</guid>
		<description><![CDATA[Since I got my new car in October, I&#8217;ve been planning and scheming and pondering how I would put a computer in it. Actually, a mobile car-mounted computer has been on my mental (Want)ToDo list for a while, initially just to play mp3&#8242;s. Then I got an iPod, and the need for bogomips speed became [...]]]></description>
			<content:encoded><![CDATA[<p>Since I got my new car in October, I&#8217;ve been planning and scheming and pondering how I would put a computer in it.  Actually, a mobile car-mounted computer has been on my mental (Want)ToDo list for a while, initially just to play mp3&#8242;s.  Then I got an iPod, and the need for bogomips speed became less pressing.</p>
<p>With the new car, I had no tape deck .. so hacking was required to add a line-in (by way of FM modulator) to connect my external digital audio device.  In the course of this hacking, I discovered it&#8217;s fairly simple to take apart the interior of a Mazda 3 (see my del.icio.us links for some hints).  So ideas and possibilities started popping into my brain .. &#8220;I could put the GPS under this panel here .. and the wires would go here&#8221;.</p>
<p>Also, there&#8217;s this nifty device called the &#8220;AuxMod&#8221;:http://www.sylfex.com/products/AuxMod/   .. which provides a much cleaner line-in than a modulator.   And the Advanced version adds a serial port for some nifty interfacing to the OEM head-unit &#8212; the buttons on the steering wheel could control a PC, and the PC could send text to the in-dash display ..<br />
more ideas <img src='http://spoon.cx/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Anyway, I finally started this weekend.  I pulled off a few plastic panels and put USB WiFi adapter and a GPS receiver under the dash, right behind the defroster vent.   The actual computer (case+board+DC-DC power supply) is still on the way, but I&#8217;m planning on sticking it right under the driver&#8217;s seat.  I already have the USB and audio cables under there, ready to plug in.   I also stuck an open USB port where the ashtray used to be.</p>
<p>Once I get the PC in there, I&#8217;ll start playing with the software.<br />
OS will be Linux of some flavor (probably &#8220;Debian&#8221;:http://debian.org or &#8220;Ubuntu&#8221;:http://ubuntu.com ) .<br />
&#8220;MPD&#8221;:http://musicpd.org has worked great around the house as a headless music player, should work well in the car too.<br />
Still looking for a GPS program that will work well with a text-only display (or no display).  Some simple track logging should be pretty easy to set up though.</p>
<p>Other possible hardware:<br />
bumper mounted digital camera(s) &#8211; you&#8217;d be surprised how hard it is to accurately remember the license plate number of a hit-and-run driver <img src='http://spoon.cx/wordpress/wp-includes/images/smilies/icon_razz.gif' alt=':-P' class='wp-smiley' /><br />
OBD-II interface &#8211; think /var/log/car_engine   <img src='http://spoon.cx/wordpress/wp-includes/images/smilies/icon_biggrin.gif' alt=':-D' class='wp-smiley' /> </p>
<p>Case and PC should be arriving this week,  I&#8217;ll post more after I have it installed .. *evilgrin*</p>
]]></content:encoded>
			<wfw:commentRss>http://spoon.cx/~larcher/2006/02/22/im-blog-post-via-aim/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Location, Location, Location</title>
		<link>http://spoon.cx/~larcher/2005/10/15/location-location-location/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=location-location-location</link>
		<comments>http://spoon.cx/~larcher/2005/10/15/location-location-location/#comments</comments>
		<pubDate>Sat, 15 Oct 2005 20:18:50 +0000</pubDate>
		<dc:creator>larcher</dc:creator>
				<category><![CDATA[geek]]></category>
		<category><![CDATA[project]]></category>
		<category><![CDATA[randomjunk]]></category>

		<guid isPermaLink="false">http://spoon.cx/~larcher/blog/?p=453</guid>
		<description><![CDATA[I am here &#8230; but where&#8217;s Waldo? Earlier this week, I heard about this thing called Mologogo .. which is basically cellphone+gps+java app+internet = homemade lojack! So I bought myself a cheap-ish Motorola i285 on the Boost pay-as-you go plan. It has builtin Assisted GPS (somehow uses the cell towers to help with the GPS [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.mologogo.com/waypoints/public/larcher">I am here</a> &#8230; but where&#8217;s Waldo?</p>
<p>Earlier this week, I heard about this thing called <a href="http://www.mologogo.com/">Mologogo</a> ..  which is basically cellphone+gps+java app+internet = homemade lojack!  So I bought myself a cheap-ish Motorola i285 on the Boost pay-as-you go plan.  It has builtin Assisted GPS (somehow uses the cell towers to help with the GPS fix  I think).  The pay-as-you go lets you get on the &#8220;wireless web&#8221; for $0.20/day (cheap!). And the mologogo java app lets you upload your coordinates to the intarwebnets at regular intervals.</p>
<p>So, like I said .. I am <a href="http://www.mologogo.com/waypoints/public/larcher">here</a>.  The app on the phone also displays a small map of your location, and any friends&#8217; locations who might be logging their own coordinates.  Nifty ..</p>
<p>I&#8217;m thinking about plugging the phone into the lighter socket in the car and leaving it there .. out of site, but still able to catch the GPS signal. <img src='http://spoon.cx/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://spoon.cx/~larcher/2005/10/15/location-location-location/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>old email</title>
		<link>http://spoon.cx/~larcher/2005/06/30/old-email/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=old-email</link>
		<comments>http://spoon.cx/~larcher/2005/06/30/old-email/#comments</comments>
		<pubDate>Fri, 01 Jul 2005 01:46:44 +0000</pubDate>
		<dc:creator>larcher</dc:creator>
				<category><![CDATA[geek]]></category>
		<category><![CDATA[history]]></category>
		<category><![CDATA[life]]></category>

		<guid isPermaLink="false">http://spoon.cx/~larcher/blog/index.php/?p=433</guid>
		<description><![CDATA[Wow .. I just found a bunch of old backup files with emails from 1996 ! That&#8217;s like .. *counting* .. about 6 computers and 10 email addresses ago. Now I just need some scripts that will convert messages from Eudora and Juno (juno.com! when all they did was free dialup email!) into some nice [...]]]></description>
			<content:encoded><![CDATA[<p>Wow .. I just found a bunch of old backup files with emails from 1996 !   That&#8217;s like .. *counting* ..  about 6 computers and 10 email addresses ago.   Now I just need some scripts that will convert messages from Eudora and Juno (juno.com! when all they did was free dialup email!) into some nice normal unix mail format.</p>
<p>I was a big dork in 1996. <img src='http://spoon.cx/wordpress/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>a sample:</p>
<blockquote><p>Hey.  howzit goin?<br />
Would like to win a laptop?  I found this contest on the web where you have to solve all these puzzles and when you finish, you get yourself entered into a drawing for a pentium 75 laptop with a 28.8 PCMCIA modem.. here&#8217;s the URL</p></blockquote>
<p>A modem &#8212; how quaint! 28.8 kbps no less!</p>
<p>Also found backups of old webpages, but I&#8217;ll spare you the horror.</p>
]]></content:encoded>
			<wfw:commentRss>http://spoon.cx/~larcher/2005/06/30/old-email/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>time</title>
		<link>http://spoon.cx/~larcher/2005/06/27/time/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=time</link>
		<comments>http://spoon.cx/~larcher/2005/06/27/time/#comments</comments>
		<pubDate>Mon, 27 Jun 2005 15:25:42 +0000</pubDate>
		<dc:creator>larcher</dc:creator>
				<category><![CDATA[geek]]></category>

		<guid isPermaLink="false">http://spoon.cx/~larcher/blog/index.php/?p=432</guid>
		<description><![CDATA[Well, this stinks &#8230; AT&#038;T Wireless/Cingular has their clocks set wrong &#8212; my phone is autoupdating its clock (based on the cell network time) to about 3 minutes behind the government&#8217;s atomic clock. No wonder I&#8217;m always late.]]></description>
			<content:encoded><![CDATA[<p>Well, this stinks &#8230; AT&#038;T  Wireless/Cingular has their clocks set wrong &#8212; my phone is autoupdating its clock (based on the cell network time) to about 3 minutes behind the <a href="http://time.gov">government&#8217;s atomic clock</a>.   No wonder I&#8217;m always late.  <img src='http://spoon.cx/wordpress/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://spoon.cx/~larcher/2005/06/27/time/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wiki vs. ink-on-paper update</title>
		<link>http://spoon.cx/~larcher/2005/02/03/wiki-vs-ink-on-paper-update/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=wiki-vs-ink-on-paper-update</link>
		<comments>http://spoon.cx/~larcher/2005/02/03/wiki-vs-ink-on-paper-update/#comments</comments>
		<pubDate>Thu, 03 Feb 2005 08:48:00 +0000</pubDate>
		<dc:creator>larcher</dc:creator>
				<category><![CDATA[geek]]></category>

		<guid isPermaLink="false">http://www.spoon.cx/~larcher/blog/index.cgi/geek/instiki-import.html</guid>
		<description><![CDATA[Still trying to use my private wiki for note taking at work .. I&#8217;m not, as I&#8217;d hoped, using it for everything I could possibly want to record &#8212; I can type faster and cleaner than I write , but I can pick up a notebook and pen faster than I can load the right [...]]]></description>
			<content:encoded><![CDATA[<p>Still trying to use my private wiki for note taking at work .. I&#8217;m not, as I&#8217;d hoped, using it for everything I could possibly want to record &#8212; I can type faster and cleaner than I write , but I can pick up a notebook and pen faster than I can load the right webpage or open the right file in a text editor.  And a spiral is so much lighter and easier to grab on the way to a meeting.</p>
<p>Haven&#8217;t completely abandoned the wiki though .. upgraded my version of Instiki today, in fact.  And since there appears to be no &#8220;import&#8221; function, I rolled my own.  I was impressed with how easy that turned out to be &#8212; curl is quite versatile with the <span class="caps">HTTP POST</span> action.  I&#8217;d post the actual script to show you, but I left it at work  .. maybe tomorrow</p>
]]></content:encoded>
			<wfw:commentRss>http://spoon.cx/~larcher/2005/02/03/wiki-vs-ink-on-paper-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Expiring mp3&#8242;s</title>
		<link>http://spoon.cx/~larcher/2004/04/07/expiring-mp3s/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=expiring-mp3s</link>
		<comments>http://spoon.cx/~larcher/2004/04/07/expiring-mp3s/#comments</comments>
		<pubDate>Wed, 07 Apr 2004 18:01:00 +0000</pubDate>
		<dc:creator>larcher</dc:creator>
				<category><![CDATA[geek]]></category>

		<guid isPermaLink="false">http://www.spoon.cx/~larcher/blog/index.cgi/geek/expiring-mp3s.html</guid>
		<description><![CDATA[(No, this has nothing to do with DRM .. ) It&#8217;d be neat if the iPod would let you flag something as &#8220;never play this again&#8221;. Sure, you can already do this with the rating system &#8212; I give something a 1-star rating, and then once in a while go remove all the mp3&#8242;s with [...]]]></description>
			<content:encoded><![CDATA[<p>(No, this has nothing to do with DRM .. )<br />
It&#8217;d be neat if the iPod would let you flag something as &#8220;never play this<br />
again&#8221;.  Sure, you can already do this with the rating system &#8212; I give<br />
something a 1-star rating, and then once in a while go remove all the mp3&#8242;s<br />
with 1 star.  But unless you make a special smart playlist and always use that<br />
playlist, you might hear it again before it&#8217;s deleted.  With a separate flag, it would never pop up again in a random shuffle.</p>
<p>This flag would have another use .. say I use streamripper to save some <a<br />
href="http://npr.org/">NPR</a> <a href="http://www.cartalk.com/">program</a> or<br />
download some news from someplace like <a<br />
HREf="http://www.factsquad.org/radio">this</a>.   I probably only want to hear<br />
this mp3 once, and only within a few days of copying to my iPod.  So I set an<br />
expiration date and/or a playcount limit.  So after I hear it once or the story<br />
is a week old, it never comes up randomly again.  It stays on the iPod until I<br />
explicitly delete it or all the expired tracks, so I can still manually select<br />
it if I really do want to hear it again. </p>
<p>Just a thought .. </p>
<p>Might be possible someday with this <a HREF="http://ipodlinux.sourceforge.net/">Linux firmware for the iPod</a></p>
]]></content:encoded>
			<wfw:commentRss>http://spoon.cx/~larcher/2004/04/07/expiring-mp3s/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

