<?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 Elf Sternberg</title>
	<atom:link href="http://www.elfsternberg.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.elfsternberg.com</link>
	<description>Done, and gets things smart.</description>
	<lastBuildDate>Fri, 20 Apr 2012 05:14:12 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>Comment on The Backbone Store, version 2.0 &#8211; Backbone.js with Coffeescript, HAML, and Stylus edition! by Eamonn</title>
		<link>http://www.elfsternberg.com/2011/08/22/backbone-store-version-20-backbonejs-coffeescript-haml-stylus-edition/comment-page-1/#comment-6292</link>
		<dc:creator>Eamonn</dc:creator>
		<pubDate>Fri, 20 Apr 2012 05:14:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.elfsternberg.com/?p=1077#comment-6292</guid>
		<description>Elf, very good tutorial indeed. 

For the templates have you considered just using coffeescript like:

template: (json) -&gt;
   &quot;&quot;&quot;
      Hello #{json.name}
   &quot;&quot;&quot;

I&#039;m interested in how you do the breadcrumbs in your base class. Could that be another little tutorial ? ;)</description>
		<content:encoded><![CDATA[<p>Elf, very good tutorial indeed. </p>
<p>For the templates have you considered just using coffeescript like:</p>
<p>template: (json) -&gt;<br />
   &#8220;&#8221;"<br />
      Hello #{json.name}<br />
   &#8220;&#8221;"</p>
<p>I&#8217;m interested in how you do the breadcrumbs in your base class. Could that be another little tutorial ? <img src='http://www.elfsternberg.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on If you don&#8217;t have a mobile strategy, you&#8217;re probably doomed. by Elf Sternberg</title>
		<link>http://www.elfsternberg.com/2012/04/03/mobile-strategy-doomed/comment-page-1/#comment-6229</link>
		<dc:creator>Elf Sternberg</dc:creator>
		<pubDate>Sat, 07 Apr 2012 01:30:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.elfsternberg.com/?p=1287#comment-6229</guid>
		<description>Meh.  Where&#039;s the money in that?</description>
		<content:encoded><![CDATA[<p>Meh.  Where&#8217;s the money in that?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on If you don&#8217;t have a mobile strategy, you&#8217;re probably doomed. by Karl Pongratz</title>
		<link>http://www.elfsternberg.com/2012/04/03/mobile-strategy-doomed/comment-page-1/#comment-6222</link>
		<dc:creator>Karl Pongratz</dc:creator>
		<pubDate>Wed, 04 Apr 2012 08:37:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.elfsternberg.com/?p=1287#comment-6222</guid>
		<description>How about a strategy to get gamers back to real life?</description>
		<content:encoded><![CDATA[<p>How about a strategy to get gamers back to real life?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on REST is not SOA is not JSON by Chris</title>
		<link>http://www.elfsternberg.com/2012/03/29/rest-soa-json/comment-page-1/#comment-6211</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Fri, 30 Mar 2012 23:09:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.elfsternberg.com/?p=1274#comment-6211</guid>
		<description>That is an interesting distinction.  I&#039;m new to REST and I&#039;m mainly using it because it syncs well with backbone.js.  ASP.NET MVC 4 now supports REST with their new webapi.  But, I honestly didn&#039;t know the difference between SOA and REST.  The way you explain it makes sense.  I always thought that REST was just a way to simplify how URLs are constructed to naviagate and fetch data from the server.</description>
		<content:encoded><![CDATA[<p>That is an interesting distinction.  I&#8217;m new to REST and I&#8217;m mainly using it because it syncs well with backbone.js.  ASP.NET MVC 4 now supports REST with their new webapi.  But, I honestly didn&#8217;t know the difference between SOA and REST.  The way you explain it makes sense.  I always thought that REST was just a way to simplify how URLs are constructed to naviagate and fetch data from the server.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Boarding the &#8220;Anti-if&#8221; bus by Chris</title>
		<link>http://www.elfsternberg.com/2012/03/22/boarding-antiif-bus/comment-page-1/#comment-6172</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Thu, 22 Mar 2012 16:49:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.elfsternberg.com/?p=1259#comment-6172</guid>
		<description>Interesting blog post Elf!  I am working with some existing code and I was trying to figure out &quot;where do all the jobs get submitted???&quot;  Finally I stumbled upon a class method that had a HUGE select statement (vb.net select ... case ... case) which is very similar to if then else.  Ugh!  Who writes code like this?  Now I have to study each case statement to see how to make my part fit this HUGE traffic sign.  Although I don&#039;t think we can ever get rid of all &quot;if statements&quot; and &quot;if expressions&quot; I do see them as a sign of poor architecture.  Especially since we have generics and object oriented patterns.  Alas, I will most likely add my case statement to the list since re-factoring this mess is way outside the scope of what I&#039;m trying to do.  The other thing that if then else blocks do is bury business logic inside code where it is difficult to decipher.  

Best regards,
Chris</description>
		<content:encoded><![CDATA[<p>Interesting blog post Elf!  I am working with some existing code and I was trying to figure out &#8220;where do all the jobs get submitted???&#8221;  Finally I stumbled upon a class method that had a HUGE select statement (vb.net select &#8230; case &#8230; case) which is very similar to if then else.  Ugh!  Who writes code like this?  Now I have to study each case statement to see how to make my part fit this HUGE traffic sign.  Although I don&#8217;t think we can ever get rid of all &#8220;if statements&#8221; and &#8220;if expressions&#8221; I do see them as a sign of poor architecture.  Especially since we have generics and object oriented patterns.  Alas, I will most likely add my case statement to the list since re-factoring this mess is way outside the scope of what I&#8217;m trying to do.  The other thing that if then else blocks do is bury business logic inside code where it is difficult to decipher.  </p>
<p>Best regards,<br />
Chris</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Linux, Flash 10, and saving Flash files by Jonathan Sch</title>
		<link>http://www.elfsternberg.com/2010/11/15/linux-flash-10-saving-flash-files/comment-page-1/#comment-6159</link>
		<dc:creator>Jonathan Sch</dc:creator>
		<pubDate>Sun, 18 Mar 2012 22:23:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.elfsternberg.com/?p=924#comment-6159</guid>
		<description>Awesome Post, I was looking all over the place to find out where Adobe was hiding its Flash videos. Thank you!</description>
		<content:encoded><![CDATA[<p>Awesome Post, I was looking all over the place to find out where Adobe was hiding its Flash videos. Thank you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The Backbone Store, version 2.0 &#8211; Backbone.js with Coffeescript, HAML, and Stylus edition! by Ritesh</title>
		<link>http://www.elfsternberg.com/2011/08/22/backbone-store-version-20-backbonejs-coffeescript-haml-stylus-edition/comment-page-1/#comment-6111</link>
		<dc:creator>Ritesh</dc:creator>
		<pubDate>Thu, 08 Mar 2012 01:10:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.elfsternberg.com/?p=1077#comment-6111</guid>
		<description>Thanks for a very informative article, i have noticed one potential issue with this implementation, it does not take into account, if a product is bookmarked. Once you bookmark a product, and load it, it would fail (sometimes). I think this is because your Productcollection is not bootstrapped with all the data.</description>
		<content:encoded><![CDATA[<p>Thanks for a very informative article, i have noticed one potential issue with this implementation, it does not take into account, if a product is bookmarked. Once you bookmark a product, and load it, it would fail (sometimes). I think this is because your Productcollection is not bootstrapped with all the data.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery: fadeOut a lot, fadeIn a little: Deferred promises and synchronizing jquery.animate() by CMON</title>
		<link>http://www.elfsternberg.com/2011/02/14/jquery-fadeout-lot-fadein-deferred-promises-jqueryanimate/comment-page-1/#comment-6096</link>
		<dc:creator>CMON</dc:creator>
		<pubDate>Mon, 05 Mar 2012 23:36:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.elfsternberg.com/?p=1000#comment-6096</guid>
		<description>var siblings = $(element).siblings();
                    siblings.fadeOut(&#039;slow&#039;)
                            .promise()
                            .done(function () {
                                $(element).fadeIn(&#039;slow&#039;);
                                alert(&#039;promise&#039;);
                            });</description>
		<content:encoded><![CDATA[<p>var siblings = $(element).siblings();<br />
                    siblings.fadeOut(&#8216;slow&#8217;)<br />
                            .promise()<br />
                            .done(function () {<br />
                                $(element).fadeIn(&#8216;slow&#8217;);<br />
                                alert(&#8216;promise&#8217;);<br />
                            });</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A new little software toy: Right Now! by Chris</title>
		<link>http://www.elfsternberg.com/2012/02/27/software-toy/comment-page-1/#comment-6090</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Mon, 05 Mar 2012 17:31:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.elfsternberg.com/?p=1241#comment-6090</guid>
		<description>Hi Elf,
Thanks for your response.  I do think that &quot;right now&quot; is a novel idea.  I too find myself searching for things hundreds of times a day and I imagine that being reminded of my &quot;to do&#039;s&quot; and &quot;goals&quot; would pay dividends.
Chris</description>
		<content:encoded><![CDATA[<p>Hi Elf,<br />
Thanks for your response.  I do think that &#8220;right now&#8221; is a novel idea.  I too find myself searching for things hundreds of times a day and I imagine that being reminded of my &#8220;to do&#8217;s&#8221; and &#8220;goals&#8221; would pay dividends.<br />
Chris</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A new little software toy: Right Now! by Elf Sternberg</title>
		<link>http://www.elfsternberg.com/2012/02/27/software-toy/comment-page-1/#comment-6088</link>
		<dc:creator>Elf Sternberg</dc:creator>
		<pubDate>Sat, 03 Mar 2012 20:23:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.elfsternberg.com/?p=1241#comment-6088</guid>
		<description>I think it&#039;s a fine idea to integrate a Google search tab into the page, but I don&#039;t see the point.  The idea is to prevent you from immediately haring off with whatever it is that flitted through your mind.  This page is meant to make you &lt;em&gt;pause&lt;/em&gt; before going on.  There have been some changes (sadly, I had to abandon Zepto-- see next post) but they&#039;re in service of usability of the do-one-thing idea of it.</description>
		<content:encoded><![CDATA[<p>I think it&#8217;s a fine idea to integrate a Google search tab into the page, but I don&#8217;t see the point.  The idea is to prevent you from immediately haring off with whatever it is that flitted through your mind.  This page is meant to make you <em>pause</em> before going on.  There have been some changes (sadly, I had to abandon Zepto&#8211; see next post) but they&#8217;re in service of usability of the do-one-thing idea of it.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

