<?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: JavaScript Luhn modulus implementation</title>
	<atom:link href="http://blog.planzero.org/2009/08/javascript-luhn-modulus-implementation/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.planzero.org/2009/08/javascript-luhn-modulus-implementation/</link>
	<description>Mind dump</description>
	<lastBuildDate>Sun, 05 Sep 2010 08:56:33 +0100</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Brenda Berge</title>
		<link>http://blog.planzero.org/2009/08/javascript-luhn-modulus-implementation/comment-page-1/#comment-1774</link>
		<dc:creator>Brenda Berge</dc:creator>
		<pubDate>Thu, 24 Dec 2009 12:16:09 +0000</pubDate>
		<guid isPermaLink="false">http://blog.planzero.org/?p=267#comment-1774</guid>
		<description>Hi, possibly this post might be off topic but anyways, I have been browsing around your blog and it appears very neat. It is obvious that you know the topic and you seem passionate about it. We are constructing a fresh weblog plus I&#039;m attempting to make it look good, as well as offer quality message. I have discovered much visiting your internet site and also I anticipate more quality information and will be coming back soon. Many thanks.</description>
		<content:encoded><![CDATA[<p>Hi, possibly this post might be off topic but anyways, I have been browsing around your blog and it appears very neat. It is obvious that you know the topic and you seem passionate about it. We are constructing a fresh weblog plus I&#8217;m attempting to make it look good, as well as offer quality message. I have discovered much visiting your internet site and also I anticipate more quality information and will be coming back soon. Many thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael J Long</title>
		<link>http://blog.planzero.org/2009/08/javascript-luhn-modulus-implementation/comment-page-1/#comment-1773</link>
		<dc:creator>Michael J Long</dc:creator>
		<pubDate>Thu, 24 Dec 2009 12:01:02 +0000</pubDate>
		<guid isPermaLink="false">http://blog.planzero.org/?p=267#comment-1773</guid>
		<description>Hello, maybe this entry could be off topic but anyhow, Having been browsing around your website and it seems seriously cool. It is obvious that you know your topic and you seem passionate about it. We are creating a new web site and I am struggling to make it look great, and present the best quality writing. I have discovered a good deal from this internet site plus I anticipate further quality content and will be coming back soon. Many thanks.</description>
		<content:encoded><![CDATA[<p>Hello, maybe this entry could be off topic but anyhow, Having been browsing around your website and it seems seriously cool. It is obvious that you know your topic and you seem passionate about it. We are creating a new web site and I am struggling to make it look great, and present the best quality writing. I have discovered a good deal from this internet site plus I anticipate further quality content and will be coming back soon. Many thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: yves</title>
		<link>http://blog.planzero.org/2009/08/javascript-luhn-modulus-implementation/comment-page-1/#comment-1771</link>
		<dc:creator>yves</dc:creator>
		<pubDate>Thu, 10 Dec 2009 14:25:09 +0000</pubDate>
		<guid isPermaLink="false">http://blog.planzero.org/?p=267#comment-1771</guid>
		<description>// If this is a &quot;non-white-space characters&quot; minimum contest, you can
// return instead:
return !(total % 10);

// or simply remove your ()&#039;s... 18 vs 20 :-)</description>
		<content:encoded><![CDATA[<p>// If this is a &#8220;non-white-space characters&#8221; minimum contest, you can<br />
// return instead:<br />
return !(total % 10);</p>
<p>// or simply remove your ()&#8217;s&#8230; 18 vs 20 :-)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Israel</title>
		<link>http://blog.planzero.org/2009/08/javascript-luhn-modulus-implementation/comment-page-1/#comment-1766</link>
		<dc:creator>Israel</dc:creator>
		<pubDate>Sat, 14 Nov 2009 20:45:52 +0000</pubDate>
		<guid isPermaLink="false">http://blog.planzero.org/?p=267#comment-1766</guid>
		<description>you can replace:

  // If the total mod 10 equals 0, the number is valid
  if (total % 10 == 0) {
    return true;
  } else {
    return false;
  }
 

with

  // If the total mod 10 equals 0, the number is valid
  return (total % 10 == 0);</description>
		<content:encoded><![CDATA[<p>you can replace:</p>
<p>  // If the total mod 10 equals 0, the number is valid<br />
  if (total % 10 == 0) {<br />
    return true;<br />
  } else {<br />
    return false;<br />
  }</p>
<p>with</p>
<p>  // If the total mod 10 equals 0, the number is valid<br />
  return (total % 10 == 0);</p>
]]></content:encoded>
	</item>
</channel>
</rss>
