User Kevin Little - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T02:37:08Zhttp://stackoverflow.com/feeds/user/14028http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1903980/why-list-comprehension-is-called-so-in-python/1904054#19040543Answer by Kevin Little for why list comprehension is called so in python?Kevin Little2009-12-14T22:46:34Z2009-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#18352880Answer by Kevin Little for Is it a better practice to typecast the pointer returned by malloc?Kevin Little2009-12-02T19:37:16Z2009-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#15468834Answer by Kevin Little for The SHORTEST way to remove multiple spaces in a string in PythonKevin Little2009-10-10T02:39:51Z2009-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#14628001Answer by Kevin Little for Which out of Python, Ruby, F# is better for learning as first programming language with dynamic type system?Kevin Little2009-09-22T21:42:34Z2009-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#14616971Answer by Kevin Little for Is it Pythonic for a function to return an interable or non-iterable depending on its input?Kevin Little2009-09-22T18:10:56Z2009-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#11971760Answer by Kevin Little for What does ${2:-${1}} mean in Bash?Kevin Little2009-07-28T22:50:29Z2009-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#11405130Answer by Kevin Little for In Python, how do I obtain the current frame?Kevin Little2009-07-16T21:46:50Z2009-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#10947750Answer by Kevin Little for Convert a string to integer with decimal in PythonKevin Little2009-07-07T20:47:25Z2009-07-07T20:47:25Z<pre><code>>>> s = '23.45678'
>>> int(float(s))
23
>>> int(round(float(s)))
23
>>> s = '23.54678'
>>> int(float(s))
23
>>> 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#7747215Answer by Kevin Little for Good tutorials for learning intermediate to advanced Regex?Kevin Little2009-04-21T21:31:40Z2009-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-file0Xterm control sequence to 'T' output to a file...Kevin Little2008-10-08T20:54:59Z2009-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#6567262Answer by Kevin Little for Python lib to Read a Flash swf Format FileKevin Little2009-03-18T02:02:41Z2009-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#7761217Answer by Kevin Little for 'id' is a bad variable name in PythonKevin Little2008-09-16T21:55:59Z2009-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-ctypes6Python: SWIG vs ctypesKevin Little2008-09-25T20:29:27Z2009-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#3385771Answer by Kevin Little for Python function attributes - uses and abusesKevin Little2008-12-03T20:27:41Z2008-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#2455615Answer by Kevin Little for How do I get the name of a function or method from within a Python function or method?Kevin Little2008-10-29T01:58:33Z2008-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#2276609Answer by Kevin Little for What's the best open source game ever?Kevin Little2008-10-22T21:46:35Z2008-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#2056628Answer by Kevin Little for Great programming quotesKevin Little2008-10-15T17:33:16Z2008-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#1981012Answer by Kevin Little for Is there a better way to get a named series of constants (enumeration) in Python?Kevin Little2008-10-13T16:02:05Z2008-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#1965412Answer by Kevin Little for In C++ what are the benefits of using exceptions and try / catch instead of just returning an error code?Kevin Little2008-10-13T02:20:07Z2008-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-2Answer by Kevin Little for Counting array elements in PythonKevin Little2008-10-09T14:23:27Z2008-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-inst4Would you architect the control API of the next-gen Mars rover to be RESTful instead of an RPC?Kevin Little2008-10-09T02:41:22Z2008-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-instrumentation2Using "top" in Linux as semi-permanent instrumentationKevin Little2008-10-08T18:27:47Z2008-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 >/tmp/toploop.out &</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#1832062Answer by Kevin Little for Python style: multiple-line conditions in IFsKevin Little2008-10-08T14:55:02Z2008-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 >= 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#1725031Answer by Kevin Little for Tracing versus Logging and how does log4net fit in?Kevin Little2008-10-05T19:33:23Z2008-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 & 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#1721951Answer by Kevin Little for Which Python book would you recommend for a Linux Sysadmin?Kevin Little2008-10-05T16:10:54Z2008-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#1596362Answer by Kevin Little for How to convince people to comment their codeKevin Little2008-10-01T20:47:34Z2008-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#1579740Answer by Kevin Little for Hiding a password in a (python) scriptKevin Little2008-10-01T14:43:20Z2008-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#1543110Answer by Kevin Little for Running many virtual machines on a single hostKevin Little2008-09-30T18:24:39Z2008-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#1417672Answer by Kevin Little for What limitations have closures in Python compared to language X closures?Kevin Little2008-09-26T20:29:21Z2008-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#1371986Answer by Kevin Little for In C (and C++) is it considered bad form to use comparison operators outside of conditionals?Kevin Little2008-09-26T01:01:16Z2008-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 > 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#1912602Comment by Kevin Little on A question on python GILKevin Little2009-12-16T14:41:50Z2009-12-16T14:41:50Z+1 for that last paragraph -- exactly!http://stackoverflow.com/questions/1903980/why-list-comprehension-is-called-so-in-python/1904054#1904054Comment by Kevin Little on why list comprehension is called so in python?Kevin Little2009-12-15T23:28:23Z2009-12-15T23:28:23Z"comprehension" is used here to mean "complete inclusion" or "complete description". A set-comprehension is a (usually short) complete description of a set, not an exhaustive (and possibly infinite) enumeration. The set comprehension "{x∈N:x>2}" 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 "is of the set", ':' means "such that", and the '{}' mean "set".)http://stackoverflow.com/questions/1880404/using-a-file-to-store-optparse-arguments/1880422#1880422Comment by Kevin Little on Using a file to store optparse argumentsKevin Little2009-12-10T23:24:33Z2009-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, "safe" Python applet, into which I'm going stick a naked "eval()" 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#1880422Comment by Kevin Little on Using a file to store optparse argumentsKevin Little2009-12-10T16:59:30Z2009-12-10T16:59:30ZWagging 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#1881690Comment by Kevin Little on What is the best way to get a stacktrace when using multiprocessing?Kevin Little2009-12-10T16:46:23Z2009-12-10T16:46:23Z+1 for the re-throw link...http://stackoverflow.com/questions/1800660/bash-alias-query/1800800#1800800Comment by Kevin Little on Bash alias queryKevin Little2009-11-29T22:54:28Z2009-11-29T22:54:28ZI agree with @Roger. Assuming you have your own private "~/bin" 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#1590729Comment by Kevin Little on What is the best advanced Python book?Kevin Little2009-10-20T03:02:43Z2009-10-20T03:02:43ZIt sure would be nice to be able to add "tags" to a specific answer; I'd tag this one "c", "c++", "ruby", "perl", "bash", "unix", "linux" ... :) http://stackoverflow.com/questions/1460484/verbose-list-comprehension-in-pythonComment by Kevin Little on Verbose list comprehension in PythonKevin Little2009-09-22T21:34:24Z2009-09-22T21:34:24ZConsider:
[ name for (name, value) in list_of_tuples if value != None ]
Here the "for" 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#1462475Comment by Kevin Little on Automatic String to Number conversion in PythonKevin Little2009-09-22T21:22:20Z2009-09-22T21:22:20ZYou may want to look at the standard "locale" library module.http://stackoverflow.com/questions/1003528/bash-how-to-traverse-directory-structure-and-execute-commands/1003557#1003557Comment by Kevin Little on Bash: how to traverse directory structure and execute commands?Kevin Little2009-06-16T20:46:18Z2009-06-16T20:46:18Zfor 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#819067Comment by Kevin Little on I know C#. Will I be more productive with Python?Kevin Little2009-05-04T15:59:11Z2009-05-04T15:59:11ZBut 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 "productive" in shell scripting.http://stackoverflow.com/questions/184853/xterm-control-sequence-to-t-output-to-a-file/759017#759017Comment by Kevin Little on Xterm control sequence to 'T' output to a file...Kevin Little2009-04-17T21:51:33Z2009-04-17T21:51:33ZSuspected 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#312644Comment by Kevin Little on How do you split a list into evenly sized chunks in Python?Kevin Little2008-11-24T04:18:25Z2008-11-24T04:18:25Z"Use the libraries, Luke!" :)http://stackoverflow.com/questions/256222/which-exception-should-i-raise-on-bad-illegal-argument-combinations-in-python/256260#256260Comment by Kevin Little on Which exception should I raise on bad/illegal argument combinations in Python?Kevin Little2008-11-02T15:11:18Z2008-11-02T15:11:18Z> "so why not use that?" - Specificity. Perhaps I want to catch at some outer layer "MyValueError", but not any/all "ValueError". http://stackoverflow.com/questions/241141/python-lazy-list/241169#241169Comment by Kevin Little on Python lazy listKevin Little2008-10-27T21:33:13Z2008-10-27T21:33:13ZAnd that's all I have to say about that... :)