<?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/"
	xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for SZC's Agglomeration</title>
	<atom:link href="http://szc001.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://szc001.wordpress.com</link>
	<description>{an agglomeration of laconic notes in relation to anything that sparks my interest}</description>
	<lastBuildDate>Sun, 19 Jul 2009 15:49:44 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on programmingFonts() by Mark</title>
		<link>http://szc001.wordpress.com/2008/07/12/programmingfonts/#comment-8527</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Sun, 19 Jul 2009 15:49:44 +0000</pubDate>
		<guid isPermaLink="false">http://szc001.wordpress.com/?p=238#comment-8527</guid>
		<description>Thanks for the advice about font use people. It would be much easier to select a good font, if browsers display them exactly too.</description>
		<content:encoded><![CDATA[<p>Thanks for the advice about font use people. It would be much easier to select a good font, if browsers display them exactly too.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on force browser to download a file by David Keaveny</title>
		<link>http://szc001.wordpress.com/2008/07/30/force-browser-to-download-a-file/#comment-8526</link>
		<dc:creator>David Keaveny</dc:creator>
		<pubDate>Wed, 20 May 2009 00:01:44 +0000</pubDate>
		<guid isPermaLink="false">http://szc001.wordpress.com/?p=267#comment-8526</guid>
		<description>Isn&#039;t it better to leave the mime type as it should be, and set the content-disposition?

Content-Type: text/comma-separated-values
Content-Disposition: inline; filename=openinexcel.csv

IIRC if you set the Content-Disposition to attachment, rather than inline, it&#039;ll bring up the download prompt.</description>
		<content:encoded><![CDATA[<p>Isn&#8217;t it better to leave the mime type as it should be, and set the content-disposition?</p>
<p>Content-Type: text/comma-separated-values<br />
Content-Disposition: inline; filename=openinexcel.csv</p>
<p>IIRC if you set the Content-Disposition to attachment, rather than inline, it&#8217;ll bring up the download prompt.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on regular expressions (a.k.a. regEx) tutorial #1 by Off Ramz</title>
		<link>http://szc001.wordpress.com/2008/08/10/regular-expressions-aka-regex-tutorial-1/#comment-8525</link>
		<dc:creator>Off Ramz</dc:creator>
		<pubDate>Sat, 18 Apr 2009 21:55:24 +0000</pubDate>
		<guid isPermaLink="false">http://szc001.wordpress.com/?p=307#comment-8525</guid>
		<description>Thanx man. One of the few tutorials about regex that I have really understood.</description>
		<content:encoded><![CDATA[<p>Thanx man. One of the few tutorials about regex that I have really understood.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on programmingFonts() by How to Get Six Pack Fast</title>
		<link>http://szc001.wordpress.com/2008/07/12/programmingfonts/#comment-8524</link>
		<dc:creator>How to Get Six Pack Fast</dc:creator>
		<pubDate>Wed, 15 Apr 2009 14:52:17 +0000</pubDate>
		<guid isPermaLink="false">http://szc001.wordpress.com/?p=238#comment-8524</guid>
		<description>I can tell that this is not the first time   you mention the topic. Why have you decided to write about it again?</description>
		<content:encoded><![CDATA[<p>I can tell that this is not the first time   you mention the topic. Why have you decided to write about it again?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on date validation regular expression (improved formula catering for leap years and correct days in month) by rc</title>
		<link>http://szc001.wordpress.com/2008/08/06/date-validation-regular-expression-improved-formula/#comment-8523</link>
		<dc:creator>rc</dc:creator>
		<pubDate>Mon, 16 Mar 2009 01:55:12 +0000</pubDate>
		<guid isPermaLink="false">http://szc001.wordpress.com/?p=296#comment-8523</guid>
		<description>Some of the tests I&#039;ve done:
02/31/2008 is NOT valid
&lt;strong&gt;11/3/2009 is NOT valid&lt;/strong&gt;
4/23/1976 is NOT valid
8/32/1974 is NOT valid
1/1/1997 is valid
&lt;strong&gt;10/31/2018 is NOT valid&lt;/strong&gt;

The lines in bold indicate your regex is not correct as those two dates are valid ones.</description>
		<content:encoded><![CDATA[<p>Some of the tests I&#8217;ve done:<br />
02/31/2008 is NOT valid<br />
<strong>11/3/2009 is NOT valid</strong><br />
4/23/1976 is NOT valid<br />
8/32/1974 is NOT valid<br />
1/1/1997 is valid<br />
<strong>10/31/2018 is NOT valid</strong></p>
<p>The lines in bold indicate your regex is not correct as those two dates are valid ones.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Python :: Mapping a string to a dictionary by Mohammed Berdai</title>
		<link>http://szc001.wordpress.com/2009/02/09/python-mapping-a-string-to-a-dictionary/#comment-8521</link>
		<dc:creator>Mohammed Berdai</dc:creator>
		<pubDate>Thu, 12 Feb 2009 18:28:19 +0000</pubDate>
		<guid isPermaLink="false">http://szc001.wordpress.com/?p=326#comment-8521</guid>
		<description>Interesting! I&#039;m still a Python newbie and was questioning the utility of map()
It&#039;s clear to me now :)</description>
		<content:encoded><![CDATA[<p>Interesting! I&#8217;m still a Python newbie and was questioning the utility of map()<br />
It&#8217;s clear to me now <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Python :: Mapping a string to a dictionary by Marlon Grech</title>
		<link>http://szc001.wordpress.com/2009/02/09/python-mapping-a-string-to-a-dictionary/#comment-8520</link>
		<dc:creator>Marlon Grech</dc:creator>
		<pubDate>Mon, 09 Feb 2009 20:07:37 +0000</pubDate>
		<guid isPermaLink="false">http://szc001.wordpress.com/?p=326#comment-8520</guid>
		<description>nice :) 
still it&#039;s dirty... it&#039;s python :) joking :)</description>
		<content:encoded><![CDATA[<p>nice <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
still it&#8217;s dirty&#8230; it&#8217;s python <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  joking <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on date validation regular expression (improved formula catering for leap years and correct days in month) by sunwatersnow</title>
		<link>http://szc001.wordpress.com/2008/08/06/date-validation-regular-expression-improved-formula/#comment-8519</link>
		<dc:creator>sunwatersnow</dc:creator>
		<pubDate>Fri, 02 Jan 2009 23:27:20 +0000</pubDate>
		<guid isPermaLink="false">http://szc001.wordpress.com/?p=296#comment-8519</guid>
		<description>I TESTED YOU YOUR STRING IN 5 REXEX APPLICATION 
THE BUG IN YOU STRING IS
IT DOES NOT WORK</description>
		<content:encoded><![CDATA[<p>I TESTED YOU YOUR STRING IN 5 REXEX APPLICATION<br />
THE BUG IN YOU STRING IS<br />
IT DOES NOT WORK</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on date validation regular expression (improved formula catering for leap years and correct days in month) by sunwatersnow</title>
		<link>http://szc001.wordpress.com/2008/08/06/date-validation-regular-expression-improved-formula/#comment-8518</link>
		<dc:creator>sunwatersnow</dc:creator>
		<pubDate>Fri, 02 Jan 2009 23:18:31 +0000</pubDate>
		<guid isPermaLink="false">http://szc001.wordpress.com/?p=296#comment-8518</guid>
		<description>Can you simply the code and show just how to validate the date part and not the time, and then throughly explain what is goin on.
And when you do could you email me the solution or posting at
steve_44@inbox.com</description>
		<content:encoded><![CDATA[<p>Can you simply the code and show just how to validate the date part and not the time, and then throughly explain what is goin on.<br />
And when you do could you email me the solution or posting at<br />
<a href="mailto:steve_44@inbox.com">steve_44@inbox.com</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on date validation regular expression (improved formula catering for leap years and correct days in month) by Stefan Camilleri</title>
		<link>http://szc001.wordpress.com/2008/08/06/date-validation-regular-expression-improved-formula/#comment-8517</link>
		<dc:creator>Stefan Camilleri</dc:creator>
		<pubDate>Fri, 26 Sep 2008 11:02:51 +0000</pubDate>
		<guid isPermaLink="false">http://szc001.wordpress.com/?p=296#comment-8517</guid>
		<description>@James

You&#039;re welcome :)</description>
		<content:encoded><![CDATA[<p>@James</p>
<p>You&#8217;re welcome <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on date validation regular expression (improved formula catering for leap years and correct days in month) by James</title>
		<link>http://szc001.wordpress.com/2008/08/06/date-validation-regular-expression-improved-formula/#comment-8516</link>
		<dc:creator>James</dc:creator>
		<pubDate>Fri, 26 Sep 2008 11:01:00 +0000</pubDate>
		<guid isPermaLink="false">http://szc001.wordpress.com/?p=296#comment-8516</guid>
		<description>this is excellent. Thanks for sharing.</description>
		<content:encoded><![CDATA[<p>this is excellent. Thanks for sharing.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on regular expressions (a.k.a. regEx) tutorial #1 by Stefan Camilleri</title>
		<link>http://szc001.wordpress.com/2008/08/10/regular-expressions-aka-regex-tutorial-1/#comment-8514</link>
		<dc:creator>Stefan Camilleri</dc:creator>
		<pubDate>Thu, 11 Sep 2008 00:44:35 +0000</pubDate>
		<guid isPermaLink="false">http://szc001.wordpress.com/?p=307#comment-8514</guid>
		<description>@Joe

This will work specifically for the string you propose:

Color ([^ ]+) Flavor ([^ ]+) Topping &quot;(.+)&quot; Size ([^ ]+)

A more dynamic solution is this:

(?:[^ ]+) +((?:(?:&quot;.+&quot;)&#124;(?:[^ ]))+) ?

Repeated for as many tuples as you need.  It will pick up always the second value, catering also for inverts.

i.e. Color Blue would pick up Blue and Color &quot;Light Blue&quot; would pick up &quot;Light Blue&quot;

Hope it helps :)</description>
		<content:encoded><![CDATA[<p>@Joe</p>
<p>This will work specifically for the string you propose:</p>
<p>Color ([^ ]+) Flavor ([^ ]+) Topping &#8220;(.+)&#8221; Size ([^ ]+)</p>
<p>A more dynamic solution is this:</p>
<p>(?:[^ ]+) +((?:(?:&#8221;.+&#8221;)|(?:[^ ]))+) ?</p>
<p>Repeated for as many tuples as you need.  It will pick up always the second value, catering also for inverts.</p>
<p>i.e. Color Blue would pick up Blue and Color &#8220;Light Blue&#8221; would pick up &#8220;Light Blue&#8221;</p>
<p>Hope it helps <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on regular expressions (a.k.a. regEx) tutorial #1 by Joe</title>
		<link>http://szc001.wordpress.com/2008/08/10/regular-expressions-aka-regex-tutorial-1/#comment-8513</link>
		<dc:creator>Joe</dc:creator>
		<pubDate>Wed, 10 Sep 2008 23:55:06 +0000</pubDate>
		<guid isPermaLink="false">http://szc001.wordpress.com/?p=307#comment-8513</guid>
		<description>how wud you parse the following into pairs with regex?

Color Blue Flavor Vanilla Topping &quot;Chocolate Sprinkles&quot; Size Small

where the result would be
Color=Blue
Flavor=Vanilla
Topping=Chocolate Sprinles
Size=Small

([\&quot;])[^\&quot;]*\\1&#124;[^ ]+([^ ]*) does not seems to work perfectly</description>
		<content:encoded><![CDATA[<p>how wud you parse the following into pairs with regex?</p>
<p>Color Blue Flavor Vanilla Topping &#8220;Chocolate Sprinkles&#8221; Size Small</p>
<p>where the result would be<br />
Color=Blue<br />
Flavor=Vanilla<br />
Topping=Chocolate Sprinles<br />
Size=Small</p>
<p>([\"])[^\"]*\\1|[^ ]+([^ ]*) does not seems to work perfectly</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on date validation regular expression (improved formula catering for leap years and correct days in month) by Stefan Camilleri</title>
		<link>http://szc001.wordpress.com/2008/08/06/date-validation-regular-expression-improved-formula/#comment-8509</link>
		<dc:creator>Stefan Camilleri</dc:creator>
		<pubDate>Fri, 29 Aug 2008 12:34:20 +0000</pubDate>
		<guid isPermaLink="false">http://szc001.wordpress.com/?p=296#comment-8509</guid>
		<description>@Suki
Thank you for that... I&#039;ll check it out :)  Most leap years should work, that must&#039;ve slipped.</description>
		<content:encoded><![CDATA[<p>@Suki<br />
Thank you for that&#8230; I&#8217;ll check it out <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   Most leap years should work, that must&#8217;ve slipped.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on date validation regular expression (improved formula catering for leap years and correct days in month) by Suki</title>
		<link>http://szc001.wordpress.com/2008/08/06/date-validation-regular-expression-improved-formula/#comment-8508</link>
		<dc:creator>Suki</dc:creator>
		<pubDate>Fri, 29 Aug 2008 12:30:32 +0000</pubDate>
		<guid isPermaLink="false">http://szc001.wordpress.com/?p=296#comment-8508</guid>
		<description>Leap Year dates don&#039;t seem to work. eg. 29/02/2000 comes back as invalid</description>
		<content:encoded><![CDATA[<p>Leap Year dates don&#8217;t seem to work. eg. 29/02/2000 comes back as invalid</p>
]]></content:encoded>
	</item>
</channel>
</rss>
