<?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 for California Dreams</title>
	<atom:link href="http://www.heikkitoivonen.net/blog/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.heikkitoivonen.net/blog</link>
	<description>A Finn in Silicon Valley - Adventures in Technology</description>
	<pubDate>Fri, 21 Nov 2008 16:29:47 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.3</generator>
		<item>
		<title>Comment on Debugging Python Regular Expressions by C. Collis</title>
		<link>http://www.heikkitoivonen.net/blog/2008/11/09/debugging-python-regular-expressions/#comment-5280</link>
		<dc:creator>C. Collis</dc:creator>
		<pubDate>Mon, 17 Nov 2008 14:23:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.heikkitoivonen.net/blog/?p=472#comment-5280</guid>
		<description>I usually use this: http://www.radsoftware.com.au/regexdesigner/ which is simply excellent when designing regular expressions. Although it is written for C# you will have no problem using the regular expressions with Python.</description>
		<content:encoded><![CDATA[<p>I usually use this: <a href="http://www.radsoftware.com.au/regexdesigner/" rel="nofollow">http://www.radsoftware.com.au/regexdesigner/</a> which is simply excellent when designing regular expressions. Although it is written for C# you will have no problem using the regular expressions with Python.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Looking for Volunteers to Run M2Crypto Tinderbox Buildslaves by Federico Ceratto</title>
		<link>http://www.heikkitoivonen.net/blog/2008/11/07/looking-for-volunteers-to-run-m2crypto-tinderbox-buildslaves/#comment-5057</link>
		<dc:creator>Federico Ceratto</dc:creator>
		<pubDate>Tue, 11 Nov 2008 09:17:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.heikkitoivonen.net/blog/?p=469#comment-5057</guid>
		<description>Hello Heikki,

If you are still looking for someone running a buildslave drop me a line, maybe I can help you with one of my VPS.

Bye,
Federico Ceratto</description>
		<content:encoded><![CDATA[<p>Hello Heikki,</p>
<p>If you are still looking for someone running a buildslave drop me a line, maybe I can help you with one of my VPS.</p>
<p>Bye,<br />
Federico Ceratto</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Debugging Python Regular Expressions by Kent Johnson</title>
		<link>http://www.heikkitoivonen.net/blog/2008/11/09/debugging-python-regular-expressions/#comment-5037</link>
		<dc:creator>Kent Johnson</dc:creator>
		<pubDate>Mon, 10 Nov 2008 11:51:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.heikkitoivonen.net/blog/?p=472#comment-5037</guid>
		<description>A little-known secret is that Python includes a regex program similar to Kodos at /Tools/scripts/redemo.py. redemo does not have all the features of Kodos but it does show matched groups. redemo uses Tkinter so it is easier to install than Kodos.</description>
		<content:encoded><![CDATA[<p>A little-known secret is that Python includes a regex program similar to Kodos at /Tools/scripts/redemo.py. redemo does not have all the features of Kodos but it does show matched groups. redemo uses Tkinter so it is easier to install than Kodos.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Some Blog Maintenance by Justin Baker</title>
		<link>http://www.heikkitoivonen.net/blog/2008/10/13/some-blog-maintenance/#comment-4833</link>
		<dc:creator>Justin Baker</dc:creator>
		<pubDate>Mon, 03 Nov 2008 11:17:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.heikkitoivonen.net/blog/?p=381#comment-4833</guid>
		<description>That's a very fair comment Heikki.  We agree with you. It is something we have been working on implementing. We do have this enabled for some sites on an experimental basis (e.g. take a look at Techcrunch). The disadvantage of the current implementation is that the link is forced through a transcoder which is a little ugly. We are working on a solution which links through Mippin when an RSS is available - but it is not trivial. If you'd like us to enable all links in your feed let us know. Else, we'll let you know when we have this conundrum solved. Thanks for the feedback.</description>
		<content:encoded><![CDATA[<p>That&#8217;s a very fair comment Heikki.  We agree with you. It is something we have been working on implementing. We do have this enabled for some sites on an experimental basis (e.g. take a look at Techcrunch). The disadvantage of the current implementation is that the link is forced through a transcoder which is a little ugly. We are working on a solution which links through Mippin when an RSS is available - but it is not trivial. If you&#8217;d like us to enable all links in your feed let us know. Else, we&#8217;ll let you know when we have this conundrum solved. Thanks for the feedback.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Debugging Python Extension Written in C with Eclipse by Joachim Dahl</title>
		<link>http://www.heikkitoivonen.net/blog/2008/07/21/debugging-python-extension-written-in-c-with-eclipse/#comment-4781</link>
		<dc:creator>Joachim Dahl</dc:creator>
		<pubDate>Sat, 01 Nov 2008 23:05:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.heikkitoivonen.net/blog/?p=83#comment-4781</guid>
		<description>Thank you for posting this guide - I have been trying to get it working
for my Python extension module,  but couldn't quite figure it out.

Configuring Eclipse as a development tool for writing Python extension
modules would be tremendously useful.  If you ever have time,  I am
sure that many Python programmers will be very grateful for a step-by-step
guide of how to set this up for a very simple extension module (for example
the 'noddy' project in the Python documentation).

Joachim</description>
		<content:encoded><![CDATA[<p>Thank you for posting this guide - I have been trying to get it working<br />
for my Python extension module,  but couldn&#8217;t quite figure it out.</p>
<p>Configuring Eclipse as a development tool for writing Python extension<br />
modules would be tremendously useful.  If you ever have time,  I am<br />
sure that many Python programmers will be very grateful for a step-by-step<br />
guide of how to set this up for a very simple extension module (for example<br />
the &#8216;noddy&#8217; project in the Python documentation).</p>
<p>Joachim</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Yearly Donations to Open Source Projects by Heikki Toivonen</title>
		<link>http://www.heikkitoivonen.net/blog/2008/10/30/yearly-donations-to-open-source-projects/#comment-4756</link>
		<dc:creator>Heikki Toivonen</dc:creator>
		<pubDate>Sat, 01 Nov 2008 05:49:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.heikkitoivonen.net/blog/?p=454#comment-4756</guid>
		<description>Hmm, you are right, I did miss it. Thanks for pointing it out. I went to the homepage, but it did not occur to me to scroll down; on the right I see "Latest News" so I didn't realize there would be something else as well. I looked at the top bar for links, and checked out "Support" and "FAQ" but found no mentions of donations. You might want to consider making the donation option clearer to people who don't realize to scroll down on the home page.

I just sent a small donation to SQLAlchemy.</description>
		<content:encoded><![CDATA[<p>Hmm, you are right, I did miss it. Thanks for pointing it out. I went to the homepage, but it did not occur to me to scroll down; on the right I see &#8220;Latest News&#8221; so I didn&#8217;t realize there would be something else as well. I looked at the top bar for links, and checked out &#8220;Support&#8221; and &#8220;FAQ&#8221; but found no mentions of donations. You might want to consider making the donation option clearer to people who don&#8217;t realize to scroll down on the home page.</p>
<p>I just sent a small donation to SQLAlchemy.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Yearly Donations to Open Source Projects by mike bayer</title>
		<link>http://www.heikkitoivonen.net/blog/2008/10/30/yearly-donations-to-open-source-projects/#comment-4733</link>
		<dc:creator>mike bayer</dc:creator>
		<pubDate>Fri, 31 Oct 2008 14:42:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.heikkitoivonen.net/blog/?p=454#comment-4733</guid>
		<description>donate link is right at the bottom right ! theres a radio button and a paypal logo :)

We also of course consider creation of good bug reports, unit tests, and patches as contributions.</description>
		<content:encoded><![CDATA[<p>donate link is right at the bottom right ! theres a radio button and a paypal logo <img src='http://www.heikkitoivonen.net/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>We also of course consider creation of good bug reports, unit tests, and patches as contributions.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Upgraded D820 to Ubuntu 8.04 by Brisbane web designer</title>
		<link>http://www.heikkitoivonen.net/blog/2008/09/04/upgraded-d820-to-ubuntu-804/#comment-4619</link>
		<dc:creator>Brisbane web designer</dc:creator>
		<pubDate>Mon, 27 Oct 2008 06:17:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.heikkitoivonen.net/blog/?p=266#comment-4619</guid>
		<description>I run Hardy Heron on an old Toshiba Portege 2210 circa 2002. It works surprisingly well. I'm looking forward to this week's release of Ubuntu. Apparently to upgrade it's just one command at the command line !</description>
		<content:encoded><![CDATA[<p>I run Hardy Heron on an old Toshiba Portege 2210 circa 2002. It works surprisingly well. I&#8217;m looking forward to this week&#8217;s release of Ubuntu. Apparently to upgrade it&#8217;s just one command at the command line !</p>
]]></content:encoded>
	</item>
</channel>
</rss>
