<?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 for Blog&#039;o&#039;Phil</title>
	<atom:link href="http://pcscholl.de/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://pcscholl.de</link>
	<description>Infrequent stuff about what I&#039;m doing...</description>
	<lastBuildDate>Thu, 18 Aug 2011 09:13:38 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
	<item>
		<title>Comment on Better later than never: the pyparsing-based date parser by Using Pyparsing to extract dates from text block</title>
		<link>http://pcscholl.de/2009/09/24/better-later-than-never-the-pyparsing-based-date-parser/comment-page-1/#comment-4145</link>
		<dc:creator>Using Pyparsing to extract dates from text block</dc:creator>
		<pubDate>Thu, 18 Aug 2011 09:13:38 +0000</pubDate>
		<guid isPermaLink="false">http://pcscholl.de/?p=39#comment-4145</guid>
		<description>&lt;p&gt;[...]  code : http://dpaste.com/hold/150360/  Actual dates:  Original code from Phil here: http://pcscholl.de/2009/09/24/better-later-than-never-the-pyparsing-based-date-parser/ Code: http://dpaste.com/hold/150357/      This entry was posted in Tech. Bookmark the permalink. [...]&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>[...]  code : <a href="http://dpaste.com/hold/150360/" rel="nofollow">http://dpaste.com/hold/150360/</a>  Actual dates:  Original code from Phil here: <a href="http://pcscholl.de/2009/09/24/better-later-than-never-the-pyparsing-based-date-parser/" rel="nofollow">http://pcscholl.de/2009/09/24/better-later-than-never-the-pyparsing-based-date-parser/</a> Code: <a href="http://dpaste.com/hold/150357/" rel="nofollow">http://dpaste.com/hold/150357/</a>      This entry was posted in Tech. Bookmark the permalink. [...]</p>]]></content:encoded>
	</item>
	<item>
		<title>Comment on Better later than never: the pyparsing-based date parser by max khesin</title>
		<link>http://pcscholl.de/2009/09/24/better-later-than-never-the-pyparsing-based-date-parser/comment-page-1/#comment-1114</link>
		<dc:creator>max khesin</dc:creator>
		<pubDate>Thu, 11 Nov 2010 18:23:49 +0000</pubDate>
		<guid isPermaLink="false">http://pcscholl.de/?p=39#comment-1114</guid>
		<description>&lt;p&gt;months_zero_prefix = oneOf(&quot; &quot;.join([(&quot;%02d&quot; % x) for x in xrange(1, 10)]))&lt;/p&gt;

&lt;p&gt;=&gt;&lt;/p&gt;

&lt;p&gt;months_zero_prefix = oneOf([&quot;%02d&quot;%x for x in xrange(1, 10)])&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>months_zero_prefix = oneOf(&#8221; &#8220;.join([("%02d" % x) for x in xrange(1, 10)]))</p>

<p>=&gt;</p>

<p>months_zero_prefix = oneOf(["%02d"%x for x in xrange(1, 10)])</p>]]></content:encoded>
	</item>
	<item>
		<title>Comment on Java Applets in XUL by Phil</title>
		<link>http://pcscholl.de/2007/08/23/java-applets-in-xul/comment-page-1/#comment-163</link>
		<dc:creator>Phil</dc:creator>
		<pubDate>Tue, 26 Jan 2010 09:41:34 +0000</pubDate>
		<guid isPermaLink="false">http://pcscholl.de/2007/08/23/java-applets-in-xul/#comment-163</guid>
		<description>&lt;p&gt;Actually, as it turned out when Firefox 3.6 came out, this doesn&#039;t work anymore... I get some weird errors (applet panel is not displayed but runs, etc.). Right now I am trying to get it working again - when (if?) I succeed I will post some update...&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Actually, as it turned out when Firefox 3.6 came out, this doesn&#8217;t work anymore&#8230; I get some weird errors (applet panel is not displayed but runs, etc.). Right now I am trying to get it working again &#8211; when (if?) I succeed I will post some update&#8230;</p>]]></content:encoded>
	</item>
	<item>
		<title>Comment on Better later than never: the pyparsing-based date parser by Phil</title>
		<link>http://pcscholl.de/2009/09/24/better-later-than-never-the-pyparsing-based-date-parser/comment-page-1/#comment-162</link>
		<dc:creator>Phil</dc:creator>
		<pubDate>Tue, 26 Jan 2010 09:37:18 +0000</pubDate>
		<guid isPermaLink="false">http://pcscholl.de/?p=39#comment-162</guid>
		<description>&lt;p&gt;Good that it is of some use - I primarily coded this, as I wanted to try pyparsing. The one thing that still bothers me is performance: if you skim through large texts it is unbelievable slow...&lt;/p&gt;

&lt;p&gt;Additionally, I have some test cases that won&#039;t work with this code but never got to fix it. I will possibly look back into it when I have a little spare time...&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Good that it is of some use &#8211; I primarily coded this, as I wanted to try pyparsing. The one thing that still bothers me is performance: if you skim through large texts it is unbelievable slow&#8230;</p>

