<?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 Expansive Derivation</title>
	<atom:link href="http://expansive-derivation.ossreleasefeed.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://expansive-derivation.ossreleasefeed.com</link>
	<description>open source is at the root of innovation</description>
	<lastBuildDate>Mon, 23 Jan 2012 16:03:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on Solarize &#8211; Solarized Based Theme For Notepad++ by Rob</title>
		<link>http://expansive-derivation.ossreleasefeed.com/2011/04/solarize-solarized-based-theme-for-notepad/comment-page-1/#comment-668</link>
		<dc:creator>Rob</dc:creator>
		<pubDate>Mon, 23 Jan 2012 16:03:00 +0000</pubDate>
		<guid isPermaLink="false">http://expansive-derivation.ossreleasefeed.com/?p=448#comment-668</guid>
		<description>Thanks for the great work. One note, on the &quot;light&quot; version, the XML declaraction should be before the comment (as in the &quot;dark&quot; version) as opposed to after the header comment. This was causing Notepad++ to crash when importing the scheme.</description>
		<content:encoded><![CDATA[<p>Thanks for the great work. One note, on the &#8220;light&#8221; version, the XML declaraction should be before the comment (as in the &#8220;dark&#8221; version) as opposed to after the header comment. This was causing Notepad++ to crash when importing the scheme.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Lighten Your Load with jQuery live() And delegate() by rad1964</title>
		<link>http://expansive-derivation.ossreleasefeed.com/2010/09/lighten-your-load-with-jquery-live-and-delegate/comment-page-1/#comment-667</link>
		<dc:creator>rad1964</dc:creator>
		<pubDate>Mon, 26 Dec 2011 22:02:00 +0000</pubDate>
		<guid isPermaLink="false">http://expansive-derivation.ossreleasefeed.com/?p=283#comment-667</guid>
		<description>ossreleasefeed: Thank you for the article. It has convinced me that I need to use delegate() for my projects needs. However I am fairly green at Javascript/JQuery, if you find some time or have a knack for problem solving, I have been banging my head over this post I made here: http://www.daniweb.com/web-development/javascript-dhtml-ajax/threads/392167/1686970#post1686970

Appreciate your time and articles!

rad1964                                </description>
		<content:encoded><![CDATA[<p>ossreleasefeed: Thank you for the article. It has convinced me that I need to use delegate() for my projects needs. However I am fairly green at Javascript/JQuery, if you find some time or have a knack for problem solving, I have been banging my head over this post I made here: <a href="http://www.daniweb.com/web-development/javascript-dhtml-ajax/threads/392167/1686970#post1686970" rel="nofollow">http://www.daniweb.com/web-development/javascript-dhtml-ajax/threads/392167/1686970#post1686970</a></p>
<p>Appreciate your time and articles!</p>
<p>rad1964</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Getting Started With CSS3 PIE by Markus</title>
		<link>http://expansive-derivation.ossreleasefeed.com/2010/07/getting-started-with-css3-pie/comment-page-1/#comment-666</link>
		<dc:creator>Markus</dc:creator>
		<pubDate>Mon, 19 Dec 2011 13:04:00 +0000</pubDate>
		<guid isPermaLink="false">http://expansive-derivation.ossreleasefeed.com/?p=150#comment-666</guid>
		<description>In correct background shorthand syntax, positioning comes before repeat instructions. :)









 &#124;&#124;  [ /  ]? &#124;&#124;  &#124;&#124;  &#124;&#124; {1,2}</description>
		<content:encoded><![CDATA[<p>In correct background shorthand syntax, positioning comes before repeat instructions. :)</p>
<p> ||  [ /  ]? ||  ||  || {1,2}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on JavaScript Patterns : The Single Var Pattern by Capprice</title>
		<link>http://expansive-derivation.ossreleasefeed.com/2011/07/javascript-patterns-the-single-var-pattern/comment-page-1/#comment-665</link>
		<dc:creator>Capprice</dc:creator>
		<pubDate>Wed, 14 Dec 2011 14:36:00 +0000</pubDate>
		<guid isPermaLink="false">http://expansive-derivation.ossreleasefeed.com/?p=518#comment-665</guid>
		<description>The best way to avoid falling into global?? Are you kidding me?!
If anything because of a misplaced &quot;;&quot; from copy/paste it&#039;s more likely to run into that. Plus it&#039;s so easy to make mistakes like that.
Heck! I might add and extra semicolon if a big fly come down on it or when pressing right shift :P.

Besides that it&#039;s just like RichardReich said you have to verify syntax when copy/paste, why on earth whould you do that?

Hoisting is no problem, you don&#039;t have to use single var to avoid it.

I keep declarations like this
var x = [], y = []; // init
var i, j, k;
var result = godKnowsWhatInsaneStuff();

Oh yes I do have some extra bytes because of &quot;var&quot;. But wait there are tools that compress js.I do have to agree that it improves readability. But try using format in Eclipse, see what happens ;)</description>
		<content:encoded><![CDATA[<p>The best way to avoid falling into global?? Are you kidding me?!<br />
If anything because of a misplaced &#8220;;&#8221; from copy/paste it&#8217;s more likely to run into that. Plus it&#8217;s so easy to make mistakes like that.<br />
Heck! I might add and extra semicolon if a big fly come down on it or when pressing right shift :P.</p>
<p>Besides that it&#8217;s just like RichardReich said you have to verify syntax when copy/paste, why on earth whould you do that?</p>
<p>Hoisting is no problem, you don&#8217;t have to use single var to avoid it.</p>
<p>I keep declarations like this<br />
var x = [], y = []; // init<br />
var i, j, k;<br />
var result = godKnowsWhatInsaneStuff();</p>
<p>Oh yes I do have some extra bytes because of &#8220;var&#8221;. But wait there are tools that compress js.I do have to agree that it improves readability. But try using format in Eclipse, see what happens ;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on i18njs : Internationalize Your JavaScript With A Little Help From JSON And The Server by Anonymous</title>
		<link>http://expansive-derivation.ossreleasefeed.com/2011/09/i18njs-internationalize-your-javascript-with-a-little-help-from-json-and-the-server/comment-page-1/#comment-663</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Thu, 01 Dec 2011 21:05:00 +0000</pubDate>
		<guid isPermaLink="false">http://expansive-derivation.ossreleasefeed.com/?p=605#comment-663</guid>
		<description>I wrote a similar library back in January, 2011, which uses GNU gettext-style (.po) translation files. Find it at https://github.com/jefftrudeau/i18njs.</description>
		<content:encoded><![CDATA[<p>I wrote a similar library back in January, 2011, which uses GNU gettext-style (.po) translation files. Find it at <a href="https://github.com/jefftrudeau/i18njs" rel="nofollow">https://github.com/jefftrudeau/i18njs</a>.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Served from: expansive-derivation.ossreleasefeed.com @ 2012-02-05 07:02:06 by W3 Total Cache -->
