User J.T. Hurley - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T16:02:13Zhttp://stackoverflow.com/feeds/user/39851http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/349198/which-are-your-favorite-programming-language-gadgets/358696#3586961Answer by J.T. Hurley for Which are your favorite programming language gadgets?J.T. Hurley2008-12-11T08:36:21Z2009-03-19T01:08:40Z<p>Python's compound list comprehensions:</p>
<pre><code>[x * y * z for x in range(3) for y in range(3) for z in range(3) if not (x * y * z) % 2 and x * y * z]
</code></pre>
<p>is syntactic sugar for:</p>
<pre><code>lst = []
for x in range(3):
for y in range(3):
for z in range(3):
if x * y * z > 0:
if x * y * z % 2 == 0:
lst.append(x*y*z)
return lst
</code></pre>
http://stackoverflow.com/questions/228181/zen-of-python/394534#39453410Answer by J.T. Hurley for zen of pythonJ.T. Hurley2008-12-27T01:10:31Z2008-12-27T01:10:31Z<p>"Beautiful is better than ugly."</p>
<p>Behold, Euler's Algorithm to find the greatest common denominator in 4 lines:</p>
<pre><code>def gcd(x, y):
while y:
x, y = y, x % y
return x
</code></pre>
<p>Of course, the mathematical beauty comes from the algorithm, but I love the way Python succeeds at being precise, concise, and explicit at the same time. In fact "elegant" also comes to mind. Of course, any language that can implement qsort in only one more line than C's "Hello World" certainly has a claim on elegance.</p>
http://stackoverflow.com/questions/385325/dropping-trailing-0-from-floats/385363#3853633Answer by J.T. Hurley for dropping trailing '.0' from floatsJ.T. Hurley2008-12-22T01:56:28Z2008-12-22T03:38:09Z<pre><code>def floatstrip(x):
if x == int(x):
return str(int(x))
else:
return str(x)
</code></pre>
<p>Be aware, though, that Python represents 0.1 as an imprecise float, on my system 0.10000000000000001 .</p>
http://stackoverflow.com/questions/4943/is-it-a-good-idea-to-put-easter-eggs-in-applications/385459#3854591Answer by J.T. Hurley for Is it a good idea to put Easter Eggs in applications?J.T. Hurley2008-12-22T03:06:51Z2008-12-22T03:06:51Z<p>I think small ones are usually ok, and by small I mean 5 minutes or less. Python has "From <strong>future</strong> import braces," which is nothing more than a specialized exception, and "import antigravity" which is just a call out to a website.</p>
<p>It's most famous, thought, is "import this" , which publishes the entire text of Tim Peters' "The Zen of Python." With Python's "batteries included" philosophy, having a copy of our erstwhile constitution at hand at all times gives me a warm, fuzzy feeling.</p>
<p>Under no circumstances, however, should you ever have an Easter egg that would be embarrassing if it was triggered during a demo.</p>
http://stackoverflow.com/questions/28999/favorite-ide-feature/385439#3854391Answer by J.T. Hurley for Favorite IDE feature?J.T. Hurley2008-12-22T02:51:28Z2008-12-22T02:51:28Z<p>IDLE is equipped with some excellent whitespace support. Tab remaps to four spaces by default, but can be changed to whatever standard you prefer. Ctrl+[ and ] allow multi-line indenting and dedenting.</p>
<p>Much like LISP editors and parens, I think people would be a lot happier starting with Python if they used an editor with good whitespace support.</p>
http://stackoverflow.com/questions/379128/how-do-you-program-differently-in-dynamic-languages/380188#3801882Answer by J.T. Hurley for How do you program differently in dynamic languages?J.T. Hurley2008-12-19T05:43:16Z2008-12-19T05:43:16Z<p>Fast iterations make happier programmers, and they don't come any faster than an interactive interpreter. Good interpreter exploitation gives you sandbox, testing, and prototyping at the same time.</p>
<p>Beware programming by permutation, however. My personal rule of thumb is that it's just because it works doesn't mean it's ready, when you can explain why it works it's ready.</p>
http://stackoverflow.com/questions/374239/why-doesnt-python-have-a-switch-statement/377170#3771701Answer by J.T. Hurley for Why doesn't Python have a switch statement?J.T. Hurley2008-12-18T08:09:15Z2008-12-18T08:09:15Z<p>Fast note: If you want "fall-through" behavior, don't use an elif statement, because if it executes it exes the if-elif-else block. A series of pure "if" statements, however, will fall through.</p>
<p>You can nest "if" w/ fallthrough with "if-elif-else" statements, but it results in a very fertile ground for hard to catch bugs. Also, a trailing else executes if the test before it fails, even if one of the earlier "if" statements executed.</p>
http://stackoverflow.com/questions/362226/whats-your-next-programming-language-and-why/366153#3661531Answer by J.T. Hurley for What's your next programming language? And why?J.T. Hurley2008-12-14T03:51:53Z2008-12-14T03:51:53Z<p>Well, I suppose the truest answer would be Python 3.0 . Of course, sense I'm coming from Python 2.5 , it probably doesn't count too much.</p>
<p>My next non-Python language, though, is going to be ANSI C. Python integration + speed + computer science education + history should make for a happy journey. :)</p>
http://stackoverflow.com/questions/365158/how-can-we-protect-the-vulnerable-online/366143#3661430Answer by J.T. Hurley for How can we protect the vulnerable online?J.T. Hurley2008-12-14T03:40:56Z2008-12-14T03:40:56Z<p>Live moderators are probably your best bet. Disney's Toontown actually ran into quite a few privacy/security problems when they missed that kids are often rather clever.</p>
<p>Although I don't know if it's still in there, there used to be a function where you had an "apartment" you could fill with "furniture," SIMS-style, and then display to other players.</p>
<p>So, players intent on subverting the controlled communication would spell out letters in furniture one at a time until a screen name for an uncontrolled chat was communicated. Allegedly, even after that was discovered there was still a system of displaying pictures that worked just as well.</p>
<p>To summarize, you can't cover all the bases. The best you can do is cover the careless and inept, and try to stay heads-up on strange behavior that could indicate somethings up. So if you have to do a "kids forum," I would definitely go with moderators.</p>
http://stackoverflow.com/questions/356828/generating-a-unique-reference-number-strategies/358748#3587480Answer by J.T. Hurley for Generating a unique reference number strategiesJ.T. Hurley2008-12-11T09:14:48Z2008-12-11T09:14:48Z<p>One way may be to generate the numbers based on a smaller subset of numbers. For example, you could use a binary sequence to generate based on a godel numbering. For example, mapping 000 to 111 on 5z, 3y, 2x yields 0, 2, 3, 6, 5, 10, 15, 30.</p>
<p>Of course, this is overly simplistic. But by iterating of the "salt" numbers to generate the reference numbers, you wouldn't have to track the reference numbers at all. Provided, or course, you were reasonably sure you didn't have to factor in collisions. </p>
http://stackoverflow.com/questions/356217/should-i-use-isgood-or-isgood-false/358717#3587170Answer by J.T. Hurley for Should I use `!IsGood` or `IsGood == false`?J.T. Hurley2008-12-11T08:56:40Z2008-12-11T08:56:40Z<p>One size doesn't fit all. Sometimes a more terse form can be made plain or is idiomatic, like !(x % y) , which returns "True" if y is a factor of x.</p>
<p>Other times, a more explicit comparison would be more useful. [(x, y) for x in range(10) for y in range(10) if not (x and y)] is not as plain as [(x, y) for x in range(10) for y in range(10) if (x == 0 or y == 0)]</p>
http://stackoverflow.com/questions/126158/what-is-your-favorite-anti-pattern/358684#3586841Answer by J.T. Hurley for What is your "favorite" anti pattern?J.T. Hurley2008-12-11T08:22:53Z2008-12-11T08:22:53Z<p>A sub-type of the Gas-Factory I like to call the "Class-Factory."</p>
<p>A module that implements prime-number factorization should not take six classes to do so, and it's bad if it has them anyway because it's "good OOP."</p>
http://stackoverflow.com/questions/350861/what-bad-practice-do-you-do-and-why/358671#3586710Answer by J.T. Hurley for What "bad practice" do you do, and why?J.T. Hurley2008-12-11T08:11:31Z2008-12-11T08:11:31Z<p>In Python, I stack multiple If statements with no elif/else/finally blocks to simulate a case-statement fall-through.</p>
<p>If it helps in my defense, I always comment the start with the purpose and put a footer comment to show where it ends.</p>
<p>If it helps. :S</p>
http://stackoverflow.com/questions/347821/do-programmers-read-books-or-is-the-book-industry-dead/348429#3484292Answer by J.T. Hurley for Do programmers read books? Or is the book industry dead?J.T. Hurley2008-12-08T00:44:40Z2008-12-08T00:44:40Z<p>Good programmers read good books. O'Reilly's "In a Nutshell" series sells very well, as do their "Learning XXXXX" series and the "Head First" books. Geared more towards beginners, Sams' "Teach Yourself XXXXX" sells briskly, as does the much maligned but very handy "XXXXX for Dummies." And of course, library references do <em>very</em> well.</p>
<p>What hasn't done well are the independents or one-offs that don't stand out from the crowd. Taking on O'Reilly head-to-head isn't paying off. What is selling well is catching the gaps created, like Mark Summerfield's "Programming in Python 3" or Hans Petter Langtangen's "Python Scripting for Computational Science."</p>
<p>In short, what isn't selling well anymore is "buy and learn" books. The ones that do sell tend towards "buy, learn, and keep for reference" or just straight reference books. And a massive promotion promotion budget tied into a pre-built distribution chain centered on a brand-name with several product lines doesn't hurt at all. :)</p>
http://stackoverflow.com/questions/343390/what-was-your-biggest-cs-eye-opener/346447#3464470Answer by J.T. Hurley for What was your biggest CS eye-opener?J.T. Hurley2008-12-06T16:26:27Z2008-12-06T16:26:27Z<p>Python's use of lists. After reviewing the list of methods, I was extremely confused as to why something called a "list" would need these. Working through them, however, taught me quite a bit about data structures, including stacks, queues, linked lists, and eventually tuples, dictionaries, and sets as I worked through "why does this need something different than a list?"</p>
<p>For a while, though, my Python code did more list manipulation than my Scheme code.</p>
http://stackoverflow.com/questions/343204/problem-regarding-3-0s-hashlib-module0Problem regarding 3.0's "hashlib" moduleJ.T. Hurley2008-12-05T08:35:13Z2008-12-05T09:16:24Z
<p>I've been working on getting a 2.5 module ported to 3.0, mostly for my own education, when I've gotten stuck. The class "Builder" has as its init:</p>
<pre><code>def __init__(self, **options):
self._verifyOptions(options)
self._options = options
self._initDigest()
self._initBuildNames()
self._methods = []
</code></pre>
<p></p>
<p>But the error occurs at:</p>
<pre><code>def _initDigest(self):
import os, sys, hashlib
digester = hashlib.md5()
digester.update(self._options.get('code'))
self._digest = digester.hexdigest()
</code></pre>
<p>which has as its traceback:</p>
<pre><code>Traceback (most recent call last):
File "<pyshell#5>", line 5, in <module>
""", language="Cee")
File "C:\Python30\lib\site-packages\PyInline\__init__.py", line 31, in build
b = m.Builder(**args)
File "C:\Python30\lib\site-packages\PyInline\Cee.py", line 17, in __init__
self._initDigest()
File "C:\Python30\lib\site-packages\PyInline\Cee.py", line 27, in _initDigest
digester.update(self._options.get('code'))
TypeError: object supporting the buffer API required
</code></pre>
<p>I've run it through 2to3, but it isn't picking up on it. As far as I can tell, the update function is expecting the argument to be in the form of bytes/buffer, but I've tried several different methods to convert it and haven't succeeded.</p>
<p>As always, any assistance would be greatly appreciated. :)</p>
http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/342686#3426866Answer by J.T. Hurley for What "already invented" algorithm did you invent?J.T. Hurley2008-12-05T01:49:20Z2008-12-05T01:49:20Z<p>I can honestly claim I never "invented" bubble sort.</p>
<p>Nope, I went and "invented" bucket sort instead.</p>
<p>I'm so ashamed. :)</p>
http://stackoverflow.com/questions/342169/what-kind-of-programming-method-do-you-prefer-success-vs-freedom/342660#3426601Answer by J.T. Hurley for What kind of programming method do you prefer? Success vs. FreedomJ.T. Hurley2008-12-05T01:34:47Z2008-12-05T01:34:47Z<p>"Freedom" in this case just seems like an emotionally positive word tied to an unpleasant concept. It could just as easily be replaced by "stubbornness" or "carelessness." Even the question itself is framed as "what I want to do" versus "what's likely to work."</p>
<p>Of course, anyone is free to pursue any path they choose. But I personally wouldn't devote a moment of my life to something that I didn't care about, and if I did care about it I would do everything I could to maximize it's chances of succeeding. I don't see that as "restrictive" at all.</p>
http://stackoverflow.com/questions/168191/what-dont-you-like-in-agile-development/342643#3426431Answer by J.T. Hurley for What don't you like in Agile development?J.T. Hurley2008-12-05T01:26:15Z2008-12-05T01:26:15Z<p>I dislike the perception, and occasionally the practice, that documentation, specs, and architecture are "bad things."</p>
<p>I like a lot of the practices of Agile and XP both, but every once in a while it's a good idea to get an overview of the entire project and get some of it written down from that standpoint, or do some planning for the future, or leave notes for the people who will come after original developers, and sometimes this gets discarded or denigrated, which has a habit of turning "agile" into "fragile" and worsening management's view of those practices.</p>
http://stackoverflow.com/questions/261654/building-an-addictive-site/342629#3426290Answer by J.T. Hurley for Building an Addictive SiteJ.T. Hurley2008-12-05T01:18:58Z2008-12-05T01:18:58Z<p>Get people a chance to work at 100% of the competence. People enjoy achieving.</p>
<p>Some solid theory and how to can be found within: <a href="http://rads.stackoverflow.com/amzn/click/0060920432" rel="nofollow">http://www.amazon.com/Flow-Psychology-Experience-Mihaly-Csikszentmihalyi/dp/0060920432/ref=pd_bbs_sr_1?ie=UTF8&s=books&qid=1228439876&sr=8-1</a></p>
http://stackoverflow.com/questions/340530/will-python-3-0s-backwards-incompatibility-affect-adoption/340779#3407791Answer by J.T. Hurley for Will Python 3.0's backwards-incompatibility affect adoption?J.T. Hurley2008-12-04T14:35:21Z2008-12-04T14:35:21Z<p>I don't think anyone expects Python 3 to be instantly adopted. As far as I know, GvR is still planning on supporting the 2.x line for several more years while Python 3 gathers momentum.</p>
<p>I think the signal that the transfer is complete will be when the O'Reilly books update to 3.x. Until then, it's transitional. :)</p>
http://stackoverflow.com/questions/329582/is-1-for-true-or-false/339419#3394190Answer by J.T. Hurley for Is 1 for TRUE or FALSE ?J.T. Hurley2008-12-04T02:14:28Z2008-12-04T02:14:28Z<p>Relative to Python:</p>
<p>I enjoy mathematics, so I'm fairly booked up on the mathematical idea that "zero is not a number."</p>
<p>Ergo, I thought of it as "numbers" are true and "not a number" is false. Which simplifies into "is something there?" and then just becomes another programming convention.</p>
<p>To keep white and black separate in RGB values, I just pretend that the numbers are how much electricity I want to devote to that color, so #000000 translates to "leave it off" (black).</p>
http://stackoverflow.com/questions/337796/what-video-game-have-you-played-that-made-you-think-the-most-like-a-programmer/339392#3393920Answer by J.T. Hurley for What video game have you played that made you think the most like a programmer.J.T. Hurley2008-12-04T01:56:07Z2008-12-04T01:56:07Z<p>Monopoly. At heart, it's a game about tracking information, breaking it apart and combining it, and tracking the way it is being shifted around, making it a very fertile field for considering data representations and decision heuristics.</p>
http://stackoverflow.com/questions/242903/how-do-you-report-your-project-status/336119#3361193Answer by J.T. Hurley for How do you report your project status?J.T. Hurley2008-12-03T02:58:15Z2008-12-03T02:58:15Z<p>I have a whiteboard outside my cubicle. On it is a smiley face. When there is a status change in the project, it switches between frown, worried squiggle, grim determination, smile, and grin. Next to it is an arrow representing the last change.</p>
<p>Although it started as a joke, it's actuall been a great way to keep non-technical colleagues posted on where the project is at.</p>
http://stackoverflow.com/questions/333865/how-can-we-identify-good-code/336111#3361110Answer by J.T. Hurley for How can we identify "good code"?J.T. Hurley2008-12-03T02:50:41Z2008-12-03T02:50:41Z<p>My favorite sign is a complete and total lack of magic numbers. Preferably initialized in a block with meaningful names, but I'll settle for inline comments if absolutely necessary.</p>
http://stackoverflow.com/questions/140376/what-easter-eggs-have-you-placed-in-code/336106#3361069Answer by J.T. Hurley for What Easter Eggs have you placed in code?J.T. Hurley2008-12-03T02:46:44Z2008-12-03T02:46:44Z<p>This isn't truly an easter egg since it's in my personal toolbox file, but after more than one typo while trying to exit Python's IDLE, I inserted the following function:</p>
<pre><code>def exist():
print "Yes, I do."
exit()
</code></pre>
http://stackoverflow.com/questions/330505/how-to-recognize-fax-numbers/330551#3305510Answer by J.T. Hurley for How to recognize fax numbers ?J.T. Hurley2008-12-01T11:13:48Z2008-12-01T11:13:48Z<p>Many old fax lines are set to automatically pick up even on a voice call, so you could just call and check. On the other hand, it won't work on a lot of new ones, so while you could tell that one is a fax line, you couldn't tell it wasn't.</p>
http://stackoverflow.com/questions/37133/programming-for-a-9-year-old/329756#3297561Answer by J.T. Hurley for "Programming" for a 9 year oldJ.T. Hurley2008-12-01T01:23:11Z2008-12-01T01:23:11Z<p>A fairly fun "virtual robot" language is Guido van Robot, available at <a href="http://gvr.sourceforge.net/" rel="nofollow">http://gvr.sourceforge.net/</a> . It's syntax is Python-inspired, but it draws a lot from the "Karel the Robot" teaching methodology.</p>
<p>And, if you actually want to start with the turtle subset of LOGO, it's implemented inside standard Python (<a href="http://docs.python.org/library/turtle.html" rel="nofollow">http://docs.python.org/library/turtle.html</a>). An example is at <a href="http://www.daniweb.com/code/snippet304.html" rel="nofollow">http://www.daniweb.com/code/snippet304.html</a> . I'd actually start at GvR, though.</p>
http://stackoverflow.com/questions/329672/which-programming-language-requires-the-most-different-mindset-from-c/329721#3297212Answer by J.T. Hurley for Which programming language requires the most different mindset from C++?J.T. Hurley2008-12-01T01:02:59Z2008-12-01T01:02:59Z<p>If you're looking for something practical, you may want to go with a functional language (Scheme) or a more dynamic environment (Python.)</p>
<p>On the other hand, if you're out for pure enrichment, <a href="http://en.wikipedia.org/wiki/Category:Esoteric_programming_languages" rel="nofollow">http://en.wikipedia.org/wiki/Category:Esoteric_programming_languages</a> has a great list of some mind-benders. Brain will make you long for the syntactic sugar of Assembly and Befunge is not only a unique language, it's a new paradigm.</p>
<p>Unlambda is a good choice for SKI calculus, as are Iota and Jot, which only have two symbols a piece. If you allow for ambiguous encodings, Iota can even be written with only one symbol!</p>
<p>In short, what to pick is determinate on whether you're more interested in stretching or in building practical skills. Either way, have fun.</p>
http://stackoverflow.com/questions/211426/what-punishment-do-you-have-when-someone-on-the-team-breaks-the-build/328584#3285846Answer by J.T. Hurley for What punishment do you have when someone on the team breaks the build?J.T. Hurley2008-11-30T07:23:34Z2008-11-30T07:23:34Z<p>It's my understanding that even "fun" broke-the-build markers are considered to be less than optimal because they discourage frequent check-ins, which prevents problems from being caught earlier while they're smaller, not to mention increasing the difficulties of merging.</p>
<p>On the other hand, I did like the dollar into the beer fund suggestion.</p>
http://stackoverflow.com/questions/28999/favorite-ide-feature/385439#385439Comment by J.T. Hurley on Favorite IDE feature?J.T. Hurley2009-09-07T01:39:58Z2009-09-07T01:39:58Z@the_drow:
No, the keys are are actually Ctrl + the "[" key to dedent selection and Ctrl + the "]" key to indent selection. Sloppy on my part.http://stackoverflow.com/questions/189645/how-to-break-out-of-multiple-loops-in-python/189666#189666Comment by J.T. Hurley on How to break out of multiple loops in Python?J.T. Hurley2009-01-09T20:28:04Z2009-01-09T20:28:04ZI think it's a clean and readable enough solution to qualify as good code, so I vote it up. :)http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/406857#406857Comment by J.T. Hurley on What's your most controversial programming opinion?J.T. Hurley2009-01-04T03:30:43Z2009-01-04T03:30:43ZImportance <i>can</i> matter.http://stackoverflow.com/questions/180937/are-exceptions-really-for-exceptional-errors/180982#180982Comment by J.T. Hurley on Are exceptions really for exceptional errors?J.T. Hurley2009-01-04T03:29:00Z2009-01-04T03:29:00Z+1 Came here to say "Depends on the language. In Python...."http://stackoverflow.com/questions/405628/what-is-the-best-method-to-remove-duplicate-image-files-from-your-computer/405661#405661Comment by J.T. Hurley on What is the best method to remove duplicate image files from your computerJ.T. Hurley2009-01-02T06:36:03Z2009-01-02T06:36:03ZFile size is still faster than md5 hash, though.http://stackoverflow.com/questions/404346/python-program-to-calculate-harmonic-series/404371#404371Comment by J.T. Hurley on python program to calculate harmonic series.J.T. Hurley2009-01-01T14:34:32Z2009-01-01T14:34:32ZIt does sort of fail at being a "python program to calculate harmonic series"http://stackoverflow.com/questions/11464/what-is-the-worst-interview-question/112312#112312Comment by J.T. Hurley on What is the worst interview question?J.T. Hurley2008-12-22T02:29:12Z2008-12-22T02:29:12ZI like it too. You could, of course, just use it to catch people claiming they never tie a knot (shoes.) For me, Lark's Head. One simple "knot," a multitude of uses.http://stackoverflow.com/questions/378678/pivotal-suboptimal-decisions-in-the-history-of-software/378777#378777Comment by J.T. Hurley on Pivotal Suboptimal Decisions in the History of SoftwareJ.T. Hurley2008-12-19T05:26:30Z2008-12-19T05:26:30Z@rally25rs: Misstatement. The idea behind QWERTY is not that it slows down productivity, but that it minimizes the odds of consecutive typewriter hammers from being pressed in close sequence. The end result is that the hands and fingers stay in constant motion. Whether this is good or bad....http://stackoverflow.com/questions/371966/are-there-any-good-reasons-why-i-should-not-use-python/372008#372008Comment by J.T. Hurley on Are there any good reasons why I should not use Python?J.T. Hurley2008-12-17T03:56:05Z2008-12-17T03:56:05ZIt does have that Hobbits/The Dutch sensibility going for it, doesn't it. :)
(I keep the library reference on a thumbdrive so I can wear it on a chain around my neck.)http://stackoverflow.com/questions/371966/are-there-any-good-reasons-why-i-should-not-use-python/373420#373420Comment by J.T. Hurley on Are there any good reasons why I should not use Python?J.T. Hurley2008-12-17T03:50:17Z2008-12-17T03:50:17ZA good editor can help immensely. IDLE, among others, offers a set of keyboard shortcuts that indent and dedent code in blocks, which can help with "wrapping your head around" the system.http://stackoverflow.com/questions/371966/are-there-any-good-reasons-why-i-should-not-use-python/372590#372590Comment by J.T. Hurley on Are there any good reasons why I should not use Python?J.T. Hurley2008-12-17T03:46:57Z2008-12-17T03:46:57Z@Ellery + Dave: In all fairness, "not wanting to use Python," "wanting to use Ruby," and "preferring Ruby over Python" are three different states that don't necessarily overlap.http://stackoverflow.com/questions/356217/should-i-use-isgood-or-isgood-false/356530#356530Comment by J.T. Hurley on Should I use `!IsGood` or `IsGood == false`?J.T. Hurley2008-12-11T08:47:37Z2008-12-11T08:47:37ZIf you're using Python 3.0, True / 2 evaluates as True. If Python 2.X, True / 2 evaluates as False.
What makes the difference is left as an exercise for the reader. :)http://stackoverflow.com/questions/343204/problem-regarding-3-0s-hashlib-module/343284#343284Comment by J.T. Hurley on Problem regarding 3.0's "hashlib" moduleJ.T. Hurley2008-12-05T09:18:24Z2008-12-05T09:18:24ZYou have successfully corrected this error, and educated me further upon this task. I congratulate and thank you!