User Kevin Little - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T02:37:08Z http://stackoverflow.com/feeds/user/14028 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1903980/why-list-comprehension-is-called-so-in-python/1904054#1904054 3 Answer by Kevin Little for why list comprehension is called so in python? Kevin Little 2009-12-14T22:46:34Z 2009-12-16T16:27:44Z <p>The name comes from the concept of a <a href="http://en.wikipedia.org/wiki/Set-builder%5Fnotation" rel="nofollow">set-comprehension</a></p> <p><em>Comprehension</em> is used here to mean <strong>complete inclusion</strong> or <strong>complete description</strong>. A set-comprehension is a (usually short) complete description of a set, not an exhaustive (and possibly infinite) enumeration.</p> http://stackoverflow.com/questions/1835193/is-it-a-better-practice-to-typecast-the-pointer-returned-by-malloc/1835288#1835288 0 Answer by Kevin Little for Is it a better practice to typecast the pointer returned by malloc? Kevin Little 2009-12-02T19:37:16Z 2009-12-02T19:37:16Z <blockquote> <p>Is it better in any way to typecast the pointer of type void, returned by the malloc function?</p> </blockquote> <p>Yes. It is clearer in meaning. It's the same reason I'd write</p> <pre><code>a = b + (c * d); </code></pre> <p>Now, I know the "()"s are not needed here, due to the rules of precedence of arithmetic operators, but they help me (and others) clearly see my intent.</p> <p>$.02, etc. :)</p> <p>-k</p> http://stackoverflow.com/questions/1546226/the-shortest-way-to-remove-multiple-spaces-in-a-string-in-python/1546883#1546883 4 Answer by Kevin Little for The SHORTEST way to remove multiple spaces in a string in Python Kevin Little 2009-10-10T02:39:51Z 2009-10-10T02:39:51Z <p>Have to agree with Paul McGuire's comment above. To me, </p> <pre><code> ' '.join(the_string.split()) </code></pre> <p>is vastly preferable to whipping out a regex. My measurements (Linux, Python 2.5) show the split-then-join to be almost 5 times faster than doing the "re.sub(...)", and still 3 times faster if you precompile the regex once and do the operation multiple times. And it is by any measure easier to understand -- <em>much</em> more pythonic.</p> http://stackoverflow.com/questions/1459190/which-out-of-python-ruby-f-is-better-for-learning-as-first-programming-langu/1462800#1462800 1 Answer by Kevin Little for Which out of Python, Ruby, F# is better for learning as first programming language with dynamic type system? Kevin Little 2009-09-22T21:42:34Z 2009-09-22T21:42:34Z <p>Python, IMHO. F#, as has been mentioned, is "right out" (to be pythonic ;). Ruby has more magic characters in its syntax than Python, you have to worry about braces, etc. On the other hand, it's closer to being 100% object-oriented. You can't go wrong with either Python or Ruby.</p> http://stackoverflow.com/questions/1461392/is-it-pythonic-for-a-function-to-return-an-interable-or-non-iterable-depending-on/1461697#1461697 1 Answer by Kevin Little for Is it Pythonic for a function to return an interable or non-iterable depending on its input? Kevin Little 2009-09-22T18:10:56Z 2009-09-22T18:10:56Z <p>The only situation where I would do this is with a parameterized function or method, where one or more of the parameters the caller gives determines the type returned; for example, a "factory" function that returns one of a logically similar family of objects:</p> <pre><code>newCharacter = characterFactory("human", "male", "warrior") </code></pre> <p>In the general case, where the caller doesn't get to specify, I'd avoid the "box of chocolates" behavior. :)</p> http://stackoverflow.com/questions/1163145/what-does-2-1-mean-in-bash/1197176#1197176 0 Answer by Kevin Little for What does ${2:-${1}} mean in Bash? Kevin Little 2009-07-28T22:50:29Z 2009-07-28T22:50:29Z <p>It means "Use the second argument if the first is undefined <em>or</em> empty, else use the first". The form "${2-${1}}" (no ':') means "Use the second if the first is not defined (but if the first is defined as empty, use it)".</p> http://stackoverflow.com/questions/1140194/in-python-how-do-i-obtain-the-current-frame/1140513#1140513 0 Answer by Kevin Little for In Python, how do I obtain the current frame? Kevin Little 2009-07-16T21:46:50Z 2009-07-16T21:46:50Z <p>I use these little guys for debugging and logging:</p> <pre><code>import sys def LINE( back = 0 ): return sys._getframe( back + 1 ).f_lineno def FILE( back = 0 ): return sys._getframe( back + 1 ).f_code.co_filename def FUNC( back = 0): return sys._getframe( back + 1 ).f_code.co_name def WHERE( back = 0 ): frame = sys._getframe( back + 1 ) return "%s/%s %s()" % ( os.path.basename( frame.f_code.co_filename ), frame.f_lineno, frame.f_code.co_name ) </code></pre> http://stackoverflow.com/questions/1094717/convert-a-string-to-integer-with-decimal-in-python/1094775#1094775 0 Answer by Kevin Little for Convert a string to integer with decimal in Python Kevin Little 2009-07-07T20:47:25Z 2009-07-07T20:47:25Z <pre><code>&gt;&gt;&gt; s = '23.45678' &gt;&gt;&gt; int(float(s)) 23 &gt;&gt;&gt; int(round(float(s))) 23 &gt;&gt;&gt; s = '23.54678' &gt;&gt;&gt; int(float(s)) 23 &gt;&gt;&gt; int(round(float(s))) 24 </code></pre> <p>You don't specify if you want rounding or not...</p> http://stackoverflow.com/questions/774690/good-tutorials-for-learning-intermediate-to-advanced-regex/774721#774721 5 Answer by Kevin Little for Good tutorials for learning intermediate to advanced Regex? Kevin Little 2009-04-21T21:31:40Z 2009-04-21T21:31:40Z <p>"<a href="http://oreilly.com/catalog/9780596528126/" rel="nofollow">Mastering Regular Expressions</a>", by Jeffrey E. F. Friedl. Yes, it's a book vs. an on-line tutorial, but a very good one...</p> http://stackoverflow.com/questions/184853/xterm-control-sequence-to-t-output-to-a-file 0 Xterm control sequence to 'T' output to a file... Kevin Little 2008-10-08T20:54:59Z 2009-04-17T04:24:46Z <p>I swear there used to be a way in X to start capturing all terminal traffic to a file on your host. It may have been a HummingBird extension, but I thought it was standard. Now, I can't find the trick. Am I hallucinating (happens when you get old), or is it possible?<br><br>I'm not talking about 'tee'. I want to be able to send a xterm control-sequence to stdout, giving a file name, and have everthing shown in the window from that time onward saved to the file (until the bookend cancel is issued).</p> http://stackoverflow.com/questions/656704/python-lib-to-read-a-flash-swf-format-file/656726#656726 2 Answer by Kevin Little for Python lib to Read a Flash swf Format File Kevin Little 2009-03-18T02:02:41Z 2009-03-18T02:02:41Z <p>Well, unless you're doing it for fun (in which case, go for it!), why not use <a href="http://www.libming.org/" rel="nofollow">Ming</a>? It supposedly has python wrappers...</p> http://stackoverflow.com/questions/77552/id-is-a-bad-variable-name-in-python/77612#77612 17 Answer by Kevin Little for 'id' is a bad variable name in Python Kevin Little 2008-09-16T21:55:59Z 2009-02-02T17:01:30Z <p>"id()" is a fundamental built-in:</p> <blockquote> <p>Help on built-in function id in module <strong>builtin</strong>:</p> <p>id(...) id(object) -> integer</p> <pre><code>Return the identity of an object. This is guaranteed to be unique among simultaneously existing objects. (Hint: it's the object's memory address.) </code></pre> </blockquote> <p>In general, using variable names that eclipse a keyword or built-in function in any language is a bad idea, even if it is allowed.</p> <p>-k</p> http://stackoverflow.com/questions/135834/python-swig-vs-ctypes 6 Python: SWIG vs ctypes Kevin Little 2008-09-25T20:29:27Z 2009-01-21T01:36:28Z <p>In python, under what circumstances is SWIG a better choice than ctypes for calling entry points in shared libraries? Let's assume you don't already have the SWIG interface file(s). <br><br>What are the performance metrics of the two?</p> http://stackoverflow.com/questions/338101/python-function-attributes-uses-and-abuses/338577#338577 1 Answer by Kevin Little for Python function attributes - uses and abuses Kevin Little 2008-12-03T20:27:41Z 2008-12-03T20:27:41Z <p>Function attributes can be used to write light-weight closures that wrap code and associated data together:</p> <pre><code>#!/usr/bin/env python SW_DELTA = 0 SW_MARK = 1 SW_BASE = 2 def stopwatch(): import time def _sw( action = SW_DELTA ): if action == SW_DELTA: return time.time() - _sw._time elif action == SW_MARK: _sw._time = time.time() return _sw._time elif action == SW_BASE: return _sw._time else: raise NotImplementedError _sw._time = time.time() # time of creation return _sw # test code sw=stopwatch() sw2=stopwatch() import os os.system("sleep 1") print sw() # defaults to "SW_DELTA" sw( SW_MARK ) os.system("sleep 2") print sw() print sw2() </code></pre> <p>1.00934004784</p> <p>2.00644397736</p> <p>3.01593494415</p> http://stackoverflow.com/questions/245304/how-do-i-get-the-name-of-a-function-or-method-from-within-a-python-function-or-me/245561#245561 5 Answer by Kevin Little for How do I get the name of a function or method from within a Python function or method? Kevin Little 2008-10-29T01:58:33Z 2008-10-29T02:03:50Z <pre><code># file "foo.py" import sys import os def LINE( back = 0 ): return sys._getframe( back + 1 ).f_lineno def FILE( back = 0 ): return sys._getframe( back + 1 ).f_code.co_filename def FUNC( back = 0): return sys._getframe( back + 1 ).f_code.co_name def WHERE( back = 0 ): frame = sys._getframe( back + 1 ) return "%s/%s %s()" % ( os.path.basename( frame.f_code.co_filename ), frame.f_lineno, frame.f_code.co_name ) def testit(): print "Here in %s, file %s, line %s" % ( FUNC(), FILE(), LINE() ) print "WHERE says '%s'" % WHERE() testit() </code></pre> <p>Output:</p> <pre><code>$ python foo.py Here in testit, file foo.py, line 17 WHERE says 'foo.py/18 testit()' </code></pre> <p>Use "back = 1" to find info regarding two levels back down the stack, etc.</p> http://stackoverflow.com/questions/226970/whats-the-best-open-source-game-ever/227660#227660 9 Answer by Kevin Little for What's the best open source game ever? Kevin Little 2008-10-22T21:46:35Z 2008-10-22T21:46:35Z <pre><code>. . . . . . . . . . . . . . S . . . . . . . * . . . . * . . . . . . . . . . . * . * . . . * . . . . . . . . . . . . . . . . . E . . . . . . . . . . . * . . . . . . . . . . . . . . . . . * . . . . . . </code></pre> <p>This one... the original Star Trek. PDP11 rulez! :)</p> http://stackoverflow.com/questions/58640/great-programming-quotes/205662#205662 8 Answer by Kevin Little for Great programming quotes Kevin Little 2008-10-15T17:33:16Z 2008-10-15T17:33:16Z <blockquote> <p>"We should forget about small efficiencies, say about 97% of the time: premature optimization is the root of all evil."<br> --Donald Knuth</p> </blockquote> http://stackoverflow.com/questions/196876/is-there-a-better-way-to-get-a-named-series-of-constants-enumeration-in-python/198101#198101 2 Answer by Kevin Little for Is there a better way to get a named series of constants (enumeration) in Python? Kevin Little 2008-10-13T16:02:05Z 2008-10-14T03:06:46Z <p>The following acts like a classisc "written in stone" C enum -- once defined, you can't change it, you can only read its values. Neither can you instantiate it. All you have to do is "import enum.py" and derive from class Enum.</p> <pre><code># this is enum.py class EnumException( Exception ): pass class Enum( object ): class __metaclass__( type ): def __setattr__( cls, name, value ): raise EnumException("Can't set Enum class attribute!") def __delattr__( cls, name ): raise EnumException("Can't delete Enum class attribute!") def __init__( self ): raise EnumException("Enum cannot be instantiated!") </code></pre> <p>This is the test code:</p> <pre><code># this is testenum.py from enum import * class ExampleEnum( Enum ): A=1 B=22 C=333 if __name__ == '__main__' : print "ExampleEnum.A |%s|" % ExampleEnum.A print "ExampleEnum.B |%s|" % ExampleEnum.B print "ExampleEnum.C |%s|" % ExampleEnum.C z = ExampleEnum.A if z == ExampleEnum.A: print "z is A" try: ExampleEnum.A = 4 print "ExampleEnum.A |%s| FAIL!" % ExampleEnum.A except EnumException: print "Can't change Enum.A (pass...)" try: del ExampleEnum.A except EnumException: print "Can't delete Enum.A (pass...)" try: bad = ExampleEnum() except EnumException: print "Can't instantiate Enum (pass...)" </code></pre> http://stackoverflow.com/questions/196522/in-c-what-are-the-benefits-of-using-exceptions-and-try-catch-instead-of-just/196541#196541 2 Answer by Kevin Little for In C++ what are the benefits of using exceptions and try / catch instead of just returning an error code? Kevin Little 2008-10-13T02:20:07Z 2008-10-13T02:31:07Z <p><a href="http://en.wikipedia.org/wiki/Python_syntax_and_semantics#Exceptions" rel="nofollow">Here's</a> a good explanation of EAFP ("Easier to Ask for Forgiveness than Permission."), which I think applies here even if it's a Python page in Wikipedia. Using exceptions leads to a more natural style of coding, IMO -- and in the opinion of many others, too.</p> http://stackoverflow.com/questions/187455/counting-array-elements-in-python/187493#187493 -2 Answer by Kevin Little for Counting array elements in Python Kevin Little 2008-10-09T14:23:27Z 2008-10-09T14:23:27Z <p>Or,</p> <pre><code>myArray.__len__() </code></pre> <p>if you want to be oopy; "len(myArray)" is a lot easier to type! :)</p> http://stackoverflow.com/questions/185740/would-you-architect-the-control-api-of-the-next-gen-mars-rover-to-be-restful-inst 4 Would you architect the control API of the next-gen Mars rover to be RESTful instead of an RPC? Kevin Little 2008-10-09T02:41:22Z 2008-10-09T11:16:58Z <p>Forgive me if this verges on being a "discussion" question, but I really would appreciate a yes/no answer, with an appropriate explanation. </p> <p>Suppose you have to design and implement a control API for a robot, say the next generation Mars Rover. Do you architect this API according to RESTful principles, or do you use a classic RPC, such as XMLRPC? </p> <p>I ask this because I have to do something similar, though the "robot" is a collection of virtual machines. I'm being urged by one rather persuasive engineer, a well known REST advocate, to make the API RESTful. I've never used REST principles, and I'm struggling to see how they fit in designing low-level inter-process APIs. REST seems infused with the theme of interacting with a modifiable data repository, usually many hops away. What I'm trying to do feels more like closely controlling a robot. I can see how one could argue that the robot is, in the abstract, just a data repository -- "PUT left turn", "PUT travel 100 meters", "GET outside temperature". But this seems to be a rather contrived model. I certainly will receive no benefit from caching or a proxy ("Hello, JPL? This is the Akamai co-lo in Canberra. We're taking over the Rover now, ok?") </p> <p>So, is a RESTful architecture useful here? Is it still superior to RPC even when the interaction is so narrowly focused?</p> http://stackoverflow.com/questions/184162/using-top-in-linux-as-semi-permanent-instrumentation 2 Using "top" in Linux as semi-permanent instrumentation Kevin Little 2008-10-08T18:27:47Z 2008-10-09T02:11:03Z <p>I'm trying to find the best way to use 'top' as semi-permanent instrumentation in the development of a box running embedded Linux. (The instrumentation will be removed from the final-test and production releases.)<br><br>My first pass is to simply add this to init.d:<br><br><code>top -b -d 15 &gt;/tmp/toploop.out &amp;</code><br><br>This runs top in "batch" mode every 15 seconds. Let's assume that /tmp has plenty of space...<br><br>Questions: </p> <ol> <li>Is 15 seconds a good value to choose for general-purpose monitoring?</li> <li>Other than disk space, how seriously is this perturbing the state of the system?</li> <li>What other (perhaps better) tools could be used like this?</li> </ol> <p>Thanks in advance for your answers!</p> http://stackoverflow.com/questions/181530/python-style-multiple-line-conditions-in-ifs/183206#183206 2 Answer by Kevin Little for Python style: multiple-line conditions in IFs Kevin Little 2008-10-08T14:55:02Z 2008-10-08T14:55:02Z <p><em>Someone</em> has to champion use of vertical whitespace here! :)</p> <pre><code>if ( cond1 == val1 and cond2 == val2 and cond3 == val3 ): do_stuff() </code></pre> <p>This makes each condition clearly visible. It also allows cleaner expression of more complex conditions:</p> <pre><code>if ( cond1 == val1 or ( cond2_1 == val2_1 and cond2_2 &gt;= val2_2 and cond2_3 != bad2_3 ) ): do_more_stuff() </code></pre> <p>Yes, we're trading off a bit of vertical real estate for clarity. Well worth it IMO.</p> http://stackoverflow.com/questions/172372/tracing-versus-logging-and-how-does-log4net-fit-in/172503#172503 1 Answer by Kevin Little for Tracing versus Logging and how does log4net fit in? Kevin Little 2008-10-05T19:33:23Z 2008-10-05T19:33:23Z <p>IMO...<br><br>Logging should <strong>not</strong> be designed for development debugging (but it inevitably gets used that way)<br> Logging should be designed for <em>operational</em> monitoring and trouble-shooting -- this is its raison d’être.<br><br> Tracing should be designed for development debugging &amp; performance tuning. If available in the field, it can be use for really low-level operational trouble-shooting, but that is not its main purpose<br><br>Given this, the most successful approaches I've seen (and designed/implemented) in the past do <em>not</em> combine the two together. Better to keep the two tools separate, each doing one job as well as possible.</p> http://stackoverflow.com/questions/171835/which-python-book-would-you-recommend-for-a-linux-sysadmin/172195#172195 1 Answer by Kevin Little for Which Python book would you recommend for a Linux Sysadmin? Kevin Little 2008-10-05T16:10:54Z 2008-10-05T16:10:54Z <p>I think you'd want to include <a href="http://oreilly.com/catalog/9780596001889/" rel="nofollow">Python in a Nutshell</a> on your bookshelf. Excellent, thorough reference, by Alex Martelli. </p> http://stackoverflow.com/questions/159597/how-to-convince-people-to-comment-their-code/159636#159636 2 Answer by Kevin Little for How to convince people to comment their code Kevin Little 2008-10-01T20:47:34Z 2008-10-01T20:53:10Z <p>Well, there's always the "if you don't comment your code, we'll find someone else who'll comment theirs" approach.<br><br>More gently, tell them that they are sorely letting down the team if they don't document and comment what they are doing. The code does NOT belong to the individual, unless they are complete lone wolves. It belongs to the team, the group, whether that be a company or a community. </p> http://stackoverflow.com/questions/157938/hiding-a-password-in-a-python-script/157974#157974 0 Answer by Kevin Little for Hiding a password in a (python) script Kevin Little 2008-10-01T14:43:20Z 2008-10-01T14:43:20Z <p>There are several ROT13 utilities written in Python on the 'Net -- just google for them. ROT13 encode the string offline, copy it into the source, decode at point of transmission.<br><br>But this is <em>really</em> weak protection...</p> http://stackoverflow.com/questions/154250/running-many-virtual-machines-on-a-single-host/154311#154311 0 Answer by Kevin Little for Running many virtual machines on a single host Kevin Little 2008-09-30T18:24:39Z 2008-09-30T18:24:39Z <p>Are you restricted to vmware? Have you considered <a href="http://en.wikipedia.org/wiki/Operating_system-level_virtualization" rel="nofollow">Operating system-level virtualization?</a> You'll get more VMs with less overhead, given that each VM can run the same kernel.</p> http://stackoverflow.com/questions/141642/what-limitations-have-closures-in-python-compared-to-language-x-closures/141767#141767 2 Answer by Kevin Little for What limitations have closures in Python compared to language X closures? Kevin Little 2008-09-26T20:29:21Z 2008-09-26T20:29:21Z <p>Fixed in Python 3.0 via the <strong>nonlocal</strong> keyword. See <a href="http://www.artima.com/weblogs/viewpost.jsp?thread=208549" rel="nofollow">here </a>and search for "nonlocal".<br><br>For those of you who don't like using the web: </p> <blockquote> <p>The nonlocal statement lets you assign to variables in outer (non-global) scopes.<br> -- some guy named "van Rossum" or something... ;)</p> </blockquote> http://stackoverflow.com/questions/137147/in-c-and-c-is-it-considered-bad-form-to-use-comparison-operators-outside-of-c/137198#137198 6 Answer by Kevin Little for In C (and C++) is it considered bad form to use comparison operators outside of conditionals? Kevin Little 2008-09-26T01:01:16Z 2008-09-26T01:01:16Z <p>The first case is perfectly good, far better than the second, IMHO. As a matter of readability, I personally would do</p> <pre><code> return (a &gt; 10); </code></pre> <p>but that is a minor nit, and not one everyone would agree on.</p> http://stackoverflow.com/questions/1912557/a-question-on-python-gil/1912602#1912602 Comment by Kevin Little on A question on python GIL Kevin Little 2009-12-16T14:41:50Z 2009-12-16T14:41:50Z +1 for that last paragraph -- exactly! http://stackoverflow.com/questions/1903980/why-list-comprehension-is-called-so-in-python/1904054#1904054 Comment by Kevin Little on why list comprehension is called so in python? Kevin Little 2009-12-15T23:28:23Z 2009-12-15T23:28:23Z &quot;comprehension&quot; is used here to mean &quot;complete inclusion&quot; or &quot;complete description&quot;. A set-comprehension is a (usually short) complete description of a set, not an exhaustive (and possibly infinite) enumeration. The set comprehension &quot;{x∈N:x&gt;2}&quot; is the infinite set of all natural numbers greater than 2. (By convention, a capital 'N' is defined to mean the set of natural numbers, '∈' means &quot;is of the set&quot;, ':' means &quot;such that&quot;, and the '{}' mean &quot;set&quot;.) http://stackoverflow.com/questions/1880404/using-a-file-to-store-optparse-arguments/1880422#1880422 Comment by Kevin Little on Using a file to store optparse arguments Kevin Little 2009-12-10T23:24:33Z 2009-12-10T23:24:33Z @S. Lot ;) : I don't <i>know</i> who this mysterious attacker is -- that's part of the problem! Neither do I know where this tiny, &quot;safe&quot; Python applet, into which I'm going stick a naked &quot;eval()&quot; of an externally accessible file, is going to end up in, say, three years. Maybe it will become part of a nifty, public service I never even envisioned, artfully mashed together by trusting developers in the company/community I left a year after I wrote it. But, we digress; sorry! http://stackoverflow.com/questions/1880404/using-a-file-to-store-optparse-arguments/1880422#1880422 Comment by Kevin Little on Using a file to store optparse arguments Kevin Little 2009-12-10T16:59:30Z 2009-12-10T16:59:30Z Wagging your finger at an attacker taking advantage of a chink in your armor neither eliminates the chink or stops the attack... :) http://stackoverflow.com/questions/1881338/what-is-the-best-way-to-get-a-stacktrace-when-using-multiprocessing/1881690#1881690 Comment by Kevin Little on What is the best way to get a stacktrace when using multiprocessing? Kevin Little 2009-12-10T16:46:23Z 2009-12-10T16:46:23Z +1 for the re-throw link... http://stackoverflow.com/questions/1800660/bash-alias-query/1800800#1800800 Comment by Kevin Little on Bash alias query Kevin Little 2009-11-29T22:54:28Z 2009-11-29T22:54:28Z I agree with @Roger. Assuming you have your own private &quot;~/bin&quot; directory in your path in which to keep it (you do, don't you? :), a stand-alone script is always more flexible and robust for little commands you want to use both directly in the cli and inside other scripts. A directory of small sripts is easier to deal with than a single file full of unrelated functions, IMHO. http://stackoverflow.com/questions/1590689/what-is-the-best-advanced-python-book/1590729#1590729 Comment by Kevin Little on What is the best advanced Python book? Kevin Little 2009-10-20T03:02:43Z 2009-10-20T03:02:43Z It sure would be nice to be able to add &quot;tags&quot; to a specific answer; I'd tag this one &quot;c&quot;, &quot;c++&quot;, &quot;ruby&quot;, &quot;perl&quot;, &quot;bash&quot;, &quot;unix&quot;, &quot;linux&quot; ... :) http://stackoverflow.com/questions/1460484/verbose-list-comprehension-in-python Comment by Kevin Little on Verbose list comprehension in Python Kevin Little 2009-09-22T21:34:24Z 2009-09-22T21:34:24Z Consider: [ name for (name, value) in list_of_tuples if value != None ] Here the &quot;for&quot; is absolutely necessary to separate the value-to-be-stored from the values-being-produced. http://stackoverflow.com/questions/1462427/automatic-string-to-number-conversion-in-python/1462475#1462475 Comment by Kevin Little on Automatic String to Number conversion in Python Kevin Little 2009-09-22T21:22:20Z 2009-09-22T21:22:20Z You may want to look at the standard &quot;locale&quot; library module. http://stackoverflow.com/questions/1003528/bash-how-to-traverse-directory-structure-and-execute-commands/1003557#1003557 Comment by Kevin Little on Bash: how to traverse directory structure and execute commands? Kevin Little 2009-06-16T20:46:18Z 2009-06-16T20:46:18Z for x in $(find /home/brianonly -type f); do ... done $() is <i>so</i> much more readable than back-ticks. My $.02. http://stackoverflow.com/questions/819056/i-know-c-will-i-be-more-productive-with-python/819067#819067 Comment by Kevin Little on I know C#. Will I be more productive with Python? Kevin Little 2009-05-04T15:59:11Z 2009-05-04T15:59:11Z But that's not the question... The question is, will Programmer A be <i>more</i> productive in language X than he/she is in language Y? I'm certainly less productive in, say, bash shell than I am in python, though I do consider myself &quot;productive&quot; in shell scripting. http://stackoverflow.com/questions/184853/xterm-control-sequence-to-t-output-to-a-file/759017#759017 Comment by Kevin Little on Xterm control sequence to 'T' output to a file... Kevin Little 2009-04-17T21:51:33Z 2009-04-17T21:51:33Z Suspected this... I'll not compromise the security of xterm just to get this little benefit. I've gone to a two-level scripting scheme where full logging of the inner script is an option given to the outer script. Thanks! http://stackoverflow.com/questions/312443/how-do-you-split-a-list-into-evenly-sized-chunks-in-python/312644#312644 Comment by Kevin Little on How do you split a list into evenly sized chunks in Python? Kevin Little 2008-11-24T04:18:25Z 2008-11-24T04:18:25Z &quot;Use the libraries, Luke!&quot; :) http://stackoverflow.com/questions/256222/which-exception-should-i-raise-on-bad-illegal-argument-combinations-in-python/256260#256260 Comment by Kevin Little on Which exception should I raise on bad/illegal argument combinations in Python? Kevin Little 2008-11-02T15:11:18Z 2008-11-02T15:11:18Z &gt; &quot;so why not use that?&quot; - Specificity. Perhaps I want to catch at some outer layer &quot;MyValueError&quot;, but not any/all &quot;ValueError&quot;. http://stackoverflow.com/questions/241141/python-lazy-list/241169#241169 Comment by Kevin Little on Python lazy list Kevin Little 2008-10-27T21:33:13Z 2008-10-27T21:33:13Z And that's all I have to say about that... :)