<?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 for Invisible Blocks</title>
	<atom:link href="http://invisibleblocks.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://invisibleblocks.com</link>
	<description>for building invisible machines</description>
	<lastBuildDate>Sat, 11 May 2013 14:14:39 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>Comment on Direct Manipulation, and Text Editors by jpmccusker</title>
		<link>http://invisibleblocks.com/2013/05/09/direct-manipulation-and-text-editors/#comment-10679</link>
		<dc:creator><![CDATA[jpmccusker]]></dc:creator>
		<pubDate>Sat, 11 May 2013 14:14:39 +0000</pubDate>
		<guid isPermaLink="false">http://invisibleblocks.com/?p=675#comment-10679</guid>
		<description><![CDATA[I use the AquaMacs Emacs variant, which neatly combines mac UI conventions and shortcuts (using the command key) and conventional emacs ones (using option for meta and control for control). I mix and match the UI conventions as they occur to me, having more than one means I have larger targets to hit, in a sense.]]></description>
		<content:encoded><![CDATA[<p>I use the AquaMacs Emacs variant, which neatly combines mac UI conventions and shortcuts (using the command key) and conventional emacs ones (using option for meta and control for control). I mix and match the UI conventions as they occur to me, having more than one means I have larger targets to hit, in a sense.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ruby&#8217;s other ternary operator by Daniel Bernier</title>
		<link>http://invisibleblocks.com/2007/06/11/rubys-other-ternary-operator/#comment-10062</link>
		<dc:creator><![CDATA[Daniel Bernier]]></dc:creator>
		<pubDate>Tue, 13 Nov 2012 18:48:38 +0000</pubDate>
		<guid isPermaLink="false">http://invisibleblocks.wordpress.com/2007/06/11/rubys-other-ternary-operator/#comment-10062</guid>
		<description><![CDATA[I don&#039;t know which is faster, but I doubt it&#039;s an order-of-magnitude difference. This was an article about language expressivity, not performance, so I didn&#039;t worry about it.]]></description>
		<content:encoded><![CDATA[<p>I don&#8217;t know which is faster, but I doubt it&#8217;s an order-of-magnitude difference. This was an article about language expressivity, not performance, so I didn&#8217;t worry about it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ruby&#8217;s other ternary operator by Programmer</title>
		<link>http://invisibleblocks.com/2007/06/11/rubys-other-ternary-operator/#comment-10061</link>
		<dc:creator><![CDATA[Programmer]]></dc:creator>
		<pubDate>Tue, 13 Nov 2012 18:44:35 +0000</pubDate>
		<guid isPermaLink="false">http://invisibleblocks.wordpress.com/2007/06/11/rubys-other-ternary-operator/#comment-10061</guid>
		<description><![CDATA[So, what is the code that runs the fastest?  How was this tested out?]]></description>
		<content:encoded><![CDATA[<p>So, what is the code that runs the fastest?  How was this tested out?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ruby&#8217;s other ternary operator by amatriain</title>
		<link>http://invisibleblocks.com/2007/06/11/rubys-other-ternary-operator/#comment-10057</link>
		<dc:creator><![CDATA[amatriain]]></dc:creator>
		<pubDate>Wed, 07 Nov 2012 18:17:22 +0000</pubDate>
		<guid isPermaLink="false">http://invisibleblocks.wordpress.com/2007/06/11/rubys-other-ternary-operator/#comment-10057</guid>
		<description><![CDATA[Ah, I see. I got the associativity wrong. Thanks.]]></description>
		<content:encoded><![CDATA[<p>Ah, I see. I got the associativity wrong. Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ruby&#8217;s other ternary operator by Daniel Bernier</title>
		<link>http://invisibleblocks.com/2007/06/11/rubys-other-ternary-operator/#comment-10056</link>
		<dc:creator><![CDATA[Daniel Bernier]]></dc:creator>
		<pubDate>Wed, 07 Nov 2012 18:15:37 +0000</pubDate>
		<guid isPermaLink="false">http://invisibleblocks.wordpress.com/2007/06/11/rubys-other-ternary-operator/#comment-10056</guid>
		<description><![CDATA[...and hey, we&#039;ve ALL got a lot to learn. :)]]></description>
		<content:encoded><![CDATA[<p>&#8230;and hey, we&#8217;ve ALL got a lot to learn. :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ruby&#8217;s other ternary operator by Daniel Bernier</title>
		<link>http://invisibleblocks.com/2007/06/11/rubys-other-ternary-operator/#comment-10055</link>
		<dc:creator><![CDATA[Daniel Bernier]]></dc:creator>
		<pubDate>Wed, 07 Nov 2012 18:14:59 +0000</pubDate>
		<guid isPermaLink="false">http://invisibleblocks.wordpress.com/2007/06/11/rubys-other-ternary-operator/#comment-10055</guid>
		<description><![CDATA[No, I meant to use assignment (=), not equality testing (==). The effect I was after was to set a to &quot;a&quot;, and b to &quot;b&quot;.

Here are some parentheses to clarify:
a = (true ? &#039;a&#039; : &#039;b&#039;)  #=&gt; &quot;a&quot;
b = (false ? &#039;a&#039; : &#039;b&#039;)  #=&gt; &quot;b&quot;

Does that help?]]></description>
		<content:encoded><![CDATA[<p>No, I meant to use assignment (=), not equality testing (==). The effect I was after was to set a to &#8220;a&#8221;, and b to &#8220;b&#8221;.</p>
<p>Here are some parentheses to clarify:<br />
a = (true ? &#8216;a&#8217; : &#8216;b&#8217;)  #=&gt; &#8220;a&#8221;<br />
b = (false ? &#8216;a&#8217; : &#8216;b&#8217;)  #=&gt; &#8220;b&#8221;</p>
<p>Does that help?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ruby&#8217;s other ternary operator by Alfredo Amatriain</title>
		<link>http://invisibleblocks.com/2007/06/11/rubys-other-ternary-operator/#comment-10054</link>
		<dc:creator><![CDATA[Alfredo Amatriain]]></dc:creator>
		<pubDate>Wed, 07 Nov 2012 18:09:01 +0000</pubDate>
		<guid isPermaLink="false">http://invisibleblocks.wordpress.com/2007/06/11/rubys-other-ternary-operator/#comment-10054</guid>
		<description><![CDATA[I confess I&#039;m not too proficient with Ruby, but isn&#039;t your ternary example wrong? I think you&#039;re missing a couple &quot;=&quot; and they should be written like this:

a == true  ? &#039;a&#039; : &#039;b&#039; #=&gt; &quot;a&quot;
b == false ? &#039;a&#039; : &#039;b&#039; #=&gt; &quot;b&quot;

Of course I fully expect to be told why I&#039;m wrong and how much I still have to learn :)]]></description>
		<content:encoded><![CDATA[<p>I confess I&#8217;m not too proficient with Ruby, but isn&#8217;t your ternary example wrong? I think you&#8217;re missing a couple &#8220;=&#8221; and they should be written like this:</p>
<p>a == true  ? &#8216;a&#8217; : &#8216;b&#8217; #=&gt; &#8220;a&#8221;<br />
b == false ? &#8216;a&#8217; : &#8216;b&#8217; #=&gt; &#8220;b&#8221;</p>
<p>Of course I fully expect to be told why I&#8217;m wrong and how much I still have to learn :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Chaos, Order, and Software Development by Dave Silveira</title>
		<link>http://invisibleblocks.com/2012/09/10/chaos-order-and-software-development/#comment-10025</link>
		<dc:creator><![CDATA[Dave Silveira]]></dc:creator>
		<pubDate>Wed, 12 Sep 2012 21:18:06 +0000</pubDate>
		<guid isPermaLink="false">http://invisibleblocks.com/?p=559#comment-10025</guid>
		<description><![CDATA[Hey Dan, 

Nice post. Reminds of the system we worked on, and the one I am &quot;blessed with&quot; now. 

Business types want us to build things as fast as possible. Well meaning developers who don&#039;t know any better build systems that eventually become so rigid and fragile they can no longer provide business value effectively. Nobody was thinking about the big picture, just getting the feature out the door and getting the next client.]]></description>
		<content:encoded><![CDATA[<p>Hey Dan, </p>
<p>Nice post. Reminds of the system we worked on, and the one I am &#8220;blessed with&#8221; now. </p>
<p>Business types want us to build things as fast as possible. Well meaning developers who don&#8217;t know any better build systems that eventually become so rigid and fragile they can no longer provide business value effectively. Nobody was thinking about the big picture, just getting the feature out the door and getting the next client.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on What Indians call the &#8216;@&#8217; symbol by yosh</title>
		<link>http://invisibleblocks.com/2005/09/28/what-indians-call-the-symbol/#comment-10024</link>
		<dc:creator><![CDATA[yosh]]></dc:creator>
		<pubDate>Wed, 12 Sep 2012 17:48:04 +0000</pubDate>
		<guid isPermaLink="false">https://invisibleblocks.wordpress.com/2005/09/28/what-indians-call-the-symbol/#comment-10024</guid>
		<description><![CDATA[I&#039;m Indian and I just spent 6 months in India after many years away and I must have heard &quot;adderate&quot; a billion times on my trip. It was fascinating to hear, but ultimately quite annoying. I do wish people would just say &quot;at&quot; or &quot;at sign&quot;.]]></description>
		<content:encoded><![CDATA[<p>I&#8217;m Indian and I just spent 6 months in India after many years away and I must have heard &#8220;adderate&#8221; a billion times on my trip. It was fascinating to hear, but ultimately quite annoying. I do wish people would just say &#8220;at&#8221; or &#8220;at sign&#8221;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Out of Love with Active Record by Sheldon Hearn</title>
		<link>http://invisibleblocks.com/2012/05/08/out-of-love-with-active-record/#comment-9944</link>
		<dc:creator><![CDATA[Sheldon Hearn]]></dc:creator>
		<pubDate>Sun, 15 Jul 2012 12:55:46 +0000</pubDate>
		<guid isPermaLink="false">http://invisibleblocks.com/?p=540#comment-9944</guid>
		<description><![CDATA[Thank you. You&#039;ve validated both the sense of dread I feel when I consider moving beyond Active Record, and the sense of hope I feel about the potential results.

Here&#039;s where I&#039;m at with this:

http://starjuice.net/post/27254089033/active-records-vs-objects]]></description>
		<content:encoded><![CDATA[<p>Thank you. You&#8217;ve validated both the sense of dread I feel when I consider moving beyond Active Record, and the sense of hope I feel about the potential results.</p>
<p>Here&#8217;s where I&#8217;m at with this:</p>
<p><a href="http://starjuice.net/post/27254089033/active-records-vs-objects" rel="nofollow">http://starjuice.net/post/27254089033/active-records-vs-objects</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>
