<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for Chris Tierney</title>
	<atom:link href="http://christierney.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://christierney.com</link>
	<description>ColdFusion, jQuery and other stuff...</description>
	<lastBuildDate>Thu, 16 Feb 2012 20:13:44 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>Comment on jQuery Select All Checkboxes by Michael Zock</title>
		<link>http://christierney.com/2012/02/16/jquery-select-all-checkboxes/#comment-434</link>
		<dc:creator><![CDATA[Michael Zock]]></dc:creator>
		<pubDate>Thu, 16 Feb 2012 20:13:44 +0000</pubDate>
		<guid isPermaLink="false">http://christierney.com/?p=648#comment-434</guid>
		<description><![CDATA[Interesting. I usually tend to use something based on http://api.jquery.com/jQuery.each/]]></description>
		<content:encoded><![CDATA[<p>Interesting. I usually tend to use something based on <a href="http://api.jquery.com/jQuery.each/" rel="nofollow">http://api.jquery.com/jQuery.each/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Looping Over Arrays in ColdFusion 9.01 (CFScript) by Sharon</title>
		<link>http://christierney.com/2012/02/14/looping-over-arrays-in-coldfusion-9-01-cfscript/#comment-433</link>
		<dc:creator><![CDATA[Sharon]]></dc:creator>
		<pubDate>Wed, 15 Feb 2012 22:02:30 +0000</pubDate>
		<guid isPermaLink="false">http://christierney.com/?p=643#comment-433</guid>
		<description><![CDATA[Yeah, the lack of an index value has forced me back into old-style array loops more than once.]]></description>
		<content:encoded><![CDATA[<p>Yeah, the lack of an index value has forced me back into old-style array loops more than once.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Looping Over Arrays in ColdFusion 9.01 (CFScript) by Mike Klostermeyer</title>
		<link>http://christierney.com/2012/02/14/looping-over-arrays-in-coldfusion-9-01-cfscript/#comment-432</link>
		<dc:creator><![CDATA[Mike Klostermeyer]]></dc:creator>
		<pubDate>Wed, 15 Feb 2012 18:33:50 +0000</pubDate>
		<guid isPermaLink="false">http://christierney.com/?p=643#comment-432</guid>
		<description><![CDATA[When looping in tags you can also use the &lt;cfloop array=&quot;&quot;...syntax in the same manner.

Unfortunately, when you loop this way you can&#039;t tell which iteration of the loop you are on without incrementing a separate variable within the code.  Granted, you don&#039;t always need to know which iteration you are on, but it&#039;s ugly when you do.]]></description>
		<content:encoded><![CDATA[<p>When looping in tags you can also use the &lt;cfloop array=&quot;&quot;&#8230;syntax in the same manner.</p>
<p>Unfortunately, when you loop this way you can&#039;t tell which iteration of the loop you are on without incrementing a separate variable within the code.  Granted, you don&#039;t always need to know which iteration you are on, but it&#039;s ugly when you do.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Looping Over Arrays in ColdFusion 9.01 (CFScript) by Robert</title>
		<link>http://christierney.com/2012/02/14/looping-over-arrays-in-coldfusion-9-01-cfscript/#comment-431</link>
		<dc:creator><![CDATA[Robert]]></dc:creator>
		<pubDate>Wed, 15 Feb 2012 13:36:59 +0000</pubDate>
		<guid isPermaLink="false">http://christierney.com/?p=643#comment-431</guid>
		<description><![CDATA[Looping in CF is still a complete mess though.

Looping over a collection, be it list, struct, array or otherwise should all conform to a standard syntax.

I find myself often wrapping collections up in my own iterator objects so if I switch the implementation of a collection from array to struct looping over the collection can still be done with the same syntax.

Robert]]></description>
		<content:encoded><![CDATA[<p>Looping in CF is still a complete mess though.</p>
<p>Looping over a collection, be it list, struct, array or otherwise should all conform to a standard syntax.</p>
<p>I find myself often wrapping collections up in my own iterator objects so if I switch the implementation of a collection from array to struct looping over the collection can still be done with the same syntax.</p>
<p>Robert</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Looping Over Arrays in ColdFusion 9.01 (CFScript) by Simon Bingham</title>
		<link>http://christierney.com/2012/02/14/looping-over-arrays-in-coldfusion-9-01-cfscript/#comment-429</link>
		<dc:creator><![CDATA[Simon Bingham]]></dc:creator>
		<pubDate>Wed, 15 Feb 2012 11:47:19 +0000</pubDate>
		<guid isPermaLink="false">http://christierney.com/?p=643#comment-429</guid>
		<description><![CDATA[You can also var scope &#039;item&#039; inside the loop which saves you from having to do it elsewhere. 

For example:

for( var item in array ) {
  doSomething(item);
}

instead of:

var item = &quot;&quot;;
for( item in array ) {
  doSomething(item);
}]]></description>
		<content:encoded><![CDATA[<p>You can also var scope &#8216;item&#8217; inside the loop which saves you from having to do it elsewhere. </p>
<p>For example:</p>
<p>for( var item in array ) {<br />
  doSomething(item);<br />
}</p>
<p>instead of:</p>
<p>var item = &#8220;&#8221;;<br />
for( item in array ) {<br />
  doSomething(item);<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on My New Experience Getting ColdFusion Builder 2 Console Working by Simon Bingham</title>
		<link>http://christierney.com/2012/02/03/my-new-experience-getting-coldfusion-builder-2-console-working/#comment-426</link>
		<dc:creator><![CDATA[Simon Bingham]]></dc:creator>
		<pubDate>Mon, 06 Feb 2012 11:37:41 +0000</pubDate>
		<guid isPermaLink="false">http://christierney.com/?p=635#comment-426</guid>
		<description><![CDATA[Thanks for this. I&#039;ve had exactly the same problem, but couldn&#039;t work out how to fix it. The console&#039;s really useful when using ColdFusion ORM. :)]]></description>
		<content:encoded><![CDATA[<p>Thanks for this. I&#8217;ve had exactly the same problem, but couldn&#8217;t work out how to fix it. The console&#8217;s really useful when using ColdFusion ORM. <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Adobe Flex Builder 3 Download by Soumya Vinod</title>
		<link>http://christierney.com/2011/11/09/adobe-flex-builder-3-download/#comment-424</link>
		<dc:creator><![CDATA[Soumya Vinod]]></dc:creator>
		<pubDate>Sun, 05 Feb 2012 00:38:32 +0000</pubDate>
		<guid isPermaLink="false">http://christierney.com/?p=549#comment-424</guid>
		<description><![CDATA[Thanks, you saved my time. Flash builder 4  has some compatibility issues when migrating from version 3, which mean the design option won&#039;t come. 
My client is using version 3 and i was searching for its source, this post helps me]]></description>
		<content:encoded><![CDATA[<p>Thanks, you saved my time. Flash builder 4  has some compatibility issues when migrating from version 3, which mean the design option won&#8217;t come.<br />
My client is using version 3 and i was searching for its source, this post helps me</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on My New Experience Getting ColdFusion Builder 2 Console Working by Henry Ho (@henrylearn2rock)</title>
		<link>http://christierney.com/2012/02/03/my-new-experience-getting-coldfusion-builder-2-console-working/#comment-423</link>
		<dc:creator><![CDATA[Henry Ho (@henrylearn2rock)]]></dc:creator>
		<pubDate>Sat, 04 Feb 2012 00:12:38 +0000</pubDate>
		<guid isPermaLink="false">http://christierney.com/?p=635#comment-423</guid>
		<description><![CDATA[cool, thx, never got it to work.]]></description>
		<content:encoded><![CDATA[<p>cool, thx, never got it to work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Adobe Flex Builder 3 Download by Jane</title>
		<link>http://christierney.com/2011/11/09/adobe-flex-builder-3-download/#comment-418</link>
		<dc:creator><![CDATA[Jane]]></dc:creator>
		<pubDate>Thu, 26 Jan 2012 17:57:49 +0000</pubDate>
		<guid isPermaLink="false">http://christierney.com/?p=549#comment-418</guid>
		<description><![CDATA[Holy crap, you just saved my regression test.]]></description>
		<content:encoded><![CDATA[<p>Holy crap, you just saved my regression test.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Adobe Flex Builder 3 Download by Pierre</title>
		<link>http://christierney.com/2011/11/09/adobe-flex-builder-3-download/#comment-410</link>
		<dc:creator><![CDATA[Pierre]]></dc:creator>
		<pubDate>Thu, 12 Jan 2012 22:44:58 +0000</pubDate>
		<guid isPermaLink="false">http://christierney.com/?p=549#comment-410</guid>
		<description><![CDATA[Cool, very useful for when you just need that old version :-)]]></description>
		<content:encoded><![CDATA[<p>Cool, very useful for when you just need that old version <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>

