<?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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Add flair to your code: Code Squiggles</title>
	<atom:link href="http://schneide.wordpress.com/2010/06/28/add-flair-to-your-code-code-squiggles/feed/" rel="self" type="application/rss+xml" />
	<link>http://schneide.wordpress.com/2010/06/28/add-flair-to-your-code-code-squiggles/</link>
	<description>public business secrets</description>
	<lastBuildDate>Tue, 14 May 2013 22:01:04 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Serhiy Yevtushenko</title>
		<link>http://schneide.wordpress.com/2010/06/28/add-flair-to-your-code-code-squiggles/#comment-7576</link>
		<dc:creator><![CDATA[Serhiy Yevtushenko]]></dc:creator>
		<pubDate>Mon, 10 Dec 2012 21:42:21 +0000</pubDate>
		<guid isPermaLink="false">http://schneide.wordpress.com/?p=1683#comment-7576</guid>
		<description><![CDATA[For me, the most justified type of code squigless was using them for wrapping ugly array construction by using static methods with varagrs (and improve readability).
i.e.
static  T[] strings(T ... in){
    return in;
}

and using strings(&quot;a&quot;, &quot;b&quot;, &quot;c&quot;) instead of new String[]{&quot;a&quot;, &quot;b&quot;, &quot;c&quot;}

Test code could became much more expressive this way.
However, if used too much, the code would start to remind prolog fact declaration.]]></description>
		<content:encoded><![CDATA[<p>For me, the most justified type of code squigless was using them for wrapping ugly array construction by using static methods with varagrs (and improve readability).<br />
i.e.<br />
static  T[] strings(T &#8230; in){<br />
    return in;<br />
}</p>
<p>and using strings(&#8220;a&#8221;, &#8220;b&#8221;, &#8220;c&#8221;) instead of new String[]{&#8220;a&#8221;, &#8220;b&#8221;, &#8220;c&#8221;}</p>
<p>Test code could became much more expressive this way.<br />
However, if used too much, the code would start to remind prolog fact declaration.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: An experiment about communication through tests &#171; Schneide Blog</title>
		<link>http://schneide.wordpress.com/2010/06/28/add-flair-to-your-code-code-squiggles/#comment-7575</link>
		<dc:creator><![CDATA[An experiment about communication through tests &#171; Schneide Blog]]></dc:creator>
		<pubDate>Mon, 10 Dec 2012 20:34:39 +0000</pubDate>
		<guid isPermaLink="false">http://schneide.wordpress.com/?p=1683#comment-7575</guid>
		<description><![CDATA[[...] with named parameter support would alleviate this problem. In Java, you might consider to use Code Squiggles if you want to prepare for this [...]]]></description>
		<content:encoded><![CDATA[<p>[...] with named parameter support would alleviate this problem. In Java, you might consider to use Code Squiggles if you want to prepare for this [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: How I met my coding style &#171; Schneide Blog</title>
		<link>http://schneide.wordpress.com/2010/06/28/add-flair-to-your-code-code-squiggles/#comment-2201</link>
		<dc:creator><![CDATA[How I met my coding style &#171; Schneide Blog]]></dc:creator>
		<pubDate>Mon, 20 Jun 2011 22:05:26 +0000</pubDate>
		<guid isPermaLink="false">http://schneide.wordpress.com/?p=1683#comment-2201</guid>
		<description><![CDATA[[...] Code squiggles were a crazy idea that really provided readability value even after the initial excitement was [...]]]></description>
		<content:encoded><![CDATA[<p>[...] Code squiggles were a crazy idea that really provided readability value even after the initial excitement was [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: daniel.lindner</title>
		<link>http://schneide.wordpress.com/2010/06/28/add-flair-to-your-code-code-squiggles/#comment-2176</link>
		<dc:creator><![CDATA[daniel.lindner]]></dc:creator>
		<pubDate>Fri, 06 May 2011 08:21:26 +0000</pubDate>
		<guid isPermaLink="false">http://schneide.wordpress.com/?p=1683#comment-2176</guid>
		<description><![CDATA[Hi Peter,
thank you for the link and your question.
We are still using code squiggles (or &quot;active code comments&quot;, as some might call them). They are valueable tools to increase the fluency of code readability, but nothing more. We often show this technique to other programmers and the usual first reaction is &quot;uhh! What&#039;s that for? This is distracting!&quot;. If you have seen two or three code squiggles without being distracted or hurt by them, this usually settles.
The value of code squiggles seem to diminish a bit in production code (as opposed to test code), because readability seems to be more of a concern with test code.

To sum it up: I still think code squiggles are useful (once you get used to them) and we still use them. Their domain seems to be more in the test code, though.]]></description>
		<content:encoded><![CDATA[<p>Hi Peter,<br />
thank you for the link and your question.<br />
We are still using code squiggles (or &#8220;active code comments&#8221;, as some might call them). They are valueable tools to increase the fluency of code readability, but nothing more. We often show this technique to other programmers and the usual first reaction is &#8220;uhh! What&#8217;s that for? This is distracting!&#8221;. If you have seen two or three code squiggles without being distracted or hurt by them, this usually settles.<br />
The value of code squiggles seem to diminish a bit in production code (as opposed to test code), because readability seems to be more of a concern with test code.</p>
<p>To sum it up: I still think code squiggles are useful (once you get used to them) and we still use them. Their domain seems to be more in the test code, though.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter Shirley</title>
		<link>http://schneide.wordpress.com/2010/06/28/add-flair-to-your-code-code-squiggles/#comment-2175</link>
		<dc:creator><![CDATA[Peter Shirley]]></dc:creator>
		<pubDate>Thu, 05 May 2011 18:54:23 +0000</pubDate>
		<guid isPermaLink="false">http://schneide.wordpress.com/?p=1683#comment-2175</guid>
		<description><![CDATA[Synchronicity: I found this article at more-or-less the same time that I found another article by Jeff Langr on the same thing (although he doesn&#039;t call them code squiggles):

http://langrsoft.com/jeff/2010/03/goofy-tdd-construct/

I&#039;ll ask the same question here that I asked at the linked article: How do you feel about code squiggles a year after having started to use them?]]></description>
		<content:encoded><![CDATA[<p>Synchronicity: I found this article at more-or-less the same time that I found another article by Jeff Langr on the same thing (although he doesn&#8217;t call them code squiggles):</p>
<p><a href="http://langrsoft.com/jeff/2010/03/goofy-tdd-construct/" rel="nofollow">http://langrsoft.com/jeff/2010/03/goofy-tdd-construct/</a></p>
<p>I&#8217;ll ask the same question here that I asked at the linked article: How do you feel about code squiggles a year after having started to use them?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rajiv Bhagwat</title>
		<link>http://schneide.wordpress.com/2010/06/28/add-flair-to-your-code-code-squiggles/#comment-2140</link>
		<dc:creator><![CDATA[Rajiv Bhagwat]]></dc:creator>
		<pubDate>Fri, 15 Apr 2011 14:12:20 +0000</pubDate>
		<guid isPermaLink="false">http://schneide.wordpress.com/?p=1683#comment-2140</guid>
		<description><![CDATA[You are approaching &quot;data attribute notation&quot; from another angle!]]></description>
		<content:encoded><![CDATA[<p>You are approaching &#8220;data attribute notation&#8221; from another angle!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: daniel.lindner</title>
		<link>http://schneide.wordpress.com/2010/06/28/add-flair-to-your-code-code-squiggles/#comment-2137</link>
		<dc:creator><![CDATA[daniel.lindner]]></dc:creator>
		<pubDate>Fri, 15 Apr 2011 07:34:40 +0000</pubDate>
		<guid isPermaLink="false">http://schneide.wordpress.com/?p=1683#comment-2137</guid>
		<description><![CDATA[Hi None,

I appreciate your comment and your proposal. Having comments in the code might be the passive alternative to squiggles.

If you have to debug other people&#039;s code, the last thing you should have to do is to look up all the squiggles and check if they are free of side-effects. That wouldn&#039;t hamper readability (you can still read the code very fluently), but it would really degrade the accessibility (I hope it&#039;s the right word, I&#039;m not first-tongue  with english). It&#039;s not a big concern in our day-to-day work, but that&#039;s just us.

Thanks for sharing your opinion.]]></description>
		<content:encoded><![CDATA[<p>Hi None,</p>
<p>I appreciate your comment and your proposal. Having comments in the code might be the passive alternative to squiggles.</p>
<p>If you have to debug other people&#8217;s code, the last thing you should have to do is to look up all the squiggles and check if they are free of side-effects. That wouldn&#8217;t hamper readability (you can still read the code very fluently), but it would really degrade the accessibility (I hope it&#8217;s the right word, I&#8217;m not first-tongue  with english). It&#8217;s not a big concern in our day-to-day work, but that&#8217;s just us.</p>
<p>Thanks for sharing your opinion.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: None</title>
		<link>http://schneide.wordpress.com/2010/06/28/add-flair-to-your-code-code-squiggles/#comment-2130</link>
		<dc:creator><![CDATA[None]]></dc:creator>
		<pubDate>Wed, 13 Apr 2011 22:07:26 +0000</pubDate>
		<guid isPermaLink="false">http://schneide.wordpress.com/?p=1683#comment-2130</guid>
		<description><![CDATA[Bizarre idea. I appreciate it improves readability somewhat, but when it comes to debugging other peoples code, how do you know that a squiggle is a squiggle without checking the contents of the method ? Repeatedly having to do that would hamper readability.

Why not just replace your squiggles with /* whatever */ - it can&#039;t have any side effect and barely adds any additional blocks to reading the intention of the code.]]></description>
		<content:encoded><![CDATA[<p>Bizarre idea. I appreciate it improves readability somewhat, but when it comes to debugging other peoples code, how do you know that a squiggle is a squiggle without checking the contents of the method ? Repeatedly having to do that would hamper readability.</p>
<p>Why not just replace your squiggles with /* whatever */ &#8211; it can&#8217;t have any side effect and barely adds any additional blocks to reading the intention of the code.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fluent code &#8211; challenge your compiler &#171; Schneide Blog</title>
		<link>http://schneide.wordpress.com/2010/06/28/add-flair-to-your-code-code-squiggles/#comment-2081</link>
		<dc:creator><![CDATA[Fluent code &#8211; challenge your compiler &#171; Schneide Blog]]></dc:creator>
		<pubDate>Mon, 28 Mar 2011 19:27:29 +0000</pubDate>
		<guid isPermaLink="false">http://schneide.wordpress.com/?p=1683#comment-2081</guid>
		<description><![CDATA[[...] that drive the code, method names are just as important. And you can see the fitting usage of a code squiggle in the last line, a technique I often use to squeeze in the last missing pieces of [...]]]></description>
		<content:encoded><![CDATA[<p>[...] that drive the code, method names are just as important. And you can see the fitting usage of a code squiggle in the last line, a technique I often use to squeeze in the last missing pieces of [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Arun</title>
		<link>http://schneide.wordpress.com/2010/06/28/add-flair-to-your-code-code-squiggles/#comment-1617</link>
		<dc:creator><![CDATA[Arun]]></dc:creator>
		<pubDate>Tue, 20 Jul 2010 11:00:29 +0000</pubDate>
		<guid isPermaLink="false">http://schneide.wordpress.com/?p=1683#comment-1617</guid>
		<description><![CDATA[Thanks for this perspective. Definitely adds to readability, especially when I get back to my code after 6 months.]]></description>
		<content:encoded><![CDATA[<p>Thanks for this perspective. Definitely adds to readability, especially when I get back to my code after 6 months.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
