<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Histogram of an ASCII Raster</title>
	<atom:link href="http://jduck.net/2007/03/06/histogram-of-an-ascii-raster/feed/" rel="self" type="application/rss+xml" />
	<link>http://jduck.net/2007/03/06/histogram-of-an-ascii-raster/</link>
	<description></description>
	<lastBuildDate>Fri, 03 Jun 2011 20:34:30 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: pyther</title>
		<link>http://jduck.net/2007/03/06/histogram-of-an-ascii-raster/comment-page-1/#comment-4846</link>
		<dc:creator>pyther</dc:creator>
		<pubDate>Fri, 02 Jul 2010 11:14:26 +0000</pubDate>
		<guid isPermaLink="false">http://jduck.net/2007/03/06/histogram-of-an-ascii-raster/#comment-4846</guid>
		<description>cool piece of code.
There is a minor bug in the following line:
row = row[1:len(row)-1]

That should work:
row = row[:len(row)-1]
Otherwise the first col gets lost.</description>
		<content:encoded><![CDATA[<p>cool piece of code.<br />
There is a minor bug in the following line:<br />
row = row[1:len(row)-1]</p>
<p>That should work:<br />
row = row[:len(row)-1]<br />
Otherwise the first col gets lost.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: deepak</title>
		<link>http://jduck.net/2007/03/06/histogram-of-an-ascii-raster/comment-page-1/#comment-12</link>
		<dc:creator>deepak</dc:creator>
		<pubDate>Mon, 12 Mar 2007 16:26:18 +0000</pubDate>
		<guid isPermaLink="false">http://jduck.net/2007/03/06/histogram-of-an-ascii-raster/#comment-12</guid>
		<description>good work.

what does the line:

histo = dict()

do? Looks like array declaration. But how did it figure out how long the array is?</description>
		<content:encoded><![CDATA[<p>good work.</p>
<p>what does the line:</p>
<p>histo = dict()</p>
<p>do? Looks like array declaration. But how did it figure out how long the array is?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

