<?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 Marcos Cáceres&#039; blog</title>
	<atom:link href="http://marcosc.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://marcosc.com</link>
	<description>By reading this blog you&#039;ve signed an NDA.</description>
	<lastBuildDate>Fri, 20 Apr 2012 14:52:21 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>Comment on Nested inheritance in Javascript by admin</title>
		<link>http://marcosc.com/2012/04/nested-inheritance-in-javascript/#comment-359</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Fri, 20 Apr 2012 14:52:21 +0000</pubDate>
		<guid isPermaLink="false">http://marcosc.com/?p=287#comment-359</guid>
		<description>Oh, like the above too!</description>
		<content:encoded><![CDATA[<p>Oh, like the above too!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Nested inheritance in Javascript by António Afonso</title>
		<link>http://marcosc.com/2012/04/nested-inheritance-in-javascript/#comment-358</link>
		<dc:creator>António Afonso</dc:creator>
		<pubDate>Fri, 20 Apr 2012 14:16:08 +0000</pubDate>
		<guid isPermaLink="false">http://marcosc.com/?p=287#comment-358</guid>
		<description>Great article!
@WebReflection also has some good insights about inheritance in JavaScript: http://webreflection.blogspot.com/search/label/inheritance

Another way to construct the prototype chain is by using Object.create, this way you don&#039;t need to worry with constructor parameters. LandVehicle, for instance, receives numberOfTires as a parameter but we don&#039;t care about that when creating the Car prototype chain, an alternative is to:

Car.prototype = Object.create(LandVehicle.prototype, {
    horn: {
        value: function() {
            console.log(&quot;Honk!&quot;);
        }
    },
    drive: {
        value: function() {
            console.log(&quot;Vroom!&quot;);
        }
    },
    constructor: {
        value: Car
    }            
});

http://jsfiddle.net/YVdxp/</description>
		<content:encoded><![CDATA[<p>Great article!<br />
@WebReflection also has some good insights about inheritance in JavaScript: <a href="http://webreflection.blogspot.com/search/label/inheritance" rel="nofollow">http://webreflection.blogspot.com/search/label/inheritance</a></p>
<p>Another way to construct the prototype chain is by using Object.create, this way you don&#8217;t need to worry with constructor parameters. LandVehicle, for instance, receives numberOfTires as a parameter but we don&#8217;t care about that when creating the Car prototype chain, an alternative is to:</p>
<p>Car.prototype = Object.create(LandVehicle.prototype, {<br />
    horn: {<br />
        value: function() {<br />
            console.log(&#8220;Honk!&#8221;);<br />
        }<br />
    },<br />
    drive: {<br />
        value: function() {<br />
            console.log(&#8220;Vroom!&#8221;);<br />
        }<br />
    },<br />
    constructor: {<br />
        value: Car<br />
    }<br />
});</p>
<p><a href="http://jsfiddle.net/YVdxp/" rel="nofollow">http://jsfiddle.net/YVdxp/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Arduino + Java = error &#8220;Serial Port Already in Use&#8221; by admin</title>
		<link>http://marcosc.com/2011/10/arduino-java-error-serial-port-already-in-use/#comment-342</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Wed, 18 Apr 2012 14:06:27 +0000</pubDate>
		<guid isPermaLink="false">http://marcosc.com/?p=250#comment-342</guid>
		<description>Sorry Scott, I&#039;m don&#039;t know why :(</description>
		<content:encoded><![CDATA[<p>Sorry Scott, I&#8217;m don&#8217;t know why <img src='http://marcosc.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Arduino + Java = error &#8220;Serial Port Already in Use&#8221; by Scott</title>
		<link>http://marcosc.com/2011/10/arduino-java-error-serial-port-already-in-use/#comment-322</link>
		<dc:creator>Scott</dc:creator>
		<pubDate>Thu, 12 Apr 2012 23:00:28 +0000</pubDate>
		<guid isPermaLink="false">http://marcosc.com/?p=250#comment-322</guid>
		<description>Worked great, however I am very curious to know why.
Do you know any of the technical details? 

From what I can discern: permission were changed. (?)</description>
		<content:encoded><![CDATA[<p>Worked great, however I am very curious to know why.<br />
Do you know any of the technical details? </p>
<p>From what I can discern: permission were changed. (?)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Arduino + Java = error &#8220;Serial Port Already in Use&#8221; by admin</title>
		<link>http://marcosc.com/2011/10/arduino-java-error-serial-port-already-in-use/#comment-139</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Fri, 02 Dec 2011 01:14:24 +0000</pubDate>
		<guid isPermaLink="false">http://marcosc.com/?p=250#comment-139</guid>
		<description>Oh, just tried it. Very nice also :)</description>
		<content:encoded><![CDATA[<p>Oh, just tried it. Very nice also <img src='http://marcosc.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Arduino + Java = error &#8220;Serial Port Already in Use&#8221; by jens</title>
		<link>http://marcosc.com/2011/10/arduino-java-error-serial-port-already-in-use/#comment-138</link>
		<dc:creator>jens</dc:creator>
		<pubDate>Thu, 01 Dec 2011 20:58:21 +0000</pubDate>
		<guid isPermaLink="false">http://marcosc.com/?p=250#comment-138</guid>
		<description>hi, worked like a charm. just threw together a simple apple script to give none-terminal users a chance to fix it :) see here https://gist.github.com/1419677

thanks for the fix!</description>
		<content:encoded><![CDATA[<p>hi, worked like a charm. just threw together a simple apple script to give none-terminal users a chance to fix it <img src='http://marcosc.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  see here <a href="https://gist.github.com/1419677" rel="nofollow">https://gist.github.com/1419677</a></p>
<p>thanks for the fix!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Steve Jobs: the story of a sociopath by g</title>
		<link>http://marcosc.com/2011/10/steves-biography/#comment-127</link>
		<dc:creator>g</dc:creator>
		<pubDate>Mon, 14 Nov 2011 20:42:42 +0000</pubDate>
		<guid isPermaLink="false">http://marcosc.com/?p=268#comment-127</guid>
		<description>I&#039;m still half way through the book, but I agree with your analysis. I didn&#039;t know much about Job&#039;s life so the reading is even more interesting!</description>
		<content:encoded><![CDATA[<p>I&#8217;m still half way through the book, but I agree with your analysis. I didn&#8217;t know much about Job&#8217;s life so the reading is even more interesting!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Widgets 1.0 (v2) by Misconception: Widgets reinvent the wheel &#124; Native Web Apps Community Group</title>
		<link>http://marcosc.com/2007/10/widgets-10-v2/#comment-81</link>
		<dc:creator>Misconception: Widgets reinvent the wheel &#124; Native Web Apps Community Group</dc:creator>
		<pubDate>Mon, 10 Oct 2011 16:35:51 +0000</pubDate>
		<guid isPermaLink="false">http://datadriven.com.au/2007/10/17/widgets-10-v2/#comment-81</guid>
		<description>[...] make use of complex internal file/folder structures). I say explicitly because the Working Group looked at all the above formats when we were specifying the W3C widgets format. After a long hard-look at each, we concluded that [...]</description>
		<content:encoded><![CDATA[<p>[...] make use of complex internal file/folder structures). I say explicitly because the Working Group looked at all the above formats when we were specifying the W3C widgets format. After a long hard-look at each, we concluded that [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Marking files as binary in CVS by Marcos</title>
		<link>http://marcosc.com/2011/06/marking-files-as-binary-in-cvs/#comment-61</link>
		<dc:creator>Marcos</dc:creator>
		<pubDate>Sun, 11 Sep 2011 09:03:42 +0000</pubDate>
		<guid isPermaLink="false">http://datadriven.com.au/?p=243#comment-61</guid>
		<description>They know :) They are using mercurial now but I can&#039;t move my stuff over as it&#039;s all interlinked.</description>
		<content:encoded><![CDATA[<p>They know <img src='http://marcosc.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  They are using mercurial now but I can&#8217;t move my stuff over as it&#8217;s all interlinked.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Marking files as binary in CVS by c69</title>
		<link>http://marcosc.com/2011/06/marking-files-as-binary-in-cvs/#comment-60</link>
		<dc:creator>c69</dc:creator>
		<pubDate>Fri, 02 Sep 2011 21:33:29 +0000</pubDate>
		<guid isPermaLink="false">http://datadriven.com.au/?p=243#comment-60</guid>
		<description>You should tell them about git, someday ;) Or mercurial, to not scare them with new syntax.</description>
		<content:encoded><![CDATA[<p>You should tell them about git, someday <img src='http://marcosc.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  Or mercurial, to not scare them with new syntax.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

