<?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: cfpayment in eighteen lines of code</title>
	<atom:link href="http://www.ghidinelli.com/2008/11/18/cfpayment-in-eighteen-lines-of-code/feed" rel="self" type="application/rss+xml" />
	<link>http://www.ghidinelli.com/2008/11/18/cfpayment-in-eighteen-lines-of-code</link>
	<description></description>
	<lastBuildDate>Thu, 01 Jun 2017 18:51:00 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: brian</title>
		<link>http://www.ghidinelli.com/2008/11/18/cfpayment-in-eighteen-lines-of-code/comment-page-1#comment-52770</link>
		<dc:creator>brian</dc:creator>
		<pubDate>Wed, 10 Dec 2008 22:25:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.ghidinelli.com/?p=311#comment-52770</guid>
		<description>@Adam - I committed the chaining code today to svn so your example above now works (and is covered in our unit tests):

cc.setAccount(4111111111111111).setMonth(10).setYear(10).setFirstName(”John”).setLastName(”Doe”)

Subversion is available from RIAForge at http://svn.riaforge.org/cfpayment/trunk

Thanks again for the feedback...</description>
		<content:encoded><![CDATA[<p>@Adam &#8211; I committed the chaining code today to svn so your example above now works (and is covered in our unit tests):</p>
<p>cc.setAccount(4111111111111111).setMonth(10).setYear(10).setFirstName(”John”).setLastName(”Doe”)</p>
<p>Subversion is available from RIAForge at <a href="http://svn.riaforge.org/cfpayment/trunk" rel="nofollow">http://svn.riaforge.org/cfpayment/trunk</a></p>
<p>Thanks again for the feedback&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brian</title>
		<link>http://www.ghidinelli.com/2008/11/18/cfpayment-in-eighteen-lines-of-code/comment-page-1#comment-52725</link>
		<dc:creator>Brian</dc:creator>
		<pubDate>Mon, 08 Dec 2008 17:58:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.ghidinelli.com/?p=311#comment-52725</guid>
		<description>@Adam - thanks for the suggestion.  Mark M had suggested that earlier and I think I drug my feet; we&#039;ll probably implement it in the model objects (cc, eft, etc) where that will cut down on repetitive lines of code.  We&#039;ll see if it makes sense in any other situations... my only concern with this approach is consistency but I&#039;ll give it a go.

Mark and I are both putting our systems into production soon so I figure that&#039;ll be the test for 1.0 release.  Thanks for the feedback!</description>
		<content:encoded><![CDATA[<p>@Adam &#8211; thanks for the suggestion.  Mark M had suggested that earlier and I think I drug my feet; we&#8217;ll probably implement it in the model objects (cc, eft, etc) where that will cut down on repetitive lines of code.  We&#8217;ll see if it makes sense in any other situations&#8230; my only concern with this approach is consistency but I&#8217;ll give it a go.</p>
<p>Mark and I are both putting our systems into production soon so I figure that&#8217;ll be the test for 1.0 release.  Thanks for the feedback!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adam Tuttle</title>
		<link>http://www.ghidinelli.com/2008/11/18/cfpayment-in-eighteen-lines-of-code/comment-page-1#comment-52648</link>
		<dc:creator>Adam Tuttle</dc:creator>
		<pubDate>Fri, 05 Dec 2008 23:12:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.ghidinelli.com/?p=311#comment-52648</guid>
		<description>Impressive. Something you might consider adding is having the functions that normally return void return &quot;this&quot; instead, which would allow you to chain commands, similar to jQuery:

account.setAccount(4111111111111111).setMonth(10).setYear(10).setFirstName(&quot;John&quot;).setLastName(&quot;Doe&quot;)

And for what it&#039;s worth, this wouldn&#039;t break backwards compatibility. :)</description>
		<content:encoded><![CDATA[<p>Impressive. Something you might consider adding is having the functions that normally return void return &#8220;this&#8221; instead, which would allow you to chain commands, similar to jQuery:</p>
<p>account.setAccount(4111111111111111).setMonth(10).setYear(10).setFirstName(&#8220;John&#8221;).setLastName(&#8220;Doe&#8221;)</p>
<p>And for what it&#8217;s worth, this wouldn&#8217;t break backwards compatibility. <img src='http://www.ghidinelli.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sami Hoda</title>
		<link>http://www.ghidinelli.com/2008/11/18/cfpayment-in-eighteen-lines-of-code/comment-page-1#comment-52316</link>
		<dc:creator>Sami Hoda</dc:creator>
		<pubDate>Wed, 19 Nov 2008 19:11:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.ghidinelli.com/?p=311#comment-52316</guid>
		<description>Nice!</description>
		<content:encoded><![CDATA[<p>Nice!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Allen</title>
		<link>http://www.ghidinelli.com/2008/11/18/cfpayment-in-eighteen-lines-of-code/comment-page-1#comment-52314</link>
		<dc:creator>John Allen</dc:creator>
		<pubDate>Wed, 19 Nov 2008 17:25:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.ghidinelli.com/?p=311#comment-52314</guid>
		<description>Looks very slick.</description>
		<content:encoded><![CDATA[<p>Looks very slick.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
