<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.2.1" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Comments for parentNode.org</title>
	<link>http://parentnode.org</link>
	<description>The building blocks of a solid frontend.</description>
	<pubDate>Fri, 12 Mar 2010 14:51:20 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2.1</generator>

	<item>
		<title>Comment on Working with the Cursor Position by BA</title>
		<link>http://parentnode.org/javascript/working-with-the-cursor-position/#comment-23281</link>
		<author>BA</author>
		<pubDate>Wed, 07 Oct 2009 17:23:11 +0000</pubDate>
		<guid>http://parentnode.org/javascript/working-with-the-cursor-position/#comment-23281</guid>
		<description>An easy way to get the row count is to count the number of newline characters (assuming wordwrap is off - ).</description>
		<content:encoded><![CDATA[<p>An easy way to get the row count is to count the number of newline characters (assuming wordwrap is off - ).</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Default Arguments in JavaScript Functions by Hammad</title>
		<link>http://parentnode.org/javascript/default-arguments-in-javascript-functions/#comment-23170</link>
		<author>Hammad</author>
		<pubDate>Thu, 01 Oct 2009 11:29:25 +0000</pubDate>
		<guid>http://parentnode.org/javascript/default-arguments-in-javascript-functions/#comment-23170</guid>
		<description>Hello, to the last message of Rohan, there can be several ways to accomplish this, ofcourse you can put any number of if and switch statements but I liked the solution author has gave, its neat and clean. Guess what I am accepting 6 variables and that would have get me to put 6 if else statements. Good work fatbrain!</description>
		<content:encoded><![CDATA[<p>Hello, to the last message of Rohan, there can be several ways to accomplish this, ofcourse you can put any number of if and switch statements but I liked the solution author has gave, its neat and clean. Guess what I am accepting 6 variables and that would have get me to put 6 if else statements. Good work fatbrain!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Default Arguments in JavaScript Functions by firefight</title>
		<link>http://parentnode.org/javascript/default-arguments-in-javascript-functions/#comment-22789</link>
		<author>firefight</author>
		<pubDate>Fri, 18 Sep 2009 14:31:47 +0000</pubDate>
		<guid>http://parentnode.org/javascript/default-arguments-in-javascript-functions/#comment-22789</guid>
		<description>Although your solution is no doubt "cool", I can't see your rational at all. You said the original solution is not sufficient but you gave no reason why, and I don't see any advantage of your proposed solution over it. You basically replaced a simple one line IF statement that is commonly understood practice throughout the industry (aka a common idiom) with a monster. You would definitely need more justification to do something like this in a production system where there is more than one developer working on it.</description>
		<content:encoded><![CDATA[<p>Although your solution is no doubt &#8220;cool&#8221;, I can&#8217;t see your rational at all. You said the original solution is not sufficient but you gave no reason why, and I don&#8217;t see any advantage of your proposed solution over it. You basically replaced a simple one line IF statement that is commonly understood practice throughout the industry (aka a common idiom) with a monster. You would definitely need more justification to do something like this in a production system where there is more than one developer working on it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Easy to embed, webcam based barcode scanner in flash. by Eddy</title>
		<link>http://parentnode.org/flash/easy-to-embed-webcam-based-barcode-scanner-in-flash/#comment-22684</link>
		<author>Eddy</author>
		<pubDate>Tue, 15 Sep 2009 21:27:59 +0000</pubDate>
		<guid>http://parentnode.org/flash/easy-to-embed-webcam-based-barcode-scanner-in-flash/#comment-22684</guid>
		<description>What is the reason that the 'scannerdemo.fla' document (in barcodecomponent1.0.zip) is a 'Compiled Clip'? So I cannot edit this 'Library' in Adobe Flash CS3 Professional.</description>
		<content:encoded><![CDATA[<p>What is the reason that the &#8217;scannerdemo.fla&#8217; document (in barcodecomponent1.0.zip) is a &#8216;Compiled Clip&#8217;? So I cannot edit this &#8216;Library&#8217; in Adobe Flash CS3 Professional.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Working with the Cursor Position by Abdul Rehman</title>
		<link>http://parentnode.org/javascript/working-with-the-cursor-position/#comment-22409</link>
		<author>Abdul Rehman</author>
		<pubDate>Sat, 05 Sep 2009 04:49:24 +0000</pubDate>
		<guid>http://parentnode.org/javascript/working-with-the-cursor-position/#comment-22409</guid>
		<description>SIMPLY GREAT JOB</description>
		<content:encoded><![CDATA[<p>SIMPLY GREAT JOB</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Javascript Browser Detection Revisited by Caracho</title>
		<link>http://parentnode.org/javascript/javascript-browser-detection-revisited/#comment-20849</link>
		<author>Caracho</author>
		<pubDate>Tue, 14 Jul 2009 18:31:34 +0000</pubDate>
		<guid>http://parentnode.org/javascript/javascript-browser-detection-revisited/#comment-20849</guid>
		<description>Great exceptic point of view!

How would you add for detecting Firefox, Netscape?

Thanks to all</description>
		<content:encoded><![CDATA[<p>Great exceptic point of view!</p>
<p>How would you add for detecting Firefox, Netscape?</p>
<p>Thanks to all</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Default Arguments in JavaScript Functions by lionheart</title>
		<link>http://parentnode.org/javascript/default-arguments-in-javascript-functions/#comment-20229</link>
		<author>lionheart</author>
		<pubDate>Fri, 26 Jun 2009 18:29:00 +0000</pubDate>
		<guid>http://parentnode.org/javascript/default-arguments-in-javascript-functions/#comment-20229</guid>
		<description>Maybe I'm crazy, and I only read 75% of the comments, but how do you supply a default value for say... ONLY the fifth parameter of a function?

This is the only way I see how:
var asdf = function(a, b, c, d, e).defaults(undefined,undefined,undefined,undefined,'mydefaultvalue');

And given how often the later parameters are optional and first ones are required, I'd much rather use your original, inituitive  typeof solution which requires no extra code to hunt down or include.</description>
		<content:encoded><![CDATA[<p>Maybe I&#8217;m crazy, and I only read 75% of the comments, but how do you supply a default value for say&#8230; ONLY the fifth parameter of a function?</p>
<p>This is the only way I see how:<br />
var asdf = function(a, b, c, d, e).defaults(undefined,undefined,undefined,undefined,&#8217;mydefaultvalue&#8217;);</p>
<p>And given how often the later parameters are optional and first ones are required, I&#8217;d much rather use your original, inituitive  typeof solution which requires no extra code to hunt down or include.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using AS3&#8217;s computeSpectrum by ruud</title>
		<link>http://parentnode.org/flash/using-as3s-computespectrum/#comment-19705</link>
		<author>ruud</author>
		<pubDate>Thu, 11 Jun 2009 19:00:14 +0000</pubDate>
		<guid>http://parentnode.org/flash/using-as3s-computespectrum/#comment-19705</guid>
		<description>herman is right... thnx!</description>
		<content:encoded><![CDATA[<p>herman is right&#8230; thnx!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The Worlds smallest Flash Pong Game by 16652</title>
		<link>http://parentnode.org/flash/the-worlds-smallest-flash-pong-game/#comment-19675</link>
		<author>16652</author>
		<pubDate>Tue, 09 Jun 2009 23:26:51 +0000</pubDate>
		<guid>http://parentnode.org/flash/the-worlds-smallest-flash-pong-game/#comment-19675</guid>
		<description>your game is really bad, pong is terrible, make a zombie survial game and post it. make it good and millions of people will play it like the last stand 2. Just do it pong is gay</description>
		<content:encoded><![CDATA[<p>your game is really bad, pong is terrible, make a zombie survial game and post it. make it good and millions of people will play it like the last stand 2. Just do it pong is gay</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Easy to embed, webcam based barcode scanner in flash. by Srinivasa</title>
		<link>http://parentnode.org/flash/easy-to-embed-webcam-based-barcode-scanner-in-flash/#comment-19568</link>
		<author>Srinivasa</author>
		<pubDate>Tue, 02 Jun 2009 15:40:48 +0000</pubDate>
		<guid>http://parentnode.org/flash/easy-to-embed-webcam-based-barcode-scanner-in-flash/#comment-19568</guid>
		<description>Hi Chris,
            Is it possible for you read QR (2D) barcodes from your code. 
Also how much OCR can this do.Do we need to hold the object very close to webcam. I am looking for applications like reading snippets of newspapers etc.

Please write to me.

Thanks
Srini</description>
		<content:encoded><![CDATA[<p>Hi Chris,<br />
            Is it possible for you read QR (2D) barcodes from your code.<br />
Also how much OCR can this do.Do we need to hold the object very close to webcam. I am looking for applications like reading snippets of newspapers etc.</p>
<p>Please write to me.</p>
<p>Thanks<br />
Srini</p>
]]></content:encoded>
	</item>
</channel>
</rss>
