<?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:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Python &#8211; Cell Phone Number Pad Input</title>
	<atom:link href="http://danfolkes.com/index.php/2008/08/11/python-cell-phone-number-pad-input/feed/" rel="self" type="application/rss+xml" />
	<link>http://danfolkes.com/2008/08/11/python-cell-phone-number-pad-input/</link>
	<description>programmers blog</description>
	<lastBuildDate>Sat, 21 Jan 2012 03:52:48 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: danfolkes &#187; Python - Cell Phone Number Pad Input V2</title>
		<link>http://danfolkes.com/2008/08/11/python-cell-phone-number-pad-input/#comment-75</link>
		<dc:creator>danfolkes &#187; Python - Cell Phone Number Pad Input V2</dc:creator>
		<pubDate>Fri, 06 Mar 2009 15:14:58 +0000</pubDate>
		<guid isPermaLink="false">http://danfolkes.com/index.php/2008/08/11/python-cell-phone-number-pad-input/#comment-75</guid>
		<description>[...] is a rewrite of my original post. This rewrite was made by Rami Davis [ramidavis at y a h o o .c o m] XDA Dev Forums. 1 2 3 4 5 6 7 [...]</description>
		<content:encoded><![CDATA[<p>[...] is a rewrite of my original post. This rewrite was made by Rami Davis [ramidavis at y a h o o .c o m] XDA Dev Forums. 1 2 3 4 5 6 7 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rami Davis</title>
		<link>http://danfolkes.com/2008/08/11/python-cell-phone-number-pad-input/#comment-74</link>
		<dc:creator>Rami Davis</dc:creator>
		<pubDate>Fri, 06 Mar 2009 04:16:53 +0000</pubDate>
		<guid isPermaLink="false">http://danfolkes.com/index.php/2008/08/11/python-cell-phone-number-pad-input/#comment-74</guid>
		<description>I just shot you a new version via email.</description>
		<content:encoded><![CDATA[<p>I just shot you a new version via email.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://danfolkes.com/2008/08/11/python-cell-phone-number-pad-input/#comment-73</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Thu, 05 Mar 2009 18:29:52 +0000</pubDate>
		<guid isPermaLink="false">http://danfolkes.com/index.php/2008/08/11/python-cell-phone-number-pad-input/#comment-73</guid>
		<description>see comment section.</description>
		<content:encoded><![CDATA[<p>see comment section.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel</title>
		<link>http://danfolkes.com/2008/08/11/python-cell-phone-number-pad-input/#comment-72</link>
		<dc:creator>Daniel</dc:creator>
		<pubDate>Thu, 05 Mar 2009 18:29:06 +0000</pubDate>
		<guid isPermaLink="false">http://danfolkes.com/index.php/2008/08/11/python-cell-phone-number-pad-input/#comment-72</guid>
		<description>Hey Rami,

I see your post on Ubuntu Forums.  I hope you&#039;re able to get this little piece of code working better.    I had the same sort of idea for using a numberpad like a keyboard input.  I was thinking that you could mount it on the outside of a messenger bag or something.

If you make any headway or cleanup my code, please message me back on this site and I can update the post with credits to you.

Let me know if you have any questions, thanks.

Daniel</description>
		<content:encoded><![CDATA[<p>Hey Rami,</p>
<p>I see your post on Ubuntu Forums.  I hope you&#8217;re able to get this little piece of code working better.    I had the same sort of idea for using a numberpad like a keyboard input.  I was thinking that you could mount it on the outside of a messenger bag or something.</p>
<p>If you make any headway or cleanup my code, please message me back on this site and I can update the post with credits to you.</p>
<p>Let me know if you have any questions, thanks.</p>
<p>Daniel</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rami Davis</title>
		<link>http://danfolkes.com/2008/08/11/python-cell-phone-number-pad-input/#comment-71</link>
		<dc:creator>Rami Davis</dc:creator>
		<pubDate>Thu, 05 Mar 2009 02:27:19 +0000</pubDate>
		<guid isPermaLink="false">http://danfolkes.com/index.php/2008/08/11/python-cell-phone-number-pad-input/#comment-71</guid>
		<description>A few friendly pointers:
    * Variable names are not clear. Nothing in the code is clear.
    * The library &quot;string&quot; is deprecated, instead, strings now have their methods included.
    * Since the sizes of the inside elements of the nar array are static, it should be more clever to use tuples ().
    * The program doesn&#039;t catch errors when converting input to integers (# and *).
Also,  by adding  &#039; #!/usr/bin/env python &#039;  as the first line, this can be run as a bash script, without needing to do &#039;python filename&#039; and just do &#039;./ filename&#039; instead.</description>
		<content:encoded><![CDATA[<p>A few friendly pointers:<br />
    * Variable names are not clear. Nothing in the code is clear.<br />
    * The library &#8220;string&#8221; is deprecated, instead, strings now have their methods included.<br />
    * Since the sizes of the inside elements of the nar array are static, it should be more clever to use tuples ().<br />
    * The program doesn&#8217;t catch errors when converting input to integers (# and *).<br />
Also,  by adding  &#8216; #!/usr/bin/env python &#8216;  as the first line, this can be run as a bash script, without needing to do &#8216;python filename&#8217; and just do &#8216;./ filename&#8217; instead.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dallas</title>
		<link>http://danfolkes.com/2008/08/11/python-cell-phone-number-pad-input/#comment-70</link>
		<dc:creator>Dallas</dc:creator>
		<pubDate>Sun, 17 Aug 2008 03:13:38 +0000</pubDate>
		<guid isPermaLink="false">http://danfolkes.com/index.php/2008/08/11/python-cell-phone-number-pad-input/#comment-70</guid>
		<description>Hey you mentioned that it would convert from cell pad or number pad.  Keep in mind that those two aren&#039;t the same (they&#039;re inverted forms of one another).

Also, happy birthday!</description>
		<content:encoded><![CDATA[<p>Hey you mentioned that it would convert from cell pad or number pad.  Keep in mind that those two aren&#8217;t the same (they&#8217;re inverted forms of one another).</p>
<p>Also, happy birthday!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

