User J.T. Hurley - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T16:02:13Z http://stackoverflow.com/feeds/user/39851 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/349198/which-are-your-favorite-programming-language-gadgets/358696#358696 1 Answer by J.T. Hurley for Which are your favorite programming language gadgets? J.T. Hurley 2008-12-11T08:36:21Z 2009-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 &gt; 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#394534 10 Answer by J.T. Hurley for zen of python J.T. Hurley 2008-12-27T01:10:31Z 2008-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#385363 3 Answer by J.T. Hurley for dropping trailing '.0' from floats J.T. Hurley 2008-12-22T01:56:28Z 2008-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#385459 1 Answer by J.T. Hurley for Is it a good idea to put Easter Eggs in applications? J.T. Hurley 2008-12-22T03:06:51Z 2008-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#385439 1 Answer by J.T. Hurley for Favorite IDE feature? J.T. Hurley 2008-12-22T02:51:28Z 2008-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#380188 2 Answer by J.T. Hurley for How do you program differently in dynamic languages? J.T. Hurley 2008-12-19T05:43:16Z 2008-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#377170 1 Answer by J.T. Hurley for Why doesn't Python have a switch statement? J.T. Hurley 2008-12-18T08:09:15Z 2008-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#366153 1 Answer by J.T. Hurley for What's your next programming language? And why? J.T. Hurley 2008-12-14T03:51:53Z 2008-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#366143 0 Answer by J.T. Hurley for How can we protect the vulnerable online? J.T. Hurley 2008-12-14T03:40:56Z 2008-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#358748 0 Answer by J.T. Hurley for Generating a unique reference number strategies J.T. Hurley 2008-12-11T09:14:48Z 2008-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#358717 0 Answer by J.T. Hurley for Should I use `!IsGood` or `IsGood == false`? J.T. Hurley 2008-12-11T08:56:40Z 2008-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#358684 1 Answer by J.T. Hurley for What is your "favorite" anti pattern? J.T. Hurley 2008-12-11T08:22:53Z 2008-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#358671 0 Answer by J.T. Hurley for What "bad practice" do you do, and why? J.T. Hurley 2008-12-11T08:11:31Z 2008-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#348429 2 Answer by J.T. Hurley for Do programmers read books? Or is the book industry dead? J.T. Hurley 2008-12-08T00:44:40Z 2008-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#346447 0 Answer by J.T. Hurley for What was your biggest CS eye-opener? J.T. Hurley 2008-12-06T16:26:27Z 2008-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-module 0 Problem regarding 3.0's "hashlib" module J.T. Hurley 2008-12-05T08:35:13Z 2008-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 "&lt;pyshell#5&gt;", line 5, in &lt;module&gt; """, 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#342686 6 Answer by J.T. Hurley for What "already invented" algorithm did you invent? J.T. Hurley 2008-12-05T01:49:20Z 2008-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#342660 1 Answer by J.T. Hurley for What kind of programming method do you prefer? Success vs. Freedom J.T. Hurley 2008-12-05T01:34:47Z 2008-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#342643 1 Answer by J.T. Hurley for What don't you like in Agile development? J.T. Hurley 2008-12-05T01:26:15Z 2008-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#342629 0 Answer by J.T. Hurley for Building an Addictive Site J.T. Hurley 2008-12-05T01:18:58Z 2008-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&amp;s=books&amp;qid=1228439876&amp;sr=8-1</a></p> http://stackoverflow.com/questions/340530/will-python-3-0s-backwards-incompatibility-affect-adoption/340779#340779 1 Answer by J.T. Hurley for Will Python 3.0's backwards-incompatibility affect adoption? J.T. Hurley 2008-12-04T14:35:21Z 2008-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#339419 0 Answer by J.T. Hurley for Is 1 for TRUE or FALSE ? J.T. Hurley 2008-12-04T02:14:28Z 2008-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#339392 0 Answer by J.T. Hurley for What video game have you played that made you think the most like a programmer. J.T. Hurley 2008-12-04T01:56:07Z 2008-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#336119 3 Answer by J.T. Hurley for How do you report your project status? J.T. Hurley 2008-12-03T02:58:15Z 2008-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#336111 0 Answer by J.T. Hurley for How can we identify "good code"? J.T. Hurley 2008-12-03T02:50:41Z 2008-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#336106 9 Answer by J.T. Hurley for What Easter Eggs have you placed in code? J.T. Hurley 2008-12-03T02:46:44Z 2008-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#330551 0 Answer by J.T. Hurley for How to recognize fax numbers ? J.T. Hurley 2008-12-01T11:13:48Z 2008-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#329756 1 Answer by J.T. Hurley for "Programming" for a 9 year old J.T. Hurley 2008-12-01T01:23:11Z 2008-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#329721 2 Answer by J.T. Hurley for Which programming language requires the most different mindset from C++? J.T. Hurley 2008-12-01T01:02:59Z 2008-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#328584 6 Answer by J.T. Hurley for What punishment do you have when someone on the team breaks the build? J.T. Hurley 2008-11-30T07:23:34Z 2008-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#385439 Comment by J.T. Hurley on Favorite IDE feature? J.T. Hurley 2009-09-07T01:39:58Z 2009-09-07T01:39:58Z @the_drow: No, the keys are are actually Ctrl + the &quot;[&quot; key to dedent selection and Ctrl + the &quot;]&quot; key to indent selection. Sloppy on my part. http://stackoverflow.com/questions/189645/how-to-break-out-of-multiple-loops-in-python/189666#189666 Comment by J.T. Hurley on How to break out of multiple loops in Python? J.T. Hurley 2009-01-09T20:28:04Z 2009-01-09T20:28:04Z I 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#406857 Comment by J.T. Hurley on What's your most controversial programming opinion? J.T. Hurley 2009-01-04T03:30:43Z 2009-01-04T03:30:43Z Importance <i>can</i> matter. http://stackoverflow.com/questions/180937/are-exceptions-really-for-exceptional-errors/180982#180982 Comment by J.T. Hurley on Are exceptions really for exceptional errors? J.T. Hurley 2009-01-04T03:29:00Z 2009-01-04T03:29:00Z +1 Came here to say &quot;Depends on the language. In Python....&quot; http://stackoverflow.com/questions/405628/what-is-the-best-method-to-remove-duplicate-image-files-from-your-computer/405661#405661 Comment by J.T. Hurley on What is the best method to remove duplicate image files from your computer J.T. Hurley 2009-01-02T06:36:03Z 2009-01-02T06:36:03Z File size is still faster than md5 hash, though. http://stackoverflow.com/questions/404346/python-program-to-calculate-harmonic-series/404371#404371 Comment by J.T. Hurley on python program to calculate harmonic series. J.T. Hurley 2009-01-01T14:34:32Z 2009-01-01T14:34:32Z It does sort of fail at being a &quot;python program to calculate harmonic series&quot; http://stackoverflow.com/questions/11464/what-is-the-worst-interview-question/112312#112312 Comment by J.T. Hurley on What is the worst interview question? J.T. Hurley 2008-12-22T02:29:12Z 2008-12-22T02:29:12Z I 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 &quot;knot,&quot; a multitude of uses. http://stackoverflow.com/questions/378678/pivotal-suboptimal-decisions-in-the-history-of-software/378777#378777 Comment by J.T. Hurley on Pivotal Suboptimal Decisions in the History of Software J.T. Hurley 2008-12-19T05:26:30Z 2008-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#372008 Comment by J.T. Hurley on Are there any good reasons why I should not use Python? J.T. Hurley 2008-12-17T03:56:05Z 2008-12-17T03:56:05Z It 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#373420 Comment by J.T. Hurley on Are there any good reasons why I should not use Python? J.T. Hurley 2008-12-17T03:50:17Z 2008-12-17T03:50:17Z A 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 &quot;wrapping your head around&quot; the system. http://stackoverflow.com/questions/371966/are-there-any-good-reasons-why-i-should-not-use-python/372590#372590 Comment by J.T. Hurley on Are there any good reasons why I should not use Python? J.T. Hurley 2008-12-17T03:46:57Z 2008-12-17T03:46:57Z @Ellery + Dave: In all fairness, &quot;not wanting to use Python,&quot; &quot;wanting to use Ruby,&quot; and &quot;preferring Ruby over Python&quot; are three different states that don't necessarily overlap. http://stackoverflow.com/questions/356217/should-i-use-isgood-or-isgood-false/356530#356530 Comment by J.T. Hurley on Should I use `!IsGood` or `IsGood == false`? J.T. Hurley 2008-12-11T08:47:37Z 2008-12-11T08:47:37Z If 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#343284 Comment by J.T. Hurley on Problem regarding 3.0's "hashlib" module J.T. Hurley 2008-12-05T09:18:24Z 2008-12-05T09:18:24Z You have successfully corrected this error, and educated me further upon this task. I congratulate and thank you!