<p>Additionally, I have some test cases that won&#8217;t work with this code but never got to fix it. I will possibly look back into it when I have a little spare time&#8230;</p>]]></content:encoded>
	</item>
	<item>
		<title>Comment on Better later than never: the pyparsing-based date parser by Phoebe Bright</title>
		<link>http://pcscholl.de/2009/09/24/better-later-than-never-the-pyparsing-based-date-parser/comment-page-1/#comment-161</link>
		<dc:creator>Phoebe Bright</dc:creator>
		<pubDate>Mon, 25 Jan 2010 20:32:06 +0000</pubDate>
		<guid isPermaLink="false">http://pcscholl.de/?p=39#comment-161</guid>
		<description>&lt;p&gt;Thanks for sharing this code - pulling dates from text has been problem I&#039;ve been trying to crack for ages!  Have made a few mods and added some tests and posted on my blog.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Thanks for sharing this code &#8211; pulling dates from text has been problem I&#8217;ve been trying to crack for ages!  Have made a few mods and added some tests and posted on my blog.</p>]]></content:encoded>
	</item>
	<item>
		<title>Comment on Java Applets in XUL by Suhas</title>
		<link>http://pcscholl.de/2007/08/23/java-applets-in-xul/comment-page-1/#comment-160</link>
		<dc:creator>Suhas</dc:creator>
		<pubDate>Mon, 25 Jan 2010 16:12:33 +0000</pubDate>
		<guid isPermaLink="false">http://pcscholl.de/2007/08/23/java-applets-in-xul/#comment-160</guid>
		<description>&lt;p&gt;Hi,&lt;/p&gt;

&lt;p&gt;I am experiencing the same issue in one my project, do you have an example that you can share? I appreciate it
Thx&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Hi,</p>

<p>I am experiencing the same issue in one my project, do you have an example that you can share? I appreciate it
Thx</p>]]></content:encoded>
	</item>
	<item>
		<title>Comment on Organizing working with the desktop by Chris</title>
		<link>http://pcscholl.de/2009/08/05/organizing-working-with-the-desktop/comment-page-1/#comment-159</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Wed, 13 Jan 2010 08:11:51 +0000</pubDate>
		<guid isPermaLink="false">http://pcscholl.de/?p=25#comment-159</guid>
		<description>&lt;p&gt;&quot;and very often cleaning up the mess that some tools leave behind&quot;&lt;/p&gt;

&lt;p&gt;I found sandboxie (www.sandboxie.com) to be a very handy tool for testing new software without the risk of cluttering my harddisk in case i decide that i dont like it&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>&#8220;and very often cleaning up the mess that some tools leave behind&#8221;</p>

<p>I found sandboxie (www.sandboxie.com) to be a very handy tool for testing new software without the risk of cluttering my harddisk in case i decide that i dont like it</p>]]></content:encoded>
	</item>
	<item>
		<title>Comment on Parsing Date Strings with pyparsing by Phil</title>
		<link>http://pcscholl.de/2008/08/25/parsing-date-strings-with-pyparsing/comment-page-1/#comment-145</link>
		<dc:creator>Phil</dc:creator>
		<pubDate>Thu, 24 Sep 2009 07:05:15 +0000</pubDate>
		<guid isPermaLink="false">http://pcscholl.de/2008/08/25/parsing-date-strings-with-pyparsing/#comment-145</guid>
		<description>&lt;p&gt;I have written a new blog post with the actual code I wrote then... See http://pcscholl.de/2009/09/24/better-later-than-never-the-pyparsing-based-date-parser/ (pingback doesn&#039;t seem to work)...&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I have written a new blog post with the actual code I wrote then&#8230; See <a href="http://pcscholl.de/2009/09/24/better-later-than-never-the-pyparsing-based-date-parser/" rel="nofollow">http://pcscholl.de/2009/09/24/better-later-than-never-the-pyparsing-based-date-parser/</a> (pingback doesn&#8217;t seem to work)&#8230;</p>]]></content:encoded>
	</item>
	<item>
		<title>Comment on Parsing Date Strings with pyparsing by Blog&#8217;o&#39;Phil &#187; Better later than never: the pyparsing-based date parser</title>
		<link>http://pcscholl.de/2008/08/25/parsing-date-strings-with-pyparsing/comment-page-1/#comment-144</link>
		<dc:creator>Blog&#8217;o&#39;Phil &#187; Better later than never: the pyparsing-based date parser</dc:creator>
		<pubDate>Thu, 24 Sep 2009 06:59:33 +0000</pubDate>
		<guid isPermaLink="false">http://pcscholl.de/2008/08/25/parsing-date-strings-with-pyparsing/#comment-144</guid>
		<description>&lt;p&gt;[...] promised in my earlier post I will just release the important part for my date parser using pyparsing. Thanks for Ryan to [...]&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>[...] promised in my earlier post I will just release the important part for my date parser using pyparsing. Thanks for Ryan to [...]</p>]]></content:encoded>
	</item>
	<item>
		<title>Comment on Parsing Date Strings with pyparsing by Phil</title>
		<link>http://pcscholl.de/2008/08/25/parsing-date-strings-with-pyparsing/comment-page-1/#comment-143</link>
		<dc:creator>Phil</dc:creator>
		<pubDate>Thu, 24 Sep 2009 06:42:30 +0000</pubDate>
		<guid isPermaLink="false">http://pcscholl.de/2008/08/25/parsing-date-strings-with-pyparsing/#comment-143</guid>
		<description>&lt;p&gt;Actually, I haven&#039;t pursued it further as the dates didn&#039;t proove to enhance the results of Genre Detection; I only have a (probably pretty faulty) fragment of the code. I will post my pyparsing code building the search string soonish :) Stay tuned!&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Actually, I haven&#8217;t pursued it further as the dates didn&#8217;t proove to enhance the results of Genre Detection; I only have a (probably pretty faulty) fragment of the code. I will post my pyparsing code building the search string soonish <img src='http://pcscholl.de/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Stay tuned!</p>]]></content:encoded>
	</item>
</channel>
</rss>

