Kevin Little

1,898
reputation
117 views

Registered User

name Kevin Little
member for 1 year
seen 33 mins ago
website
location Boston Area
age 57
Old Fart Programmer.
Dec
16
comment A question on python GIL
+1 for that last paragraph -- exactly!
Dec
15
comment why list comprehension is called so in python?
"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".)
Dec
14
answered why list comprehension is called so in python?
Dec
10
comment Using a file to store optparse arguments
@S. Lot ;) : I don't know 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!
Dec
10
comment Using a file to store optparse arguments
Wagging your finger at an attacker taking advantage of a chink in your armor neither eliminates the chink or stops the attack... :)
Dec
10
comment What is the best way to get a stacktrace when using multiprocessing?
+1 for the re-throw link...
Dec
2
answered Is it a better practice to typecast the pointer returned by malloc?
Nov
29
comment Bash alias query
I 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.
Nov
22
awarded  Nice Answer
Oct
20
comment What is the best advanced Python book?
It 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" ... :)
Oct
16
awarded  Nice Answer
Oct
10
answered The SHORTEST way to remove multiple spaces in a string in Python
Sep
22
answered Which out of Python, Ruby, F# is better for learning as first programming language with dynamic type system?
Sep
22
comment Verbose list comprehension in Python
Consider: [ 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.
Sep
22
comment Automatic String to Number conversion in Python
You may want to look at the standard "locale" library module.
Sep
22
answered Is it Pythonic for a function to return an interable or non-iterable depending on its input?
Sep
17
awarded  Yearling
Jul
28
answered What does ${2:-${1}} mean in Bash?
Jul
26
awarded  Popular Question
Jul
16
answered In Python, how do I obtain the current frame?
Jul
7
answered Convert a string to integer with decimal in Python