<?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:georss="http://www.georss.org/georss" >

<channel>
	<title>Ogre &#187; lnorigb</title>
	<atom:link href="http://rumsey.org/blog/tag/lnorigb/feed/" rel="self" type="application/rss+xml" />
	<link>http://rumsey.org/blog</link>
	<description></description>
	<lastBuildDate>Sun, 06 Nov 2011 22:52:23 +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>How do I love thee?  Let me count the days.</title>
		<link>http://rumsey.org/blog/2010/02/how-do-i-love-thee-let-me-count-the-days/</link>
		<comments>http://rumsey.org/blog/2010/02/how-do-i-love-thee-let-me-count-the-days/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 06:30:05 +0000</pubDate>
		<dc:creator>Ogre</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[computers]]></category>
		<category><![CDATA[lnorigb]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://rumsey.org/blog/?p=247</guid>
		<description><![CDATA[Lnorigb&#8216;s been bugging me to give her a thing in her calendar that tells her what day number each of her projects is on, so that her blog entries can be accurate. I finally wrote up this crappy little python script to do it. Requires the icalendar python package (easy_install icalendar). I just set up [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://lnorigb.com">Lnorigb</a>&#8216;s been bugging me to give her a thing in her calendar that tells her what day number each of her projects is on, so that her blog entries can be accurate.  I finally wrote up this crappy little python script to do it.  Requires the icalendar python package (easy_install icalendar).  I just set up a file like:</p>
<pre>
Towner
90
2009/11/18
2009/12/25
2010/01/01
</pre>
<p>Which tells my script to create an iCal event every day for 90 work days named &#8220;Towner, Day ##&#8221;, and don&#8217;t count Christmas or New Year&#8217;s day as work days.</p>
<p>Not shown is the bit at the end that uploads the resulting .ics file to a web server, which then allows Lnorigb to simply subscribe to it in iCal.  So if I make any changes in the output, like skipped days, increasing or decreasing the total count, or just general improvements, her calendar will automatically reflect the changes.</p>
<p>This is isn&#8217;t the best code I ever wrote, but it gave me an excuse to put a syntax highlighting plugin on the blog.  And it&#8217;s not like I&#8217;m expecting to have to do a lot of maintenance work on it.  Of course now that I&#8217;ve said that, it&#8217;s obviously going to cause me grief for many years.  Eventually I suppose it will need a full fledged scheduling application, complete with payment calculators for her workers based on facial recogonition of the posted pictures on her blog, auto-blog posting, twitter updates, a related facebook application, and RSS feed generators.  All of the above will be driven by the nine million state version of the stupid little state machine parser at the top of the script.</p>
<p>Yeah, don&#8217;t write code you&#8217;re not willing to maintain.  </p>
<p>(Code follows after the break.)</p>
<p><span id="more-247"></span></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
</pre></td><td class="code"><pre class="python" style="font-family:monospace;"><span style="color: #808080; font-style: italic;">#!/usr/bin/env python</span>
<span style="color: #ff7700;font-weight:bold;">from</span> icalendar <span style="color: #ff7700;font-weight:bold;">import</span> Calendar, Event, UTC
<span style="color: #ff7700;font-weight:bold;">from</span> <span style="color: #dc143c;">datetime</span> <span style="color: #ff7700;font-weight:bold;">import</span> <span style="color: #dc143c;">datetime</span>, timedelta
<span style="color: #ff7700;font-weight:bold;">import</span> <span style="color: #dc143c;">sys</span>, <span style="color: #dc143c;">os</span>
&nbsp;
skipdays = <span style="color: black;">&#91;</span><span style="color: black;">&#93;</span>
adddays = <span style="color: black;">&#91;</span><span style="color: black;">&#93;</span>
<span style="color: #808080; font-style: italic;"># Read a file in this format:</span>
<span style="color: #808080; font-style: italic;"># Project name</span>
<span style="color: #808080; font-style: italic;"># Total # days to count</span>
<span style="color: #808080; font-style: italic;"># Start date</span>
<span style="color: #808080; font-style: italic;"># Skipped days, one per line</span>
baseproject = <span style="color: #dc143c;">os</span>.<span style="color: black;">path</span>.<span style="color: black;">basename</span><span style="color: black;">&#40;</span><span style="color: #dc143c;">os</span>.<span style="color: black;">path</span>.<span style="color: black;">splitext</span><span style="color: black;">&#40;</span><span style="color: #dc143c;">sys</span>.<span style="color: black;">argv</span><span style="color: black;">&#91;</span><span style="color: #ff4500;">1</span><span style="color: black;">&#93;</span><span style="color: black;">&#41;</span><span style="color: black;">&#91;</span><span style="color: #ff4500;">0</span><span style="color: black;">&#93;</span><span style="color: black;">&#41;</span>
&nbsp;
f = <span style="color: #008000;">open</span><span style="color: black;">&#40;</span><span style="color: #dc143c;">sys</span>.<span style="color: black;">argv</span><span style="color: black;">&#91;</span><span style="color: #ff4500;">1</span><span style="color: black;">&#93;</span>, <span style="color: #483d8b;">'rb'</span><span style="color: black;">&#41;</span>
state = <span style="color: #ff4500;">1</span>
<span style="color: #ff7700;font-weight:bold;">for</span> line <span style="color: #ff7700;font-weight:bold;">in</span> f:
    line = line.<span style="color: black;">rstrip</span><span style="color: black;">&#40;</span><span style="color: black;">&#41;</span>
    <span style="color: #ff7700;font-weight:bold;">if</span> <span style="color: #008000;">len</span><span style="color: black;">&#40;</span>line<span style="color: black;">&#41;</span> == <span style="color: #ff4500;">0</span> <span style="color: #ff7700;font-weight:bold;">or</span> line<span style="color: black;">&#91;</span><span style="color: #ff4500;">0</span><span style="color: black;">&#93;</span> == <span style="color: #483d8b;">'#'</span>:
        <span style="color: #ff7700;font-weight:bold;">continue</span>
    <span style="color: #ff7700;font-weight:bold;">if</span> state == <span style="color: #ff4500;">1</span>:
        project = line
    <span style="color: #ff7700;font-weight:bold;">if</span> state == <span style="color: #ff4500;">2</span>:
        count = <span style="color: #008000;">int</span><span style="color: black;">&#40;</span>line<span style="color: black;">&#41;</span>
    <span style="color: #ff7700;font-weight:bold;">if</span> state == <span style="color: #ff4500;">3</span>:
        startday = <span style="color: #dc143c;">datetime</span>.<span style="color: black;">strptime</span><span style="color: black;">&#40;</span>line, <span style="color: #483d8b;">&quot;%Y/%m/%d&quot;</span><span style="color: black;">&#41;</span>
    <span style="color: #ff7700;font-weight:bold;">if</span> state == <span style="color: #ff4500;">4</span>:
        <span style="color: #ff7700;font-weight:bold;">if</span> line<span style="color: black;">&#91;</span><span style="color: #ff4500;">0</span><span style="color: black;">&#93;</span> == <span style="color: #483d8b;">'+'</span>:
            adddays.<span style="color: black;">append</span><span style="color: black;">&#40;</span><span style="color: #dc143c;">datetime</span>.<span style="color: black;">strptime</span><span style="color: black;">&#40;</span>line<span style="color: black;">&#91;</span><span style="color: #ff4500;">1</span>:<span style="color: black;">&#93;</span>, <span style="color: #483d8b;">&quot;%Y/%m/%d&quot;</span><span style="color: black;">&#41;</span><span style="color: black;">&#41;</span>
        <span style="color: #ff7700;font-weight:bold;">else</span>:
            skipdays.<span style="color: black;">append</span><span style="color: black;">&#40;</span><span style="color: #dc143c;">datetime</span>.<span style="color: black;">strptime</span><span style="color: black;">&#40;</span>line, <span style="color: #483d8b;">&quot;%Y/%m/%d&quot;</span><span style="color: black;">&#41;</span><span style="color: black;">&#41;</span>
        <span style="color: #808080; font-style: italic;"># About to increment the state otherwise</span>
        <span style="color: #ff7700;font-weight:bold;">continue</span>
    state += <span style="color: #ff4500;">1</span>
&nbsp;
f.<span style="color: black;">close</span><span style="color: black;">&#40;</span><span style="color: black;">&#41;</span>
&nbsp;
days = <span style="color: black;">&#123;</span><span style="color: black;">&#125;</span>
days<span style="color: black;">&#91;</span><span style="color: #ff4500;">0</span><span style="color: black;">&#93;</span> = startday + timedelta<span style="color: black;">&#40;</span>-<span style="color: #ff4500;">1</span><span style="color: black;">&#41;</span>
&nbsp;
cal = Calendar<span style="color: black;">&#40;</span><span style="color: black;">&#41;</span>
cal.<span style="color: black;">add</span><span style="color: black;">&#40;</span><span style="color: #483d8b;">'prodid'</span>, <span style="color: #483d8b;">&quot;-//Tildee's project day counter//rumsey.org//&quot;</span><span style="color: black;">&#41;</span>
cal.<span style="color: black;">add</span><span style="color: black;">&#40;</span><span style="color: #483d8b;">'version'</span>, <span style="color: #483d8b;">&quot;2.0&quot;</span><span style="color: black;">&#41;</span>
&nbsp;
<span style="color: #ff7700;font-weight:bold;">for</span> i <span style="color: #ff7700;font-weight:bold;">in</span> <span style="color: #008000;">range</span><span style="color: black;">&#40;</span><span style="color: #ff4500;">1</span>, count + <span style="color: #ff4500;">1</span><span style="color: black;">&#41;</span>:
    day = days<span style="color: black;">&#91;</span>i - <span style="color: #ff4500;">1</span><span style="color: black;">&#93;</span>
    day = day + timedelta<span style="color: black;">&#40;</span><span style="color: #ff4500;">1</span><span style="color: black;">&#41;</span>
    <span style="color: #ff7700;font-weight:bold;">while</span> <span style="color: black;">&#40;</span>day <span style="color: #ff7700;font-weight:bold;">in</span> skipdays<span style="color: black;">&#41;</span> <span style="color: #ff7700;font-weight:bold;">or</span> <span style="color: black;">&#40;</span><span style="color: black;">&#40;</span>day.<span style="color: black;">weekday</span><span style="color: black;">&#40;</span><span style="color: black;">&#41;</span> == <span style="color: #ff4500;">5</span> <span style="color: #ff7700;font-weight:bold;">or</span> day.<span style="color: black;">weekday</span><span style="color: black;">&#40;</span><span style="color: black;">&#41;</span> == <span style="color: #ff4500;">6</span><span style="color: black;">&#41;</span> <span style="color: #ff7700;font-weight:bold;">and</span> <span style="color: #ff7700;font-weight:bold;">not</span> <span style="color: black;">&#40;</span>day <span style="color: #ff7700;font-weight:bold;">in</span> adddays<span style="color: black;">&#41;</span><span style="color: black;">&#41;</span>:
        day = day + timedelta<span style="color: black;">&#40;</span><span style="color: #ff4500;">1</span><span style="color: black;">&#41;</span>
    days<span style="color: black;">&#91;</span>i<span style="color: black;">&#93;</span> = day
    event = Event<span style="color: black;">&#40;</span><span style="color: black;">&#41;</span>
    event.<span style="color: black;">add</span><span style="color: black;">&#40;</span><span style="color: #483d8b;">'summary'</span>, <span style="color: #483d8b;">'%s, Day %d'</span> <span style="color: #66cc66;">%</span> <span style="color: black;">&#40;</span>project, i<span style="color: black;">&#41;</span><span style="color: black;">&#41;</span>
    event.<span style="color: black;">add</span><span style="color: black;">&#40;</span><span style="color: #483d8b;">'dtstart'</span>, day<span style="color: black;">&#41;</span>
    event.<span style="color: black;">add</span><span style="color: black;">&#40;</span><span style="color: #483d8b;">'dtend'</span>, day<span style="color: black;">&#41;</span>
    event.<span style="color: black;">add</span><span style="color: black;">&#40;</span><span style="color: #483d8b;">'dtstamp'</span>, day<span style="color: black;">&#41;</span>
    event<span style="color: black;">&#91;</span><span style="color: #483d8b;">'uid'</span><span style="color: black;">&#93;</span>=<span style="color: #483d8b;">&quot;D%d/%d%d%d@rumsey.org&quot;</span> <span style="color: #66cc66;">%</span> <span style="color: black;">&#40;</span>i, day.<span style="color: black;">year</span>, day.<span style="color: black;">month</span>, day.<span style="color: black;">day</span><span style="color: black;">&#41;</span>
    event.<span style="color: black;">add</span><span style="color: black;">&#40;</span><span style="color: #483d8b;">'priority'</span>, <span style="color: #ff4500;">5</span><span style="color: black;">&#41;</span>
    cal.<span style="color: black;">add_component</span><span style="color: black;">&#40;</span>event<span style="color: black;">&#41;</span>
&nbsp;
    <span style="color: #ff7700;font-weight:bold;">print</span> <span style="color: #483d8b;">&quot;Day &quot;</span> + <span style="color: #008000;">str</span><span style="color: black;">&#40;</span>i<span style="color: black;">&#41;</span> + <span style="color: #483d8b;">&quot;: &quot;</span> + <span style="color: #008000;">str</span><span style="color: black;">&#40;</span>day<span style="color: black;">&#41;</span>
&nbsp;
output = <span style="color: #483d8b;">'/tmp/%s.ics'</span> <span style="color: #66cc66;">%</span> <span style="color: black;">&#40;</span>baseproject<span style="color: black;">&#41;</span>
f = <span style="color: #008000;">open</span><span style="color: black;">&#40;</span>output, <span style="color: #483d8b;">'wb'</span><span style="color: black;">&#41;</span>
f.<span style="color: black;">write</span><span style="color: black;">&#40;</span>cal.<span style="color: black;">as_string</span><span style="color: black;">&#40;</span><span style="color: black;">&#41;</span><span style="color: black;">&#41;</span>
f.<span style="color: black;">close</span><span style="color: black;">&#40;</span><span style="color: black;">&#41;</span></pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://rumsey.org/blog/2010/02/how-do-i-love-thee-let-me-count-the-days/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lnor says</title>
		<link>http://rumsey.org/blog/2009/01/lnor-says-3/</link>
		<comments>http://rumsey.org/blog/2009/01/lnor-says-3/#comments</comments>
		<pubDate>Sat, 31 Jan 2009 04:02:44 +0000</pubDate>
		<dc:creator>Ogre</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[humor]]></category>
		<category><![CDATA[lnorigb]]></category>

		<guid isPermaLink="false">http://rumsey.org/blog/?p=202</guid>
		<description><![CDATA[&#8220;I like turtle butt&#8221;]]></description>
			<content:encoded><![CDATA[<p>&#8220;I like turtle butt&#8221;</p>
<p><a href="http://rumsey.org/blog/wp-content/uploads/2009/01/p-137-103-6cd82e23-0330-478a-9b75-c0e365da524f.jpeg"><img src="http://rumsey.org/blog/wp-content/uploads/2009/01/p-137-103-6cd82e23-0330-478a-9b75-c0e365da524f.jpeg" alt="" width="103" height="137" class="alignnone size-full wp-image-364" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://rumsey.org/blog/2009/01/lnor-says-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>It&#8217;s official</title>
		<link>http://rumsey.org/blog/2008/12/its-official/</link>
		<comments>http://rumsey.org/blog/2008/12/its-official/#comments</comments>
		<pubDate>Wed, 03 Dec 2008 03:26:46 +0000</pubDate>
		<dc:creator>Ogre</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[life]]></category>
		<category><![CDATA[lnorigb]]></category>

		<guid isPermaLink="false">http://rumsey.org/blog/?p=166</guid>
		<description><![CDATA[It just didn&#8217;t feel real until Facebook was updated.]]></description>
			<content:encoded><![CDATA[<p>It just didn&#8217;t feel real until Facebook was updated.</p>
<p><a href="http://www.facebook.com/home.php#/profile.php?id=578671653"><img class="alignnone size-medium wp-image-167" title="Facebook Engaged" src="http://rumsey.org/blog/wp-content/uploads/2008/12/picture-1.png" alt="" width="193" height="55" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://rumsey.org/blog/2008/12/its-official/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Too bad</title>
		<link>http://rumsey.org/blog/2008/11/too-bad/</link>
		<comments>http://rumsey.org/blog/2008/11/too-bad/#comments</comments>
		<pubDate>Sun, 30 Nov 2008 20:32:47 +0000</pubDate>
		<dc:creator>Ogre</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[lnorigb]]></category>
		<category><![CDATA[pictures]]></category>
		<category><![CDATA[travel]]></category>
		<category><![CDATA[vancouver]]></category>

		<guid isPermaLink="false">http://rumsey.org/blog/?p=162</guid>
		<description><![CDATA[That there aren&#8217;t more pretty things to look at in BC. And the best for last.]]></description>
			<content:encoded><![CDATA[<p>That there aren&#8217;t more pretty things to look at in BC.</p>
<p><a href="http://rumsey.org/blog/wp-content/uploads/2008/11/l-640-480-08cfe3e4-b7a1-4f11-b274-44fd5b3c99d9.jpeg"><img class="alignnone size-full wp-image-364" src="http://rumsey.org/blog/wp-content/uploads/2008/11/l-640-480-08cfe3e4-b7a1-4f11-b274-44fd5b3c99d9.jpeg" alt="" width="300" height="225" /></a></p>
<p><a href="http://rumsey.org/blog/wp-content/uploads/2008/11/p-640-480-1ead6d1e-b69d-48d3-bd5f-113b686cd7a0.jpeg"><img class="alignnone size-full wp-image-364" src="http://rumsey.org/blog/wp-content/uploads/2008/11/p-640-480-1ead6d1e-b69d-48d3-bd5f-113b686cd7a0.jpeg" alt="" width="225" height="300" /></a></p>
<p>And the best for last.</p>
<p><a href="http://rumsey.org/blog/wp-content/uploads/2008/11/l-640-480-dc2fbe7a-70a1-462a-9784-ba0c282ecf9d.jpeg"><img class="alignnone size-full wp-image-364" src="http://rumsey.org/blog/wp-content/uploads/2008/11/l-640-480-dc2fbe7a-70a1-462a-9784-ba0c282ecf9d.jpeg" alt="" width="300" height="225" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://rumsey.org/blog/2008/11/too-bad/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lnor says</title>
		<link>http://rumsey.org/blog/2008/10/lnor-says-2/</link>
		<comments>http://rumsey.org/blog/2008/10/lnor-says-2/#comments</comments>
		<pubDate>Sat, 01 Nov 2008 02:58:17 +0000</pubDate>
		<dc:creator>Ogre</dc:creator>
				<category><![CDATA[humor]]></category>
		<category><![CDATA[lnorigb]]></category>

		<guid isPermaLink="false">http://rumsey.org/blog/?p=149</guid>
		<description><![CDATA[&#8216;&#8221;Memoirs of a Teenage Amnesiac&#8221;? I don&#8217;t remember putting that on my wishlist.&#8217;]]></description>
			<content:encoded><![CDATA[<p>&#8216;&#8221;Memoirs of a Teenage Amnesiac&#8221;? I don&#8217;t remember putting that on my wishlist.&#8217;</p>
]]></content:encoded>
			<wfw:commentRss>http://rumsey.org/blog/2008/10/lnor-says-2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>In the command center</title>
		<link>http://rumsey.org/blog/2008/09/in-the-command-center/</link>
		<comments>http://rumsey.org/blog/2008/09/in-the-command-center/#comments</comments>
		<pubDate>Mon, 22 Sep 2008 02:20:21 +0000</pubDate>
		<dc:creator>Ogre</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[lnorigb]]></category>

		<guid isPermaLink="false">http://rumsey.org/blog/?p=146</guid>
		<description><![CDATA[Launch missiles!]]></description>
			<content:encoded><![CDATA[<p>Launch missiles!</p>
<p><a href="http://rumsey.org/blog/wp-content/uploads/2008/09/photo.jpg"><img class="alignnone size-medium wp-image-147" title="photo" src="http://rumsey.org/blog/wp-content/uploads/2008/09/photo-300x224.jpg" alt="" width="300" height="224" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://rumsey.org/blog/2008/09/in-the-command-center/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Morning People</title>
		<link>http://rumsey.org/blog/2008/08/morning-people/</link>
		<comments>http://rumsey.org/blog/2008/08/morning-people/#comments</comments>
		<pubDate>Wed, 06 Aug 2008 14:35:04 +0000</pubDate>
		<dc:creator>ogre</dc:creator>
				<category><![CDATA[iPhone]]></category>
		<category><![CDATA[lnorigb]]></category>

		<guid isPermaLink="false">http://rumsey.org/blog/?p=143</guid>
		<description><![CDATA[I have never thought of myself as a morning person. But lately, compared to Lnor and Egg, I am Betty Fracking Crocker. Next on rumsey.org: Artichoke pancakes the whole family will love!]]></description>
			<content:encoded><![CDATA[<p>I have never thought of myself as a morning person.  But lately,   compared to Lnor and Egg, I am Betty Fracking Crocker.<br />
Next on rumsey.org:  Artichoke pancakes the whole family will love! </p>
]]></content:encoded>
			<wfw:commentRss>http://rumsey.org/blog/2008/08/morning-people/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>See what I mean?</title>
		<link>http://rumsey.org/blog/2008/06/see-what-i-mean/</link>
		<comments>http://rumsey.org/blog/2008/06/see-what-i-mean/#comments</comments>
		<pubDate>Tue, 17 Jun 2008 01:20:04 +0000</pubDate>
		<dc:creator>ogre</dc:creator>
				<category><![CDATA[iPhone]]></category>
		<category><![CDATA[lnorigb]]></category>

		<guid isPermaLink="false">http://rumsey.org/blog/?p=141</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><!--Mime Type of File is image/jpeg -->
<div class="postie-image-div"><a href="http://rumsey.org/blog/wp-photos/20080616-182004-1.jpg"><img src="http://rumsey.org/blog/wp-photos/thumb.20080616-182004-1.jpg" alt="photo.jpg" style="none;" class="postie-image" /></a></div>
]]></content:encoded>
			<wfw:commentRss>http://rumsey.org/blog/2008/06/see-what-i-mean/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>You&#8217;re a silly goose, Lnor</title>
		<link>http://rumsey.org/blog/2008/06/youre-a-silly-goose-lnor/</link>
		<comments>http://rumsey.org/blog/2008/06/youre-a-silly-goose-lnor/#comments</comments>
		<pubDate>Sun, 15 Jun 2008 15:55:04 +0000</pubDate>
		<dc:creator>ogre</dc:creator>
				<category><![CDATA[iPhone]]></category>
		<category><![CDATA[lnorigb]]></category>

		<guid isPermaLink="false">http://rumsey.org/blog/?p=140</guid>
		<description><![CDATA[But I love you anyway.]]></description>
			<content:encoded><![CDATA[<p> But I love you anyway. <!--Mime Type of File is image/jpeg -->
<div class="postie-image-div"><a href="http://rumsey.org/blog/wp-photos/20080615-085504-1.jpg"><img src="http://rumsey.org/blog/wp-photos/thumb.20080615-085504-1.jpg" alt="photo.jpg" style="none;" class="postie-image" /></a></div>
]]></content:encoded>
			<wfw:commentRss>http://rumsey.org/blog/2008/06/youre-a-silly-goose-lnor/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>I&#8217;m a TV Star</title>
		<link>http://rumsey.org/blog/2008/04/im-a-tv-star/</link>
		<comments>http://rumsey.org/blog/2008/04/im-a-tv-star/#comments</comments>
		<pubDate>Thu, 24 Apr 2008 18:51:02 +0000</pubDate>
		<dc:creator>Ogre</dc:creator>
				<category><![CDATA[lnorigb]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://rumsey.org/blog/?p=128</guid>
		<description><![CDATA[Or at least the back of my head is. I&#8217;m in there, front and center, right behind Paul&#8217;s stalkergroupie (lnor) and her mom. Things I learned at this taping: Getting all monitors to display everything in the correct aspect ratio all the time is so difficult that even a major network television show can&#8217;t get [...]]]></description>
			<content:encoded><![CDATA[<p>Or at least the back of my head is.  I&#8217;m in there, front and center, right behind Paul&#8217;s <del>stalker</del>groupie (lnor) and her mom.</p>
<p><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/NSdgiTVYrec&#038;hl=en"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/NSdgiTVYrec&#038;hl=en" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>
<p>Things I learned at this taping:</p>
<list>
<li>Getting all monitors to display everything in the correct aspect ratio all the time is so difficult that  even a major network television show can&#8217;t get it right.  Before the show they had an old episode playing on the widescreen studio monitors, and parts of it were squashed vertically.
<li>Jimmy Kimmel &#8220;Live&#8221; is so not live that they taped another musical performance from The Swell Season the night we were there, and it doesn&#8217;t air until Friday.
</list>
]]></content:encoded>
			<wfw:commentRss>http://rumsey.org/blog/2008/04/im-a-tv-star/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

