<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: Wide Load</title>
	<atom:link href="http://lavonardo.net/blog/2008/02/18/wide-load/feed/" rel="self" type="application/rss+xml" />
	<link>http://lavonardo.net/blog/2008/02/18/wide-load/</link>
	<description>The life and times of a fallen hacker</description>
	<pubDate>Sun, 20 Jul 2008 17:12:54 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5</generator>
		<item>
		<title>By: lavonardo</title>
		<link>http://lavonardo.net/blog/2008/02/18/wide-load/#comment-70</link>
		<dc:creator>lavonardo</dc:creator>
		<pubDate>Tue, 19 Feb 2008 11:58:36 +0000</pubDate>
		<guid isPermaLink="false">http://lavonardo.net/blog/2008/02/18/wide-load/#comment-70</guid>
		<description>Thanks, I'll give this baby a shot.  

Shouldn't be a problem to figure out the login/indentation :-/</description>
		<content:encoded><![CDATA[<p>Thanks, I&#8217;ll give this baby a shot.  </p>
<p>Shouldn&#8217;t be a problem to figure out the login/indentation :-/</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Juha Ylitalo</title>
		<link>http://lavonardo.net/blog/2008/02/18/wide-load/#comment-69</link>
		<dc:creator>Juha Ylitalo</dc:creator>
		<pubDate>Tue, 19 Feb 2008 11:17:26 +0000</pubDate>
		<guid isPermaLink="false">http://lavonardo.net/blog/2008/02/18/wide-load/#comment-69</guid>
		<description>And of course system decided to ignore my white spaces from beginning of lines (one of the typical problems in copy pasting python code), but if you need copy with all relevant spaces in places, send me e-mail. :)</description>
		<content:encoded><![CDATA[<p>And of course system decided to ignore my white spaces from beginning of lines (one of the typical problems in copy pasting python code), but if you need copy with all relevant spaces in places, send me e-mail. :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Juha Ylitalo</title>
		<link>http://lavonardo.net/blog/2008/02/18/wide-load/#comment-68</link>
		<dc:creator>Juha Ylitalo</dc:creator>
		<pubDate>Tue, 19 Feb 2008 11:15:40 +0000</pubDate>
		<guid isPermaLink="false">http://lavonardo.net/blog/2008/02/18/wide-load/#comment-68</guid>
		<description>#!/usr/bin/python
import glob
import random
import sys
import time
imglist = glob.glob("/home/...something.../*.jpg")
random.seed(time.time())
fname = imglist[random.randint(0,len(imglist)-1)]
sys.stdout.write('''Content-Type: image/jpg

''')
f = open(fname)
content = f.read()
while content:
    sys.stdout.write(content)
    content = f.read()
f.close()
sys.exit(0) 
# It is missing if __name__ == "__main__" type of stuff, but it does the work.</description>
		<content:encoded><![CDATA[<p>#!/usr/bin/python<br />
import glob<br />
import random<br />
import sys<br />
import time<br />
imglist = glob.glob(&#8221;/home/&#8230;something&#8230;/*.jpg&#8221;)<br />
random.seed(time.time())<br />
fname = imglist[random.randint(0,len(imglist)-1)]<br />
sys.stdout.write(&#8221;&#8217;Content-Type: image/jpg</p>
<p>&#8221;&#8217;)<br />
f = open(fname)<br />
content = f.read()<br />
while content:<br />
    sys.stdout.write(content)<br />
    content = f.read()<br />
f.close()<br />
sys.exit(0)<br />
# It is missing if __name__ == &#8220;__main__&#8221; type of stuff, but it does the work.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
