<?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; Web</title>
	<atom:link href="http://rumsey.org/blog/tag/web/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>Mouse Potato</title>
		<link>http://rumsey.org/blog/2011/09/mouse-potato/</link>
		<comments>http://rumsey.org/blog/2011/09/mouse-potato/#comments</comments>
		<pubDate>Mon, 19 Sep 2011 01:42:55 +0000</pubDate>
		<dc:creator>Ogre</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[mousepotato]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://rumsey.org/blog/?p=620</guid>
		<description><![CDATA[&#8220;Mouse Potato lets you track what TV shows you&#8217;ve watched, and tells you what episodes to watch next.&#8221; I spent a couple of days making a website for tracking what TV episodes you&#8217;ve watched. It&#8217;s live at mousepotato.org, free for anyone to use. It&#8217;ll stay that way unless it somehow gets popular and I have [...]]]></description>
			<content:encoded><![CDATA[<p>&#8220;<b><a href="http://mousepotato.org/">Mouse Potato</a></b> lets you track what TV shows you&#8217;ve watched, and tells you what episodes to watch next.&#8221;</p>
<p>I spent a couple of days making a website for tracking what TV episodes you&#8217;ve watched.  It&#8217;s live at <a href="http://mousepotato.org">mousepotato.org</a>, free for anyone to use.  It&#8217;ll stay that way unless it somehow gets popular and I have to figure out better hosting.  Not that there&#8217;s anything wrong with Dreamhost, I&#8217;m happy with them, but it&#8217;s running on the same VM as this blog and @lnorigb&#8217;s blog and other stuff.</p>
<p>From the about page:</p>
<blockquote>
<p>Other sites concentrate on telling you what episode is going to air next.  At Mouse Potato, we don&#8217;t care.  We watch shows on DVRs, on Blu-Ray, and on the internet.  We just want to remember where WE left off, not where the network left off.</p>
<p>Mouse Potato remembers what episodes you&#8217;ve watched, and tells you what the next one is.  That&#8217;s all there is to it.  <a href="http://mousepotato.org/accounts/register">Sign up</a> and get started today!</p>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://rumsey.org/blog/2011/09/mouse-potato/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<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>I Made Asteroids</title>
		<link>http://rumsey.org/blog/2009/11/i-made-asteroids/</link>
		<comments>http://rumsey.org/blog/2009/11/i-made-asteroids/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 05:49:24 +0000</pubDate>
		<dc:creator>Ogre</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Games]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://rumsey.org/blog/?p=215</guid>
		<description><![CDATA[I stayed home sick today, and made a little browser asteroids game on my laptop.  The cool part is, it doesn&#8217;t need Flash or any other plugin.  It&#8217;s all JavaScript.  The even cooler part is, I am still blissfully ignorant about JavaScript, I wrote the whole thing in Python, using Pyjamas.  I&#8217;ve tested it on [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-thumbnail wp-image-216" title="Asteroid" src="http://rumsey.org/blog/wp-content/uploads/2009/11/Asteroid-150x150.jpg" alt="Asteroid" width="150" height="150" />I stayed home sick today, and made a little browser <a href="http://rumsey.org/space/Space.html">asteroids game</a> on my laptop.  The cool part is, it doesn&#8217;t need Flash or any other plugin.  It&#8217;s all JavaScript.  The even cooler part is, I am still blissfully ignorant about JavaScript, I wrote the whole thing in Python, using <a href="http://pyjs.org">Pyjamas</a>.  I&#8217;ve tested it on Firefox and Safari, works great on both, and runs super smooth even with lots of asteroids.</p>
<p>It&#8217;s not much of a game, really, just classic Asteroids without even scores or keeping track of ships or much of anything but the basics.  But it&#8217;s only about 300 lines of Python, and it runs in any off the shelf browser.</p>
<p>I&#8217;ll try to add some polish to it and get the source up somewhere soon for anyone interested.  I&#8217;m pretty happy I managed to do all that in a day, plus a few hours on previous days getting Pyjamas set up.</p>
<p><strong>Update </strong>(11/19): <a href="http://rumsey.org/space-0.2.tar.gz">I uploaded the source code.</a> It&#8217;s not the best code I&#8217;ve ever written, and it&#8217;s not commented at all, but now it&#8217;s a real project!  Sort of.</p>
<p><strong>Update</strong> (11/20): Version 0.2 is now live, with sound effects, a score, and a different Canvas object that allows it to run in IE6.  It&#8217;s too slow to be playable in IE6, but at least it runs.</p>
]]></content:encoded>
			<wfw:commentRss>http://rumsey.org/blog/2009/11/i-made-asteroids/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Language Benchmarks: Why Ruby Won&#8217;t Win</title>
		<link>http://rumsey.org/blog/2007/06/language-benchmarks-why-ruby-wont-win/</link>
		<comments>http://rumsey.org/blog/2007/06/language-benchmarks-why-ruby-wont-win/#comments</comments>
		<pubDate>Fri, 22 Jun 2007 05:10:08 +0000</pubDate>
		<dc:creator>Ogre</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://rumsey.org/blog/?p=44</guid>
		<description><![CDATA[Benchmarking programming language performance is an imprecise exercise, but the Computer Language Benchmarks Game makes a pretty good go at it.  Ruby is next to last on the overall scores, and loses on pretty much every test to Python and Lua, the current kings of game scripting in general.  I still think Ruby is a [...]]]></description>
			<content:encoded><![CDATA[<p>Benchmarking programming language performance is an imprecise exercise, but the <a href="http://shootout.alioth.debian.org/gp4/benchmark.php?test=all&amp;lang=all">Computer Language Benchmarks Game</a> makes a pretty good go at it.  Ruby is next to last on the overall scores, and loses on pretty much every test to Python and Lua, the current kings of game scripting in general.  I still think Ruby is a fantastic language and wholly appropriate for a lot of tasks.  But general performance is a major consideration for use as an embedded game scripting language.  Until they get Ruby into the same performance class as Python and Lua, it&#8217;s not going to be a viable option for what I&#8217;ve been looking at it for.</p>
]]></content:encoded>
			<wfw:commentRss>http://rumsey.org/blog/2007/06/language-benchmarks-why-ruby-wont-win/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Late to the party</title>
		<link>http://rumsey.org/blog/2007/06/late-to-the-party/</link>
		<comments>http://rumsey.org/blog/2007/06/late-to-the-party/#comments</comments>
		<pubDate>Tue, 05 Jun 2007 03:34:00 +0000</pubDate>
		<dc:creator>Ogre</dc:creator>
				<category><![CDATA[mac]]></category>
		<category><![CDATA[photography]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://rumsey.org/blog/?p=38</guid>
		<description><![CDATA[I wrote a little program in Ruby (and I do mean little, Ruby continues to impress me with ease of getting things done) to get a semi-random picture from Flickr (checks for anything new from Stuck in Customs first, then gets a random picture tagged with &#8220;landscape&#8221; if there aren&#8217;t any), then set it as [...]]]></description>
			<content:encoded><![CDATA[<p>I wrote a little program in Ruby (and I do mean little, Ruby continues to impress me with ease of getting things done) to get a semi-random picture from Flickr (checks for anything new from <a href="http://www.stuckincustoms.com/">Stuck in Customs</a> first, then gets a random picture tagged with &#8220;landscape&#8221; if there aren&#8217;t any), then set it as my desktop.  I set it to run every half hour as a cron job.  Then I set up <a href="http://projects.tynsoe.org/en/geektool/">GeekTool</a> to get the current picture displayed (the ruby program writes it to a log file, I have GeekTool get the last line of that file) and display the title and user at the lower right of my desktop.</p>
<p>I figured there would already be several other programs way cooler than mine, but if there weren&#8217;t I figured I&#8217;d package it up with a few more options and release it.  Turns out, <a href="http://www.macosxhints.com/article.php?story=20070131065033938">you can already do most of that without downloading any software at all.</a>  You can subscribe to photo RSS feeds in iPhoto (news to me!) and you can then use photos from those feeds as desktop backgrounds directly from the Desktop preferences panel.  OS X and its packaged applications are just really impressive sometimes.</p>
<p>On the other hand, the randomly select a picture every X minutes feature doesn&#8217;t work with photo RSS feeds, so it doesn&#8217;t actually do everything my little program does.  I bet Leopard will.  But I&#8217;ve got at least a narrow window where I can release an app that does it and maybe someone will actually want it <img src='http://rumsey.org/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />    Plus I can be a little more flexible &#8211; I don&#8217;t think you can do the trick I&#8217;m doing where a particular user&#8217;s pictures always go up when there&#8217;s a new one, but that depends more on how sophisticated you can get with Flickr&#8217;s RSS feeds.  I haven&#8217;t really looked at that.</p>
<p>It&#8217;s all mainly for my own education anyway, and I think I&#8217;m going to use it as an excuse to learn about <a href="http://rubycocoa.sourceforge.net/HomePage">RubyCocoa</a>  and then maybe release something when I have a &#8220;real&#8221; standalone Mac app that normal Mac users can use.  (IE Requiring crontab editing is RIGHT OUT.) But if anyone reads this and wants the ruby script sooner than that, send me a note.  It was fun to write and fun to get all these great pictures on my desktop all the time!</p>
]]></content:encoded>
			<wfw:commentRss>http://rumsey.org/blog/2007/06/late-to-the-party/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

