<?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 nFriedly Web Dev Tech Blog</title>
	<atom:link href="http://nfriedly.com/techblog/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://nfriedly.com/techblog</link>
	<description>Expert Advice on Website Development, Javascript, Ajax, and Security</description>
	<lastBuildDate>Wed, 01 Feb 2012 22:13:59 +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 Calling all (available) Web Designers &amp; Developers by nFriedly</title>
		<link>http://nfriedly.com/techblog/2010/12/calling-all-avaiable-web-designers-developers/comment-page-1/#comment-5476</link>
		<dc:creator>nFriedly</dc:creator>
		<pubDate>Wed, 01 Feb 2012 22:13:59 +0000</pubDate>
		<guid isPermaLink="false">http://nfriedly.com/techblog/?p=329#comment-5476</guid>
		<description>Why&#039;s that? I&#039;ve worked with a number of overseas developers including people on this list. The internet makes this easy :)</description>
		<content:encoded><![CDATA[<p>Why&#8217;s that? I&#8217;ve worked with a number of overseas developers including people on this list. The internet makes this easy <img src='http://nfriedly.com/techblog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Advanced Javascript: Logical Operators and truthy / falsy by nFriedly</title>
		<link>http://nfriedly.com/techblog/2009/07/advanced-javascript-operators-and-truthy-falsy/comment-page-1/#comment-5475</link>
		<dc:creator>nFriedly</dc:creator>
		<pubDate>Wed, 01 Feb 2012 22:03:03 +0000</pubDate>
		<guid isPermaLink="false">http://nfriedly.com/techblog/?p=46#comment-5475</guid>
		<description>Hi Eric, it looks like you&#039;re confusing the boolean value false with the string value &quot;false&quot;:

[js]
var boolean_false = false;
!!boolean_false; // returns false

var string_false = &quot;false&quot;;
!!string_false; // return true
[/js]

I edited the article to clarify that I&#039;m referring to string values.</description>
		<content:encoded><![CDATA[<p>Hi Eric, it looks like you&#8217;re confusing the boolean value false with the string value &#8220;false&#8221;:</p>
<pre class="brush: jscript; title: ; notranslate">
var boolean_false = false;
!!boolean_false; // returns false

var string_false = &quot;false&quot;;
!!string_false; // return true
</pre>
<p>I edited the article to clarify that I&#8217;m referring to string values.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Advanced Javascript: Logical Operators and truthy / falsy by Eric Hamilton</title>
		<link>http://nfriedly.com/techblog/2009/07/advanced-javascript-operators-and-truthy-falsy/comment-page-1/#comment-5474</link>
		<dc:creator>Eric Hamilton</dc:creator>
		<pubDate>Wed, 01 Feb 2012 19:35:05 +0000</pubDate>
		<guid isPermaLink="false">http://nfriedly.com/techblog/?p=46#comment-5474</guid>
		<description>“false” is evaluated as truthy by both PHP and javascript.

That&#039;s not true in JavaScript:

var a = false,
  b = !!a; // false</description>
		<content:encoded><![CDATA[<p>“false” is evaluated as truthy by both PHP and javascript.</p>
<p>That&#8217;s not true in JavaScript:</p>
<p>var a = false,<br />
  b = !!a; // false</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Calling all (available) Web Designers &amp; Developers by GADEL</title>
		<link>http://nfriedly.com/techblog/2010/12/calling-all-avaiable-web-designers-developers/comment-page-1/#comment-5473</link>
		<dc:creator>GADEL</dc:creator>
		<pubDate>Wed, 01 Feb 2012 13:13:42 +0000</pubDate>
		<guid isPermaLink="false">http://nfriedly.com/techblog/?p=329#comment-5473</guid>
		<description>It&#039;s a shame I live in far away West Africa :)</description>
		<content:encoded><![CDATA[<p>It&#8217;s a shame I live in far away West Africa <img src='http://nfriedly.com/techblog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Advanced Javascript: Objects, Arrays, and Array-Like objects by JavaScript Interview Questions: Arrays &#124; JavaScript Mountain</title>
		<link>http://nfriedly.com/techblog/2009/06/advanced-javascript-objects-arrays-and-array-like-objects/comment-page-1/#comment-5472</link>
		<dc:creator>JavaScript Interview Questions: Arrays &#124; JavaScript Mountain</dc:creator>
		<pubDate>Wed, 01 Feb 2012 06:26:19 +0000</pubDate>
		<guid isPermaLink="false">http://nfriedly.com/techblog/?p=106#comment-5472</guid>
		<description>[...] Hint: JavaScript arrays are Objects [...]</description>
		<content:encoded><![CDATA[<p>[...] Hint: JavaScript arrays are Objects [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Advanced Javascript: Objects, Arrays, and Array-Like objects by Quora</title>
		<link>http://nfriedly.com/techblog/2009/06/advanced-javascript-objects-arrays-and-array-like-objects/comment-page-1/#comment-5470</link>
		<dc:creator>Quora</dc:creator>
		<pubDate>Mon, 30 Jan 2012 13:26:52 +0000</pubDate>
		<guid isPermaLink="false">http://nfriedly.com/techblog/?p=106#comment-5470</guid>
		<description>&lt;strong&gt;Why do arrays work as objects in JavaScript?...&lt;/strong&gt;

go to this link:-http://nfriedly.com/techblog/2009/06/advanced-javascript-objects-arrays-and-array-like-objects/...</description>
		<content:encoded><![CDATA[<p><strong>Why do arrays work as objects in JavaScript?&#8230;</strong></p>
<p>go to this link:-http://nfriedly.com/techblog/2009/06/advanced-javascript-objects-arrays-and-array-like-objects/&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to use XSLT to style an RSS feed by nFriedly</title>
		<link>http://nfriedly.com/techblog/2009/06/how-to-use-xslt-to-style-an-rss-feed/comment-page-1/#comment-5469</link>
		<dc:creator>nFriedly</dc:creator>
		<pubDate>Wed, 25 Jan 2012 18:56:56 +0000</pubDate>
		<guid isPermaLink="false">http://nfriedly.com/techblog/?p=191#comment-5469</guid>
		<description>Because that&#039;s how awesome this trick is! And seriously, what are you going to put pictures of? Raw XML?</description>
		<content:encoded><![CDATA[<p>Because that&#8217;s how awesome this trick is! And seriously, what are you going to put pictures of? Raw XML?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to use XSLT to style an RSS feed by Chykin</title>
		<link>http://nfriedly.com/techblog/2009/06/how-to-use-xslt-to-style-an-rss-feed/comment-page-1/#comment-5468</link>
		<dc:creator>Chykin</dc:creator>
		<pubDate>Wed, 25 Jan 2012 17:54:01 +0000</pubDate>
		<guid isPermaLink="false">http://nfriedly.com/techblog/?p=191#comment-5468</guid>
		<description>WTF? Why are there pictures of Gunbuster on a page about RSS feeds?</description>
		<content:encoded><![CDATA[<p>WTF? Why are there pictures of Gunbuster on a page about RSS feeds?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Advanced Javascript: Objects, Arrays, and Array-Like objects by nFriedly</title>
		<link>http://nfriedly.com/techblog/2009/06/advanced-javascript-objects-arrays-and-array-like-objects/comment-page-1/#comment-5467</link>
		<dc:creator>nFriedly</dc:creator>
		<pubDate>Tue, 24 Jan 2012 08:41:28 +0000</pubDate>
		<guid isPermaLink="false">http://nfriedly.com/techblog/?p=106#comment-5467</guid>
		<description>Yep, that&#039;s another good way to do it :)</description>
		<content:encoded><![CDATA[<p>Yep, that&#8217;s another good way to do it <img src='http://nfriedly.com/techblog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Advanced Javascript: Objects, Arrays, and Array-Like objects by Mark</title>
		<link>http://nfriedly.com/techblog/2009/06/advanced-javascript-objects-arrays-and-array-like-objects/comment-page-1/#comment-5465</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Mon, 23 Jan 2012 16:48:08 +0000</pubDate>
		<guid isPermaLink="false">http://nfriedly.com/techblog/?p=106#comment-5465</guid>
		<description>Frank,

I would take a look at your design and see if objectArray could instead be an Object, and not an Array.  If so, I&#039;d change it&#039;s name to objectLookup, and then finding a module with &quot;attendanceindex&quot; is O(1).

 [js]   var objectLookup = {
       attendanceindex : 
         {
	        moduleKey: &quot;attendancecalendar&quot;,
	        iframe: true,
	        innerWidth: 500,
	        innerHeight: 350,
	        opacity: 0.35,
	        scrolling: false,
	        identifierType: &quot;href&quot;
	 },
         // ...rest of contents of objectArray
    };

    //then later..
    var winner = objectLookup.attendanceindex;[/js]</description>
		<content:encoded><![CDATA[<p>Frank,</p>
<p>I would take a look at your design and see if objectArray could instead be an Object, and not an Array.  If so, I&#8217;d change it&#8217;s name to objectLookup, and then finding a module with &#8220;attendanceindex&#8221; is O(1).</p>
<pre class="brush: jscript; title: ; notranslate">   var objectLookup = {
       attendanceindex :
         {
	        moduleKey: &quot;attendancecalendar&quot;,
	        iframe: true,
	        innerWidth: 500,
	        innerHeight: 350,
	        opacity: 0.35,
	        scrolling: false,
	        identifierType: &quot;href&quot;
	 },
         // ...rest of contents of objectArray
    };

    //then later..
    var winner = objectLookup.attendanceindex;</pre>
]]></content:encoded>
	</item>
</channel>
</rss>

