<?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 Steve Cooper</title>
	<atom:link href="http://www.stevecooper.org/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.stevecooper.org</link>
	<description>Programming, writing, programming about writing.</description>
	<pubDate>Thu, 11 Mar 2010 17:01:45 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Sublime Text Editor Review by NightShade</title>
		<link>http://www.stevecooper.org/2008/01/28/sublime-text-editor-review/comment-page-1/#comment-13292</link>
		<dc:creator>NightShade</dc:creator>
		<pubDate>Sat, 06 Mar 2010 06:52:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.stevecooper.org/2008/01/28/sublime-text-editor-review/#comment-13292</guid>
		<description>&lt;p&gt;I like so much that IDE, the only thing that netbeans for PHP had and this don't that i use, is the Project Manager view.
But it is light and usefull. congratulations for the developper for the IDEa&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I like so much that IDE, the only thing that netbeans for PHP had and this don&#8217;t that i use, is the Project Manager view.
But it is light and usefull. congratulations for the developper for the IDEa</p>]]></content:encoded>
	</item>
	<item>
		<title>Comment on Grammar Rant #1: &#8216;More Unique&#8217; by Steve</title>
		<link>http://www.stevecooper.org/2009/09/01/grammar-rant-1-more-unique/comment-page-1/#comment-12214</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Fri, 22 Jan 2010 22:00:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.stevecooper.org/?p=131#comment-12214</guid>
		<description>&lt;p&gt;Or regardifying ;)&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Or regardifying <img src='http://www.stevecooper.org/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>]]></content:encoded>
	</item>
	<item>
		<title>Comment on Grammar Rant #1: &#8216;More Unique&#8217; by BK</title>
		<link>http://www.stevecooper.org/2009/09/01/grammar-rant-1-more-unique/comment-page-1/#comment-12210</link>
		<dc:creator>BK</dc:creator>
		<pubDate>Fri, 22 Jan 2010 15:14:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.stevecooper.org/?p=131#comment-12210</guid>
		<description>&lt;p&gt;Ms. Kindred Spirit - It's "in regard" not "in regards".&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Ms. Kindred Spirit - It&#8217;s &#8220;in regard&#8221; not &#8220;in regards&#8221;.</p>]]></content:encoded>
	</item>
	<item>
		<title>Comment on Athlete&#8217;s Foot: the Vibram Fivefingers by Peter</title>
		<link>http://www.stevecooper.org/2009/07/16/athletes-foot-the-vibram-fivefingers/comment-page-1/#comment-11954</link>
		<dc:creator>Peter</dc:creator>
		<pubDate>Tue, 12 Jan 2010 16:08:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.stevecooper.org/?p=79#comment-11954</guid>
		<description>&lt;p&gt;Wotcha Steve,&lt;/p&gt;

&lt;p&gt;I am really unconvinced of these and more to the point, they don't have sizes that fit normal human beings.  A foot should be one foot long and they just don't hack it.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Wotcha Steve,</p>

<p>I am really unconvinced of these and more to the point, they don&#8217;t have sizes that fit normal human beings.  A foot should be one foot long and they just don&#8217;t hack it.</p>]]></content:encoded>
	</item>
	<item>
		<title>Comment on A lisp macro virgin tells all by 0x69</title>
		<link>http://www.stevecooper.org/2008/04/12/a-lisp-macro-virgin-tells-all/comment-page-1/#comment-11399</link>
		<dc:creator>0x69</dc:creator>
		<pubDate>Sun, 27 Dec 2009 13:23:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.stevecooper.org/?p=57#comment-11399</guid>
		<description>&lt;p&gt;Actually as i call it "dynamic looping" can be implemented practically in any programming language which supports recursion. Something in the form:&lt;/p&gt;

&lt;p&gt;LoopManyTimes(LoopLevel, BottomLevel, ... ) {
 If LoopLevel == BottomLevel
   // Do this and that
 Else
   // Call additional loop
   LoopManyTimes(LoopLevel+1, BottomLevel, ...)
}&lt;/p&gt;

&lt;p&gt;Recursion is still powerful tool :-)
Of course this doesn`t deny the fact that LISP macros is probably most powerful macro system in the world of programming languages.
Good work,- keep it up !!&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Actually as i call it &#8220;dynamic looping&#8221; can be implemented practically in any programming language which supports recursion. Something in the form:</p>

<p>LoopManyTimes(LoopLevel, BottomLevel, &#8230; ) {
 If LoopLevel == BottomLevel
   // Do this and that
 Else
   // Call additional loop
   LoopManyTimes(LoopLevel+1, BottomLevel, &#8230;)
}</p>

<p>Recursion is still powerful tool <img src='http://www.stevecooper.org/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> Of course this doesn`t deny the fact that LISP macros is probably most powerful macro system in the world of programming languages.
Good work,- keep it up !!</p>]]></content:encoded>
	</item>
	<item>
		<title>Comment on Grammar Rant #1: &#8216;More Unique&#8217; by Carina</title>
		<link>http://www.stevecooper.org/2009/09/01/grammar-rant-1-more-unique/comment-page-1/#comment-11034</link>
		<dc:creator>Carina</dc:creator>
		<pubDate>Wed, 09 Dec 2009 22:54:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.stevecooper.org/?p=131#comment-11034</guid>
		<description>&lt;p&gt;My friend just yelled at me about saying something was "more unique" so I googled "grammar +more unique" and your article was the second hit.&lt;/p&gt;

