<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.1.3" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Comments on: Playing with the CueCat barcode scanner.</title>
	<link>http://www.mariovaldez.net/webapps/blog/2006/02/23/playing-with-the-cuecat-barcode-scanner/</link>
	<description>Cosas de... &#124; Stuff by...  Mario A. Valdez-Ramírez</description>
	<pubDate>Thu,  3 Jul 2008 23:31:27 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.1.3</generator>

	<item>
		<title>By: Anonymous</title>
		<link>http://www.mariovaldez.net/webapps/blog/2006/02/23/playing-with-the-cuecat-barcode-scanner/#comment-175</link>
		<author>Anonymous</author>
		<pubDate>Mon, 03 Jul 2006 01:42:24 +0000</pubDate>
		<guid>http://www.mariovaldez.net/webapps/blog/2006/02/23/playing-with-the-cuecat-barcode-scanner/#comment-175</guid>
					<description>hello,

this is just a really nice CAPTCHA image generator ;-)

but somehow it doesn't seem to work as i can do as many posts as i would like ;-)</description>
		<content:encoded><![CDATA[<p>hello,</p>
<p>this is just a really nice CAPTCHA image generator <img src='http://www.mariovaldez.net/webapps/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>but somehow it doesn&#8217;t seem to work as i can do as many posts as i would like <img src='http://www.mariovaldez.net/webapps/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /></p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://www.mariovaldez.net/webapps/blog/2006/02/23/playing-with-the-cuecat-barcode-scanner/#comment-176</link>
		<author>Anonymous</author>
		<pubDate>Mon, 03 Jul 2006 01:42:57 +0000</pubDate>
		<guid>http://www.mariovaldez.net/webapps/blog/2006/02/23/playing-with-the-cuecat-barcode-scanner/#comment-176</guid>
					<description>hello,

this is just a really nice CAPTCHA image generator ;-)</description>
		<content:encoded><![CDATA[<p>hello,</p>
<p>this is just a really nice CAPTCHA image generator <img src='http://www.mariovaldez.net/webapps/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /></p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://www.mariovaldez.net/webapps/blog/2006/02/23/playing-with-the-cuecat-barcode-scanner/#comment-177</link>
		<author>Anonymous</author>
		<pubDate>Mon, 03 Jul 2006 01:43:52 +0000</pubDate>
		<guid>http://www.mariovaldez.net/webapps/blog/2006/02/23/playing-with-the-cuecat-barcode-scanner/#comment-177</guid>
					<description>hello,

this entry comes from a captcha SPAM form ...
... as your captcha script doesn't seem to work!

what happened??</description>
		<content:encoded><![CDATA[<p>hello,</p>
<p>this entry comes from a captcha SPAM form &#8230;<br />
&#8230; as your captcha script doesn&#8217;t seem to work!</p>
<p>what happened??</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://www.mariovaldez.net/webapps/blog/2006/02/23/playing-with-the-cuecat-barcode-scanner/#comment-179</link>
		<author>Anonymous</author>
		<pubDate>Mon, 03 Jul 2006 01:45:14 +0000</pubDate>
		<guid>http://www.mariovaldez.net/webapps/blog/2006/02/23/playing-with-the-cuecat-barcode-scanner/#comment-179</guid>
					<description>/** @private **/
		function check_captcha($public,$private)
		{
				$res = 'FALSE';
				// when check, destroy picture on disk
				if(file_exists($this-&#62;get_filename($public)))
				{
						$res = @unlink($this-&#62;get_filename($public)) ? 'TRUE' : 'FALSE';
						if($this-&#62;debug) echo "\n-Captcha-Debug: Delete image (".$this-&#62;get_filename($public).") returns: ($res)";
						$res = (strtolower($private)==strtolower($this-&#62;generate_private($public))) ? 'TRUE' : 'FALSE';
						if($this-&#62;debug) echo "\n-Captcha-Debug: Comparing public with private key returns: ($res)";
				}
				return $res == 'TRUE' ? TRUE : FALSE;
		}
			/* OLD FUNCTION, without HotFix from Daniel Jagszent :
				function check_captcha($public,$private)
				{
					// when check, destroy picture on disk
					if(file_exists($this-&#62;get_filename($public)))
					{
						$res = @unlink($this-&#62;get_filename($public)) ? 'TRUE' : 'FALSE';
						if($this-&#62;debug) echo "\n-Captcha-Debug: Delete image (".$this-&#62;get_filename($public).") returns: ($res)";
					}
					$res = (strtolower($private)==strtolower($this-&#62;generate_private($public))) ? 'TRUE' : 'FALSE';
					if($this-&#62;debug) echo "\n-Captcha-Debug: Comparing public with private key returns: ($res)";
					return $res == 'TRUE' ? TRUE : FALSE;
				}
			*/</description>
		<content:encoded><![CDATA[<p>/** @private **/<br />
		function check_captcha($public,$private)<br />
		{<br />
				$res = &#8216;FALSE&#8217;;<br />
				// when check, destroy picture on disk<br />
				if(file_exists($this-&gt;get_filename($public)))<br />
				{<br />
						$res = @unlink($this-&gt;get_filename($public)) ? &#8216;TRUE&#8217; : &#8216;FALSE&#8217;;<br />
						if($this-&gt;debug) echo &#8220;\n-Captcha-Debug: Delete image (&#8221;.$this-&gt;get_filename($public).&#8221;) returns: ($res)&#8221;;<br />
						$res = (strtolower($private)==strtolower($this-&gt;generate_private($public))) ? &#8216;TRUE&#8217; : &#8216;FALSE&#8217;;<br />
						if($this-&gt;debug) echo &#8220;\n-Captcha-Debug: Comparing public with private key returns: ($res)&#8221;;<br />
				}<br />
				return $res == &#8216;TRUE&#8217; ? TRUE : FALSE;<br />
		}<br />
			/* OLD FUNCTION, without HotFix from Daniel Jagszent :<br />
				function check_captcha($public,$private)<br />
				{<br />
					// when check, destroy picture on disk<br />
					if(file_exists($this-&gt;get_filename($public)))<br />
					{<br />
						$res = @unlink($this-&gt;get_filename($public)) ? &#8216;TRUE&#8217; : &#8216;FALSE&#8217;;<br />
						if($this-&gt;debug) echo &#8220;\n-Captcha-Debug: Delete image (&#8221;.$this-&gt;get_filename($public).&#8221;) returns: ($res)&#8221;;<br />
					}<br />
					$res = (strtolower($private)==strtolower($this-&gt;generate_private($public))) ? &#8216;TRUE&#8217; : &#8216;FALSE&#8217;;<br />
					if($this-&gt;debug) echo &#8220;\n-Captcha-Debug: Comparing public with private key returns: ($res)&#8221;;<br />
					return $res == &#8216;TRUE&#8217; ? TRUE : FALSE;<br />
				}<br />
			*/</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Steve</title>
		<link>http://www.mariovaldez.net/webapps/blog/2006/02/23/playing-with-the-cuecat-barcode-scanner/#comment-1640</link>
		<author>Steve</author>
		<pubDate>Thu, 08 Feb 2007 18:12:28 +0000</pubDate>
		<guid>http://www.mariovaldez.net/webapps/blog/2006/02/23/playing-with-the-cuecat-barcode-scanner/#comment-1640</guid>
					<description>Somebody knows how can I use my CueCat in Windows XP?

I haven't some disk with the drivers.

Regards</description>
		<content:encoded><![CDATA[<p>Somebody knows how can I use my CueCat in Windows XP?</p>
<p>I haven&#8217;t some disk with the drivers.</p>
<p>Regards</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: admin</title>
		<link>http://www.mariovaldez.net/webapps/blog/2006/02/23/playing-with-the-cuecat-barcode-scanner/#comment-11574</link>
		<author>admin</author>
		<pubDate>Wed, 14 Nov 2007 14:00:23 +0000</pubDate>
		<guid>http://www.mariovaldez.net/webapps/blog/2006/02/23/playing-with-the-cuecat-barcode-scanner/#comment-11574</guid>
					<description>The captcha used to authorize the postings have been disabled since last year, because: a) it is cumbersome for the posters, b) is not friendly with people with sight problems, and c) it was not working quite right.

Regards,

Mario A. Valdez-Ramírez.</description>
		<content:encoded><![CDATA[<p>The captcha used to authorize the postings have been disabled since last year, because: a) it is cumbersome for the posters, b) is not friendly with people with sight problems, and c) it was not working quite right.</p>
<p>Regards,</p>
<p>Mario A. Valdez-Ramírez.</p>
]]></content:encoded>
				</item>
</channel>
</rss>
