<?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 Over It.</title>
	<atom:link href="http://jason.diamond.name/weblog/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://jason.diamond.name/weblog</link>
	<description>(a Weblog by Jason Diamond)</description>
	<lastBuildDate>Mon, 10 Oct 2011 23:17:44 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on Splitting CamelCase With Regular Expressions by RegEx to split camelCase or TitleCase (advanced)</title>
		<link>http://jason.diamond.name/weblog/2009/08/15/splitting-camelcase-with-regular-expressions/comment-page-1/#comment-509</link>
		<dc:creator>RegEx to split camelCase or TitleCase (advanced)</dc:creator>
		<pubDate>Mon, 10 Oct 2011 23:17:44 +0000</pubDate>
		<guid isPermaLink="false">http://jason.diamond.name/weblog/?p=27#comment-509</guid>
		<description>[...] found a brilliant RegEx to extract the part of a camelCase or TitleCase [...]</description>
		<content:encoded><![CDATA[<p>[...] found a brilliant RegEx to extract the part of a camelCase or TitleCase [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Splitting CamelCase With Regular Expressions by RegEx to split camelCase or TitleCase (advanced) &#124; Gravity Layouts</title>
		<link>http://jason.diamond.name/weblog/2009/08/15/splitting-camelcase-with-regular-expressions/comment-page-1/#comment-508</link>
		<dc:creator>RegEx to split camelCase or TitleCase (advanced) &#124; Gravity Layouts</dc:creator>
		<pubDate>Thu, 29 Sep 2011 15:46:37 +0000</pubDate>
		<guid isPermaLink="false">http://jason.diamond.name/weblog/?p=27#comment-508</guid>
		<description>[...] found a brilliant RegEx to extract the part of a camelCase or TitleCase [...]</description>
		<content:encoded><![CDATA[<p>[...] found a brilliant RegEx to extract the part of a camelCase or TitleCase [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Splitting CamelCase With Regular Expressions by jmini</title>
		<link>http://jason.diamond.name/weblog/2009/08/15/splitting-camelcase-with-regular-expressions/comment-page-1/#comment-507</link>
		<dc:creator>jmini</dc:creator>
		<pubDate>Thu, 29 Sep 2011 07:55:58 +0000</pubDate>
		<guid isPermaLink="false">http://jason.diamond.name/weblog/?p=27#comment-507</guid>
		<description>I got an answer on stackoverflow

http://stackoverflow.com/questions/7593969/regex-to-split-camelcase-or-titlecase-advanced/7594052#7594052

There is a possible extension to the regex.</description>
		<content:encoded><![CDATA[<p>I got an answer on stackoverflow</p>
<p><a href="http://stackoverflow.com/questions/7593969/regex-to-split-camelcase-or-titlecase-advanced/7594052#7594052" rel="nofollow">http://stackoverflow.com/questions/7593969/regex-to-split-camelcase-or-titlecase-advanced/7594052#7594052</a></p>
<p>There is a possible extension to the regex.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Splitting CamelCase With Regular Expressions by jmini</title>
		<link>http://jason.diamond.name/weblog/2009/08/15/splitting-camelcase-with-regular-expressions/comment-page-1/#comment-506</link>
		<dc:creator>jmini</dc:creator>
		<pubDate>Thu, 29 Sep 2011 07:09:21 +0000</pubDate>
		<guid isPermaLink="false">http://jason.diamond.name/weblog/?p=27#comment-506</guid>
		<description>I just tried your regex... it works perfectly in Java...

String s = &quot;loremIpsum&quot;;
words = s.split(&quot;(? V / A / L / U / E
2) eclipseRCPExt -&gt; eclipse / R / C / P / Ext

To my mind, the result shoud be:
1) VALUE
2) eclipse / RCP / Ext

In other words, given n uppercase chars, if there are follwed by lower case, it should be (n-1 chars) / (n-th char + lower chars)

if there are not at the end: (n chars).

If you have any idea with a regex...</description>
		<content:encoded><![CDATA[<p>I just tried your regex&#8230; it works perfectly in Java&#8230;</p>
<p>String s = &#8220;loremIpsum&#8221;;<br />
words = s.split(&#8220;(? V / A / L / U / E<br />
2) eclipseRCPExt -&gt; eclipse / R / C / P / Ext</p>
<p>To my mind, the result shoud be:<br />
1) VALUE<br />
2) eclipse / RCP / Ext</p>
<p>In other words, given n uppercase chars, if there are follwed by lower case, it should be (n-1 chars) / (n-th char + lower chars)</p>
<p>if there are not at the end: (n chars).</p>
<p>If you have any idea with a regex&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery Deferreds by KCL</title>
		<link>http://jason.diamond.name/weblog/2011/03/28/jquery-deferreds/comment-page-1/#comment-497</link>
		<dc:creator>KCL</dc:creator>
		<pubDate>Sun, 19 Jun 2011 00:36:14 +0000</pubDate>
		<guid isPermaLink="false">http://jason.diamond.name/weblog/?p=163#comment-497</guid>
		<description>OK.  That&#039;s cool and very much along the lines of something I&#039;ve been trying to do.  My issue is that I have a variable number of deferred functions being called (actually the same function being called with differing parameters a varying number of times) with parameters.  Any ideas about that one?  My example:

$.when(myfunc(&#039;a&#039;), myfunc(b&#039;), myfunc(&#039;c&#039;), ...).done(funcDoneWhenAllDone);

Whaddya think?</description>
		<content:encoded><![CDATA[<p>OK.  That&#8217;s cool and very much along the lines of something I&#8217;ve been trying to do.  My issue is that I have a variable number of deferred functions being called (actually the same function being called with differing parameters a varying number of times) with parameters.  Any ideas about that one?  My example:</p>
<p>$.when(myfunc(&#8216;a&#8217;), myfunc(b&#8217;), myfunc(&#8216;c&#8217;), &#8230;).done(funcDoneWhenAllDone);</p>
<p>Whaddya think?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on One-line lazy initialization by Chaz</title>
		<link>http://jason.diamond.name/weblog/2010/02/23/one-line-lazy-initialization/comment-page-1/#comment-496</link>
		<dc:creator>Chaz</dc:creator>
		<pubDate>Wed, 15 Jun 2011 23:11:11 +0000</pubDate>
		<guid isPermaLink="false">http://jason.diamond.name/weblog/?p=91#comment-496</guid>
		<description>Wish JS had this, amazing shorthand :)</description>
		<content:encoded><![CDATA[<p>Wish JS had this, amazing shorthand <img src='http://jason.diamond.name/weblog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Asserting without Equals by Arnis L.</title>
		<link>http://jason.diamond.name/weblog/2010/10/30/asserting-without-equals/comment-page-1/#comment-495</link>
		<dc:creator>Arnis L.</dc:creator>
		<pubDate>Tue, 17 May 2011 11:30:35 +0000</pubDate>
		<guid isPermaLink="false">http://jason.diamond.name/weblog/?p=153#comment-495</guid>
		<description>You might find interesting this blog post: http://bit.ly/bY0IjN</description>
		<content:encoded><![CDATA[<p>You might find interesting this blog post: <a href="http://bit.ly/bY0IjN" rel="nofollow">http://bit.ly/bY0IjN</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on One-line lazy initialization by Brunhilde</title>
		<link>http://jason.diamond.name/weblog/2010/02/23/one-line-lazy-initialization/comment-page-1/#comment-391</link>
		<dc:creator>Brunhilde</dc:creator>
		<pubDate>Mon, 08 Nov 2010 21:50:49 +0000</pubDate>
		<guid isPermaLink="false">http://jason.diamond.name/weblog/?p=91#comment-391</guid>
		<description>Gets my vote.</description>
		<content:encoded><![CDATA[<p>Gets my vote.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on I fail at TDD? by Arnis L.</title>
		<link>http://jason.diamond.name/weblog/2010/10/29/i-fail-at-tdd/comment-page-1/#comment-375</link>
		<dc:creator>Arnis L.</dc:creator>
		<pubDate>Sun, 31 Oct 2010 13:51:21 +0000</pubDate>
		<guid isPermaLink="false">http://jason.diamond.name/weblog/?p=129#comment-375</guid>
		<description>Making something more flexible **only** for testability doesn&#039;t sound right either. It&#039;s like marking attributes with public setters just to inject fake objects. That eventually leads to poor encapsulation, unnecessary higher complexity.

Your alternative approach looks really good though.

---------
My own problem with TDD is that it steals focus on problems I&#039;m trying to solve. It&#039;s like trying to choose between NHibernate and Entity framework instead of listening to what client needs.

Best way to solve that would be to become truly fluent at TDD.</description>
		<content:encoded><![CDATA[<p>Making something more flexible **only** for testability doesn&#8217;t sound right either. It&#8217;s like marking attributes with public setters just to inject fake objects. That eventually leads to poor encapsulation, unnecessary higher complexity.</p>
<p>Your alternative approach looks really good though.</p>
<p>&#8212;&#8212;&#8212;<br />
My own problem with TDD is that it steals focus on problems I&#8217;m trying to solve. It&#8217;s like trying to choose between NHibernate and Entity framework instead of listening to what client needs.</p>
<p>Best way to solve that would be to become truly fluent at TDD.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on I fail at TDD? by Jason Diamond</title>
		<link>http://jason.diamond.name/weblog/2010/10/29/i-fail-at-tdd/comment-page-1/#comment-371</link>
		<dc:creator>Jason Diamond</dc:creator>
		<pubDate>Sat, 30 Oct 2010 18:11:53 +0000</pubDate>
		<guid isPermaLink="false">http://jason.diamond.name/weblog/?p=129#comment-371</guid>
		<description>Hi Arnis.

Mocking `Part` isn&#039;t currently possible because `Scanner` constructs the subclasses directly. I didn&#039;t see a need to make that more flexible.

Regarding overriding `Equals` just for NUnit: I hear you and just posted a &lt;a href=&quot;http://jason.diamond.name/weblog/2010/10/30/asserting-without-equals/&quot; rel=&quot;nofollow&quot;&gt;follow-up&lt;/a&gt; with an alternative that doesn&#039;t require that. =)</description>
		<content:encoded><![CDATA[<p>Hi Arnis.</p>
<p>Mocking `Part` isn&#8217;t currently possible because `Scanner` constructs the subclasses directly. I didn&#8217;t see a need to make that more flexible.</p>
<p>Regarding overriding `Equals` just for NUnit: I hear you and just posted a <a href="http://jason.diamond.name/weblog/2010/10/30/asserting-without-equals/" rel="nofollow">follow-up</a> with an alternative that doesn&#8217;t require that. =)</p>
]]></content:encoded>
	</item>
</channel>
</rss>

