<?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; computers</title>
	<atom:link href="http://rumsey.org/blog/tag/computers/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>Twitter</title>
		<link>http://rumsey.org/blog/2008/01/twitter/</link>
		<comments>http://rumsey.org/blog/2008/01/twitter/#comments</comments>
		<pubDate>Fri, 18 Jan 2008 19:15:51 +0000</pubDate>
		<dc:creator>Ogre</dc:creator>
				<category><![CDATA[computers]]></category>
		<category><![CDATA[Lifehack]]></category>

		<guid isPermaLink="false">http://rumsey.org/blog/?p=114</guid>
		<description><![CDATA[Is my average post too long winded for you? Then you should follow my stupid twitter updates instead.]]></description>
			<content:encoded><![CDATA[<p>Is my average post too long winded for you?  Then you should follow my <a href="http://twitter.com/joerumz">stupid twitter updates</a> instead.</p>
]]></content:encoded>
			<wfw:commentRss>http://rumsey.org/blog/2008/01/twitter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Today is gadget day</title>
		<link>http://rumsey.org/blog/2008/01/today-is-gadget-day/</link>
		<comments>http://rumsey.org/blog/2008/01/today-is-gadget-day/#comments</comments>
		<pubDate>Tue, 15 Jan 2008 19:48:31 +0000</pubDate>
		<dc:creator>Ogre</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[computers]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Lifehack]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://rumsey.org/blog/?p=113</guid>
		<description><![CDATA[The new MacBook Air was announced today.  &#8220;We&#8221; promptly ordered one, which really means I can actually have my MacBook Pro back in about two weeks. But that&#8217;s not why it&#8217;s gadget day.  I posted a while back about the conditions under which Honorary Gadget Girl could drop the &#8220;Honorary&#8221;.  I have been remiss in [...]]]></description>
			<content:encoded><![CDATA[<p>The new MacBook Air was announced today.  &#8220;We&#8221; promptly ordered one, which really means I can actually have my MacBook Pro back in about two weeks.</p>
<p>But that&#8217;s not why it&#8217;s gadget day.  I posted a while back about the conditions under which Honorary Gadget Girl could drop the &#8220;Honorary&#8221;.  I have been remiss in not posting that she got an  iPhone for Christmas and so has not been Honorary for a month.  <a href="http://rumsey.org/blog/?p=84">But today she met the other condition as well.</a>  There&#8217;ll be &#8220;music&#8221; in the &#8220;air&#8221; tonight.</p>
<p>I&#8217;m so glad my Mom knows about this blog.  Hi, Mom!</p>
]]></content:encoded>
			<wfw:commentRss>http://rumsey.org/blog/2008/01/today-is-gadget-day/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dust in the wind</title>
		<link>http://rumsey.org/blog/2007/09/dust-in-the-wind/</link>
		<comments>http://rumsey.org/blog/2007/09/dust-in-the-wind/#comments</comments>
		<pubDate>Sun, 23 Sep 2007 02:58:30 +0000</pubDate>
		<dc:creator>Ogre</dc:creator>
				<category><![CDATA[computers]]></category>
		<category><![CDATA[humor]]></category>
		<category><![CDATA[lnorigb]]></category>

		<guid isPermaLink="false">http://rumsey.org/blog/?p=82</guid>
		<description><![CDATA[Her, writing a blog post: &#8220;Why can&#8217;t I delete this period? What is that?&#8221; Me: &#8220;That&#8217;s a speck of dust&#8221; Her: &#8220;&#8230;&#8221;]]></description>
			<content:encoded><![CDATA[<p>Her, writing a blog post: &#8220;Why can&#8217;t I delete this period?  What is that?&#8221;</p>
<p>Me: &#8220;That&#8217;s a speck of dust&#8221;</p>
<p>Her: &#8220;&#8230;&#8221;</p>
<p><img src="http://rumsey.org/blog/wp-content/uploads/2007/09/image002.thumbnail.jpg" alt="image002.jpg" /></p>
]]></content:encoded>
			<wfw:commentRss>http://rumsey.org/blog/2007/09/dust-in-the-wind/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Speaking at GDC</title>
		<link>http://rumsey.org/blog/2007/07/speaking-at-gdc/</link>
		<comments>http://rumsey.org/blog/2007/07/speaking-at-gdc/#comments</comments>
		<pubDate>Mon, 30 Jul 2007 18:17:41 +0000</pubDate>
		<dc:creator>Ogre</dc:creator>
				<category><![CDATA[computers]]></category>
		<category><![CDATA[Games]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://rumsey.org/blog/?p=72</guid>
		<description><![CDATA[I&#8217;ll be on a round table discussion on &#8220;Taming Online Scaling Issues&#8221; at the Austin Game Developer&#8217;s Conference, September 5th through the 7th. My session is on the 6th. Since it&#8217;s just a round table, I&#8217;m only talking for a few minutes, as are the other participants, and then it&#8217;s an open discussion for anyone [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ll be on a round table discussion on &#8220;Taming Online Scaling Issues&#8221; at the Austin Game Developer&#8217;s Conference, September 5th through the 7th.  <a href="https://www.cmpevents.com/GDAU07/a.asp?option=G&amp;V=3&amp;id=376654">My session is on the 6th.</a>  Since it&#8217;s just a round table, I&#8217;m only talking for a few minutes, as are the other participants, and then it&#8217;s an open discussion for anyone that shows up.</p>
<p>Stop by and join in, or just say hi, if you&#8217;re around.</p>
<p>Taming online scaling issues is closely related to taming lions.  Whips and wodden chairs are involved, and every once in a while someone suffers a disfiguring accident.</p>
]]></content:encoded>
			<wfw:commentRss>http://rumsey.org/blog/2007/07/speaking-at-gdc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Posting from iPhone</title>
		<link>http://rumsey.org/blog/2007/07/posting-from-iphone/</link>
		<comments>http://rumsey.org/blog/2007/07/posting-from-iphone/#comments</comments>
		<pubDate>Mon, 02 Jul 2007 03:33:30 +0000</pubDate>
		<dc:creator>Ogre</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[computers]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://rumsey.org/blog/?p=51</guid>
		<description><![CDATA[Only took 13 calls and 46 hours, but it works now. Whew.]]></description>
			<content:encoded><![CDATA[<p>Only took 13 calls and 46 hours, but it works now.  Whew.</p>
]]></content:encoded>
			<wfw:commentRss>http://rumsey.org/blog/2007/07/posting-from-iphone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Disk Space</title>
		<link>http://rumsey.org/blog/2007/06/disk-space/</link>
		<comments>http://rumsey.org/blog/2007/06/disk-space/#comments</comments>
		<pubDate>Tue, 19 Jun 2007 05:07:02 +0000</pubDate>
		<dc:creator>Ogre</dc:creator>
				<category><![CDATA[computers]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://rumsey.org/blog/?p=43</guid>
		<description><![CDATA[I remember the first time I had 1TB of storage online. I&#8217;d been thinking for several years before hand that anyone could easily build a single box with 1TB of storage. I didn&#8217;t hit it until I added a 500GB network drive. That drive is still online, mostly just holding backups of stuff from important [...]]]></description>
			<content:encoded><![CDATA[<p>I remember the first time I had 1TB of storage online.  I&#8217;d been thinking for several years before hand that anyone could easily build a single box with 1TB of storage.  I didn&#8217;t hit it until I added a 500GB network drive.  That drive is still online, mostly just holding backups of stuff from important drives.  Everything else that made up that original 1TB is mostly offline (one machine is still hooked up and working, but almost never turned on)</p>
<p>I have 2TB online now.  I didn&#8217;t even notice when that happened.  It was less than two years after I hit 1TB, maybe less than one year.  And I didn&#8217;t notice until someone else mentioned that they had 2TB online.  Not only that, but half of it is free space.  I have 1TB+ of free space and I didn&#8217;t even notice that.</p>
<p>Of course, not many people hook a 750GB firewire drive up to a Mac Mini and use it as their media center &#8220;PC&#8221;, but that&#8217;s just the kind of guy I am.</p>
]]></content:encoded>
			<wfw:commentRss>http://rumsey.org/blog/2007/06/disk-space/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