&lt;p&gt;I just thought I'd let you know that you're my kindred spirit in regards to grammar and ranting.&lt;/p&gt;

&lt;p&gt;Thanks. :)&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>My friend just yelled at me about saying something was &#8220;more unique&#8221; so I googled &#8220;grammar +more unique&#8221; and your article was the second hit.</p>

<p>I just thought I&#8217;d let you know that you&#8217;re my kindred spirit in regards to grammar and ranting.</p>

<p>Thanks. <img src='http://www.stevecooper.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>]]></content:encoded>
	</item>
	<item>
		<title>Comment on Grammar Rant #1: &#8216;More Unique&#8217; by Carina</title>
		<link>http://www.stevecooper.org/2009/09/01/grammar-rant-1-more-unique/comment-page-1/#comment-11033</link>
		<dc:creator>Carina</dc:creator>
		<pubDate>Wed, 09 Dec 2009 22:52:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.stevecooper.org/?p=131#comment-11033</guid>
		<description>&lt;p&gt;My friend just yelled at me about saying something was "more unique" so I googled "grammar +more unique" and your article was the second hit.&lt;/p&gt;

&lt;p&gt;I just thought I'd let you know that you're my kindred spirit in regards to grammar and ranting.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>My friend just yelled at me about saying something was &#8220;more unique&#8221; so I googled &#8220;grammar +more unique&#8221; and your article was the second hit.</p>

<p>I just thought I&#8217;d let you know that you&#8217;re my kindred spirit in regards to grammar and ranting.</p>]]></content:encoded>
	</item>
	<item>
		<title>Comment on The Game Crafter by Michael</title>
		<link>http://www.stevecooper.org/2009/07/17/the-game-crafter/comment-page-1/#comment-10586</link>
		<dc:creator>Michael</dc:creator>
		<pubDate>Mon, 09 Nov 2009 20:37:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.stevecooper.org/?p=90#comment-10586</guid>
		<description>&lt;p&gt;Fabulous service. I've finally got one of many games graduated from imagination to reality.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Fabulous service. I&#8217;ve finally got one of many games graduated from imagination to reality.</p>]]></content:encoded>
	</item>
	<item>
		<title>Comment on Sublime Text Editor Review by JulesLt</title>
		<link>http://www.stevecooper.org/2008/01/28/sublime-text-editor-review/comment-page-1/#comment-10234</link>
		<dc:creator>JulesLt</dc:creator>
		<pubDate>Fri, 16 Oct 2009 12:05:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.stevecooper.org/2008/01/28/sublime-text-editor-review/#comment-10234</guid>
		<description>&lt;p&gt;I'm intrigued - I have 'e' at work, as I use TextMate at home, and there's obviously an advantage in learning one set of behaviours / short-cuts.&lt;/p&gt;

&lt;p&gt;From the screenshots, this looks far nicer (less of a clone, but more something inspired by the same principles) but for me there's a concern about different behaviour/short-cuts (the cognitive difference between things that look nearly the same, but are not).&lt;/p&gt;

&lt;p&gt;As for whether $60 is pricey - I recall people balking at the price of TextMate too. But surely the key question is how many hours of productivity does that represent??&lt;/p&gt;

&lt;p&gt;As for Jon M - the question that needs to be asked is why hasn't the open source community produced an editor like this, or TextMate - consider that these commercial editors have emerged AFTER the existence of vim and emacs.&lt;/p&gt;

&lt;p&gt;(I think part of the answer is that both TextMate and Sublime are the products of single developers, with a specific vision, while the nature of open source is that it suffers the same thing as Microsoft's software - design by committee).&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I&#8217;m intrigued - I have &#8216;e&#8217; at work, as I use TextMate at home, and there&#8217;s obviously an advantage in learning one set of behaviours / short-cuts.</p>

<p>From the screenshots, this looks far nicer (less of a clone, but more something inspired by the same principles) but for me there&#8217;s a concern about different behaviour/short-cuts (the cognitive difference between things that look nearly the same, but are not).</p>

<p>As for whether $60 is pricey - I recall people balking at the price of TextMate too. But surely the key question is how many hours of productivity does that represent??</p>

<p>As for Jon M - the question that needs to be asked is why hasn&#8217;t the open source community produced an editor like this, or TextMate - consider that these commercial editors have emerged AFTER the existence of vim and emacs.</p>

<p>(I think part of the answer is that both TextMate and Sublime are the products of single developers, with a specific vision, while the nature of open source is that it suffers the same thing as Microsoft&#8217;s software - design by committee).</p>]]></content:encoded>
	</item>
	<item>
		<title>Comment on Sublime Text Editor Review by ofer affias</title>
		<link>http://www.stevecooper.org/2008/01/28/sublime-text-editor-review/comment-page-1/#comment-10016</link>
		<dc:creator>ofer affias</dc:creator>
		<pubDate>Sat, 03 Oct 2009 09:59:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.stevecooper.org/2008/01/28/sublime-text-editor-review/#comment-10016</guid>
		<description>&lt;p&gt;i like it too!&lt;/p&gt;

&lt;p&gt;http://www.virtual-clouds.com/2009/10/64/sublime-text-the-vi-modern-alternative/&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>i like it too!</p>

<p><a href="http://www.virtual-clouds.com/2009/10/64/sublime-text-the-vi-modern-alternative/" rel="nofollow">http://www.virtual-clouds.com/2009/10/64/sublime-text-the-vi-modern-alternative/</a></p>]]></content:encoded>
	</item>
</channel>
</rss>
