Charles Duffy
|
Registered User
|
Just this guy, see?
|
|
Dec 6 |
awarded | ● Mortarboard |
|
Nov 6 |
comment |
Detect file handle leaks in python? @zgoda - not Windows-specific, FD exhaustion is possible elsewhere too (though not letting the same file be opened more than once is certainly a Windows thing). |
|
Nov 3 |
comment |
pyc to py files Voted to close as duplicate (of 48211) |
|
Oct 27 |
answered | Python memory profiler |
|
Oct 19 |
accepted | Expand Tabs to Spaces in C? |
|
Oct 15 |
comment |
Is it me, or is Eclipse horribly unpredictable? Subjective and argumentative. |
|
Oct 14 |
accepted | how to escape white space in bash loop list |
|
Oct 14 |
comment |
Generate SQL statements with python Generating "plain SQL statements" with data in-line is inherently prone to security failures for reasons as abstract as varying interpretations of Unicode characters between the database engine and the library doing the generation. It is NOT something you should try to do. The output, therefore, should be phrased -- and passed to your database API -- as a query string / data list combo. SQLAlchemy will automate this. |
|
Oct 14 |
answered | Generate SQL statements with python |
|
Oct 12 |
comment |
Evaluate Expressions in Switch Statements in C# Not true -- you can use a ternary operator to consolidate the less-than-zero case into a single value, and evaluate that in the switch. |
|
Oct 12 |
comment |
Evaluate Expressions in Switch Statements in C# That's what I was going to suggest -- but why put the ternary in a different function? |
|
Oct 11 |
comment |
Pure Python persistent key and value based container (a hash like interface) with large file system support? Not sure MySQL is the database of choice if reliability is one of the key requirements, particularly if MyISAM is in use. |
|
Oct 7 |
comment |
how to escape white space in bash loop list Updated to document use of arrays for handling command-line parameters. (Wish you'd commented to let me know you needed an extension to the answer sooner -- I don't check back on old answers all the time) |
|
Oct 7 |
revised |
how to escape white space in bash loop list avoid triggering bad syntax highlighting; *sigh* |
|
Oct 5 |
comment |
how to escape white space in bash loop list @litb - people trying to take advantage of security flaws in your code, for one. Assuming folks will do the sane or reasonable thing is dangerous. |
|
Oct 4 |
accepted | Kill process in bash that runs more than specified time? |
|
Oct 4 |
comment |
sqlite3 in Python @john2x - yes, it does. |
|
Oct 4 |
comment |
Kill process in bash that runs more than specified time? Pavel, they're very similar, but not exactly the same -- this one doesn't only kill the child process, but acts differently afterwards (needing to follow the kill -9 codepath). |
|
Oct 4 |
comment |
Kill process in bash that runs more than specified time? Updated to remove the /proc/$child_pid reference. |
|
Oct 4 |
revised |
Kill process in bash that runs more than specified time? remove of evil use of /proc/$child_pid |
|
Oct 4 |
comment |
How to check in a bash script if something is running and exit if it is. If using flock, lock files are easy to manage -- but yes, using -f to test their existence is Evil And Wrong. |
|
Oct 4 |
comment |
Kill process in bash that runs more than specified time? ...but yes, if we could do that, it would be much less evil. :) |
|
Oct 4 |
comment |
Kill process in bash that runs more than specified time? You recall incorrectly; bash's wait construct accepts a pid as an argument, but nothing else (no timeout, so you lose much of the power of the actual waitpid syscall). |
|
Oct 4 |
revised |
Kill process in bash that runs more than specified time? Reference BashFAQ, 3rd-party tools |
|
Oct 4 |
comment |
Kill process in bash that runs more than specified time? Well, it's easiest to do in something where you have direct access to waitpid, which actually supports a timeout value on its own. Bash is fine too, though, and I've used it (literally for exactly this purpose) in the past. (Former employer, no continuing access to the scripts, and I've slept enough times since then that I'm unlikely to remember much that's domain-specific and useful). |
|
Oct 4 |
revised |
Kill process in bash that runs more than specified time? comments! |
|
Oct 4 |
answered | Kill process in bash that runs more than specified time? |
|
Oct 3 |
comment |
Is it reasonable to save data as python modules? Both of the advantages you mention come back to the ability to load the data separate from any "loader" code -- and using a loader from a standard or 3rd-party library (pickle, SimpleJSON, YAML, etc) buys you that advantage also. |
|
Sep 29 |
revised |
Regex to match text between specified delimiters? (I just can’t get it myself) remove re.MULTILINE -- question does not specify desired behavior one way or the other. |
|
Sep 28 |
accepted | Regex to match text between specified delimiters? (I just can’t get it myself) |
|
Sep 28 |
revised |
Regex to match text between specified delimiters? (I just can’t get it myself) deleted 2 characters in body |
|
Sep 28 |
revised |
Regex to match text between specified delimiters? (I just can’t get it myself) yield to all the folks suggesting non-greedy matching |
|
Sep 28 |
comment |
Regex to match text between specified delimiters? (I just can’t get it myself) One quick comment for anyone reading this -- if you're looking at this question because you want to use regular expressions for XML parsing, don't. It's something I see folks trying to do in #bash frequently, and it's a Very Bad Idea -- XML parsing is surprisingly difficult to get right, and any attempt to capture the intricacies of the syntax in a regular expression is bound to fail. Use a library or tool built for the purpose -- if, like the folks asking in #bash, you want something you can use from a shell script, see XMLStarlet. |
|
Sep 28 |
comment |
Regex to match text between specified delimiters? (I just can’t get it myself) @Greg - Absolutely; if you have a Match m, see m.Groups. |
|
Sep 28 |
comment |
Regex to match text between specified delimiters? (I just can’t get it myself) @Sonam - Depends on the regex syntax in use -- remember, we have basic, extended, and Perl-Compatible; only the last of those recognizes the question mark as modifying greedy behavior. |
|
Sep 28 |
comment |
Regex to match text between specified delimiters? (I just can’t get it myself) @kender - To have only one match, two things would need to be true: The multiline flag would need to be set, and the asterisk would need to be greedy. Otherwise, we have two separate matches, each of which has its own groups. |
|
Sep 28 |
answered | Regex to match text between specified delimiters? (I just can’t get it myself) |
|
Sep 26 |
comment |
tail -f in python with no time.sleepsubprocess.Popen does not necessarily create a shell -- if passed an array rather than a string and not given shell=True, it performs a direct exec of the invoked process just as subprocess.call does here. |
|
Sep 26 |
comment |
Python: This should be impossible, shouldn’t it? We can't help unless you provide enough information to reproduce the issue. Suffice to say that there are numerous ways this is possible, and without knowing the context it's fruitless to ask us to guess between them. |
|
Sep 22 |
accepted | python shell command - why won’t it work? |
|
Sep 22 |
revised |
python shell command - why won’t it work? Add code sample |
|
Sep 22 |
answered | python shell command - why won’t it work? |
|
Sep 22 |
comment |
How do I find the name of the file that is the importer, within the imported file? Not just "can be buggy", but "won't work as expected", as the module will be evaluated only once, even if imported multiple times. |
|
Sep 21 |
comment |
What would be the simplest way to daemonize a python script in Linux ? One note -- PLEASE provide a way to run your program in the foreground, both for debugging and folks who prefer process supervision tools (such as runit [smarden.org/runit] or daemontools [cr.yp.to/daemontools.html]) to run your program as a supervised service rather than a daemon. |
|
Sep 21 |
comment |
Extract Data from CSV in Bash script (Sed, AWK, Grep?) Bash is not the right tool for this job -- see just how convoluted the closer-to-complete solutions below are, and there's no guarantee that they hit all the corner cases. Use a language with a longstanding, QAed, peer-reviewed CSV library available (Python has on in its standard library, for instance) rather than trying to hack something together without. |
|
Sep 20 |
answered | Expand Tabs to Spaces in C? |
|
Sep 20 |
revised |
Expand Tabs to Spaces in C? fix code indentation to match flow control |
|
Sep 19 |
accepted | awk ‘{print $9}’ the last ls -l column including any spaces in the file name. |
|
Sep 19 |
revised |
List files with certain extensions with ls and grep format as code |
|
Sep 19 |
comment |
List files with certain extensions with ls and grep This really is the wrong approach -- instead of using grep, use shopt -s nullglob and then just refer to *.exe *.mp3 *.mp4. See mywiki.wooledge.org/ParsingLs |
