<?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 on: Free Chapter: &#8220;Coding and Design Patterns&#8221; from Stoyan Stefanov&#8217;s Object-Oriented JavaScript</title>
	<atom:link href="http://www.yuiblog.com/blog/index.php/2008/09/26/oojs/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.yuiblog.com/blog/2008/09/26/oojs/</link>
	<description>The official blog of the YUI Project.</description>
	<lastBuildDate>Fri, 12 Mar 2010 22:28:17 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Jim</title>
		<link>http://www.yuiblog.com/blog/2008/09/26/oojs/comment-page-1/#comment-494533</link>
		<dc:creator>Jim</dc:creator>
		<pubDate>Tue, 14 Oct 2008 21:45:32 +0000</pubDate>
		<guid isPermaLink="false">http://yuiblog.com/blog/2008/09/26/oojs/#comment-494533</guid>
		<description>Thanks for the chapter, I read a lot of it and bookmarked it for reference. Thanks!</description>
		<content:encoded><![CDATA[<p>Thanks for the chapter, I read a lot of it and bookmarked it for reference. Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rascunho &#187; Blog Archive &#187; links for 2008-10-02</title>
		<link>http://www.yuiblog.com/blog/2008/09/26/oojs/comment-page-1/#comment-485001</link>
		<dc:creator>rascunho &#187; Blog Archive &#187; links for 2008-10-02</dc:creator>
		<pubDate>Thu, 02 Oct 2008 20:13:55 +0000</pubDate>
		<guid isPermaLink="false">http://yuiblog.com/blog/2008/09/26/oojs/#comment-485001</guid>
		<description></description>
		<content:encoded><![CDATA[<p>[...] Free Chapter: “Coding and Design Patterns” from Stoyan Stefanov’s Object-Oriented JavaScript &#8230; Stoyan’s latest project is Object Oriented JavaScript, a new book from Packt whose simple goal is to help you learn how to “think in JavaScript.” (tags: yuiblog.com 2008 mes9 dia2 OOP JavaScript book capítulo_de_livro blog_post) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tupi &#187; Blog Archive &#187; Membro da Yahoo! lança o livro &#8220;Object-Oriented JavaScript&#8221;</title>
		<link>http://www.yuiblog.com/blog/2008/09/26/oojs/comment-page-1/#comment-484738</link>
		<dc:creator>Tupi &#187; Blog Archive &#187; Membro da Yahoo! lança o livro &#8220;Object-Oriented JavaScript&#8221;</dc:creator>
		<pubDate>Thu, 02 Oct 2008 14:39:27 +0000</pubDate>
		<guid isPermaLink="false">http://yuiblog.com/blog/2008/09/26/oojs/#comment-484738</guid>
		<description>[...] Fonte: YUI Blog [...]</description>
		<content:encoded><![CDATA[<p>[...] Fonte: YUI Blog [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 面向对象的JavaScript第八章试读 &#124; flex学习资源</title>
		<link>http://www.yuiblog.com/blog/2008/09/26/oojs/comment-page-1/#comment-480885</link>
		<dc:creator>面向对象的JavaScript第八章试读 &#124; flex学习资源</dc:creator>
		<pubDate>Sun, 28 Sep 2008 20:11:07 +0000</pubDate>
		<guid isPermaLink="false">http://yuiblog.com/blog/2008/09/26/oojs/#comment-480885</guid>
		<description>[...] YUI blog 那里看到，Stoyan Stefanov （是个牛人，好像Yahoo UED 的就没有不是牛人的） [...]</description>
		<content:encoded><![CDATA[<p>[...] YUI blog 那里看到，Stoyan Stefanov （是个牛人，好像Yahoo UED 的就没有不是牛人的） [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stoyan</title>
		<link>http://www.yuiblog.com/blog/2008/09/26/oojs/comment-page-1/#comment-479481</link>
		<dc:creator>Stoyan</dc:creator>
		<pubDate>Sat, 27 Sep 2008 10:46:21 +0000</pubDate>
		<guid isPermaLink="false">http://yuiblog.com/blog/2008/09/26/oojs/#comment-479481</guid>
		<description>Ha, nice catch, thanks very much, Matt!</description>
		<content:encoded><![CDATA[<p>Ha, nice catch, thanks very much, Matt!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: matt</title>
		<link>http://www.yuiblog.com/blog/2008/09/26/oojs/comment-page-1/#comment-479389</link>
		<dc:creator>matt</dc:creator>
		<pubDate>Sat, 27 Sep 2008 07:40:17 +0000</pubDate>
		<guid isPermaLink="false">http://yuiblog.com/blog/2008/09/26/oojs/#comment-479389</guid>
		<description>On page 285:
var obj = {
	function: doSomething() {
		console.log(&#039;sure, asap&#039;);
	}
};
Should probably be:
var obj = {
	doSomething: function() {
		console.log(&#039;sure, asap&#039;);
	}
};</description>
		<content:encoded><![CDATA[<p>On page 285:<br />
var obj = {<br />
	function: doSomething() {<br />
		console.log(&#8217;sure, asap&#8217;);<br />
	}<br />
};<br />
Should probably be:<br />
var obj = {<br />
	doSomething: function() {<br />
		console.log(&#8217;sure, asap&#8217;);<br />
	}<br />
};</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: phpied.com &#187; Blog Archive &#187; OOJS book free chapter 8 on YUIblog</title>
		<link>http://www.yuiblog.com/blog/2008/09/26/oojs/comment-page-1/#comment-479084</link>
		<dc:creator>phpied.com &#187; Blog Archive &#187; OOJS book free chapter 8 on YUIblog</dc:creator>
		<pubDate>Fri, 26 Sep 2008 22:25:21 +0000</pubDate>
		<guid isPermaLink="false">http://yuiblog.com/blog/2008/09/26/oojs/#comment-479084</guid>
		<description>[...] 8 of the Object-Oriented JavaScript is available at the YUIblog.com. [...]</description>
		<content:encoded><![CDATA[<p>[...] 8 of the Object-Oriented JavaScript is available at the YUIblog.com. [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
