<?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: April Hackery</title>
	<atom:link href="http://dallashackclub.com/april-hackery/feed" rel="self" type="application/rss+xml" />
	<link>http://dallashackclub.com/april-hackery</link>
	<description>The first rule of hack club is, we don&#039;t just talk about code.</description>
	<lastBuildDate>Wed, 26 May 2010 13:59:24 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: dallashackclub</title>
		<link>http://dallashackclub.com/april-hackery/comment-page-1#comment-10</link>
		<dc:creator>dallashackclub</dc:creator>
		<pubDate>Tue, 25 May 2010 22:31:30 +0000</pubDate>
		<guid isPermaLink="false">http://dallashackclub.com/?p=6#comment-10</guid>
		<description>Ok, it actually looks like a server side PHP problem. The pertinent Evolved markup is missing when DISQUS is enabled.</description>
		<content:encoded><![CDATA[<p>Ok, it actually looks like a server side PHP problem. The pertinent Evolved markup is missing when DISQUS is enabled.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dallashackclub</title>
		<link>http://dallashackclub.com/april-hackery/comment-page-1#comment-9</link>
		<dc:creator>dallashackclub</dc:creator>
		<pubDate>Tue, 25 May 2010 22:11:22 +0000</pubDate>
		<guid isPermaLink="false">http://dallashackclub.com/?p=6#comment-9</guid>
		<description>Yeah, I&#039;ve since found Evolved looks better too. It&#039;s installed right now (deleted my previous comment about Google Highligher) But it&#039;s not working. I think the only problem is the CSS doesn&#039;t play nice between DISQUS and Evolved.</description>
		<content:encoded><![CDATA[<p>Yeah, I&#39;ve since found Evolved looks better too. It&#39;s installed right now (deleted my previous comment about Google Highligher) But it&#39;s not working. I think the only problem is the CSS doesn&#39;t play nice between DISQUS and Evolved.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brett Bim</title>
		<link>http://dallashackclub.com/april-hackery/comment-page-1#comment-7</link>
		<dc:creator>Brett Bim</dc:creator>
		<pubDate>Tue, 25 May 2010 21:21:59 +0000</pubDate>
		<guid isPermaLink="false">http://dallashackclub.com/?p=6#comment-7</guid>
		<description>Is this a Wordpress blog?  If so, I&#039;ve found that the SyntaxHighlighter Evolved plugin is better than the Google Syntax one.</description>
		<content:encoded><![CDATA[<p>Is this a WordPress blog?  If so, I&#39;ve found that the SyntaxHighlighter Evolved plugin is better than the Google Syntax one.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://dallashackclub.com/april-hackery/comment-page-1#comment-11</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Tue, 25 May 2010 17:56:39 +0000</pubDate>
		<guid isPermaLink="false">http://dallashackclub.com/?p=6#comment-11</guid>
		<description>Leaving DISQUS disabled for the time being.</description>
		<content:encoded><![CDATA[<p>Leaving DISQUS disabled for the time being.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Leblanc Meneses</title>
		<link>http://dallashackclub.com/april-hackery/comment-page-1#comment-4</link>
		<dc:creator>Leblanc Meneses</dc:creator>
		<pubDate>Wed, 21 Apr 2010 18:39:31 +0000</pubDate>
		<guid isPermaLink="false">http://dallashackclub.com/?p=6#comment-4</guid>
		<description>Currently this expression was built up to pass tests:&lt;br&gt;&lt;br&gt;[code lang=&quot;cSharp&quot;]&lt;br&gt;@&quot;^(//(?&lt;delimiter&gt;.)n?)?(?&lt;data&gt;((?&lt;number&gt;d+)([,n]&#124;k&lt;delimiter&gt;))*(?&lt;number&gt;d+)?)$&lt;br&gt;[/code]&lt;br&gt;&lt;br&gt;the only one it does not solve is requirement #8, hence Test_MultipleDelimiterNotation will fail&lt;br&gt;&lt;br&gt;in the beginning we started from:&lt;br&gt;[code lang=&quot;cSharp&quot;]&lt;br&gt;(s+)?(?&lt;number&gt;d+)(s+)?(,)?&lt;br&gt;[/code]&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;For requirement 8 I would need to add a little bit of logic besides a one line regex in calculator.  Hence the calculator should take IParser&lt;br&gt;&lt;br&gt;&lt;br&gt;[code lang=&quot;cSharp&quot;]&lt;br&gt;    public interface IParser&lt;br&gt;    {&lt;br&gt;        IEnumerable&lt;int&gt; Parse(String input);&lt;br&gt;    }&lt;br&gt;[/code]&lt;br&gt;&lt;br&gt;&lt;br&gt;before i do i&#039;ll setup svn so that revisions can be compared</description>
		<content:encoded><![CDATA[<p>Currently this expression was built up to pass tests:</p>
<p>[code lang="cSharp"]<br />@"^(//(?&lt;delimiter&gt;.)n?)?(?&lt;data&gt;((?&lt;number&gt;d+)([,n]|k&lt;delimiter&gt;))*(?&lt;number&gt;d+)?)$<br />[/code]</p>
<p>the only one it does not solve is requirement #8, hence Test_MultipleDelimiterNotation will fail</p>
<p>in the beginning we started from:<br />[code lang="cSharp"]<br />(s+)?(?&lt;number&gt;d+)(s+)?(,)?<br />[/code]</p>
<p>For requirement 8 I would need to add a little bit of logic besides a one line regex in calculator.  Hence the calculator should take IParser</p>
<p>[code lang="cSharp"]<br />    public interface IParser<br />    {<br />        IEnumerable&lt;int&gt; Parse(String input);<br />    }<br />[/code]</p>
<p>before i do i&#39;ll setup svn so that revisions can be compared</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dallashackclub</title>
		<link>http://dallashackclub.com/april-hackery/comment-page-1#comment-3</link>
		<dc:creator>dallashackclub</dc:creator>
		<pubDate>Wed, 21 Apr 2010 17:15:51 +0000</pubDate>
		<guid isPermaLink="false">http://dallashackclub.com/?p=6#comment-3</guid>
		<description>Last night we did Roy Osherove&#039;s string calculator kata &lt;a href=&quot;http://osherove.com/tdd-kata-1/&quot; rel=&quot;nofollow&quot;&gt;http://osherove.com/tdd-kata-1/&lt;/a&gt; Feel free to post your code. I have no idea what the formatting will look like in the comments. You can definitely try it. You can also try sticking the code on &lt;a href=&quot;http://pastie.org&quot; rel=&quot;nofollow&quot;&gt;http://pastie.org&lt;/a&gt; and linking it.</description>
		<content:encoded><![CDATA[<p>Last night we did Roy Osherove&#39;s string calculator kata <a href="http://osherove.com/tdd-kata-1/" rel="nofollow">http://osherove.com/tdd-kata-1/</a> Feel free to post your code. I have no idea what the formatting will look like in the comments. You can definitely try it. You can also try sticking the code on <a href="http://pastie.org" rel="nofollow">http://pastie.org</a> and linking it.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk (enhanced) (user agent is rejected)

Served from: dallashackclub.com @ 2012-02-07 11:23:42 -->
