User Charles Duffy - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T07:15:06Z http://stackoverflow.com/feeds/user/14122 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/110259/python-memory-profiler/1633191#1633191 0 Answer by Charles Duffy for Python memory profiler Charles Duffy 2009-10-27T19:41:40Z 2009-10-27T19:41:40Z <p>Consider the <A HREF="http://mg.pov.lt/objgraph/" rel="nofollow">objgraph</A> library (see <A HREF="http://www.lshift.net/blog/2008/11/14/tracing-python-memory-leaks" rel="nofollow">http://www.lshift.net/blog/2008/11/14/tracing-python-memory-leaks</A> for an example use case).</p> http://stackoverflow.com/questions/1563967/generate-sql-statements-with-python/1564224#1564224 5 Answer by Charles Duffy for Generate SQL statements with python Charles Duffy 2009-10-14T04:21:40Z 2009-10-14T04:21:40Z <p>SQLAlchemy provides <A HREF="http://www.sqlalchemy.org/docs/05/sqlexpression.html" rel="nofollow">a robust expression language</A> for generating SQL from Python.</p> <p>Like every other well-designed abstraction layer, however, the queries it generates insert data through bind variables rather than through attempting to mix the query language and the data being inserted into a single string. This approach avoids massive security vulnerabilities and is otherwise The Right Thing.</p> http://stackoverflow.com/questions/301039/how-to-escape-white-space-in-bash-loop-list/301059#301059 5 Answer by Charles Duffy for how to escape white space in bash loop list Charles Duffy 2008-11-19T05:19:41Z 2009-10-07T02:55:13Z <p>First, don't do it that way. The best approach is to use <code>find -exec</code> properly:</p> <pre><code>find test -type d -exec echo '{}' + </code></pre> <p>The next best approach is to use an <code>IFS</code> variable which doesn't contain the space character:</p> <pre><code>( IFS=$'\n' for N in $(find test -mindepth 1 -type d); do echo "$N" done ) </code></pre> <p>Finally, for the command-line parameter case, you should be using arrays.</p> <pre><code>for d in "$@"; do echo "$d" done </code></pre> <p>will maintain separation. Note that the quoting (and the use of <code>$@</code> rather than <code>$*</code>) is important. Arrays can be populated in other ways as well, such as glob expressions:</p> <pre><code>entries=( test/* ) for d in "${entries[@]}"; do echo "$d" done </code></pre> http://stackoverflow.com/questions/1516458/kill-process-in-bash-that-runs-more-than-specified-time/1516482#1516482 6 Answer by Charles Duffy for Kill process in bash that runs more than specified time? Charles Duffy 2009-10-04T14:03:21Z 2009-10-04T14:31:07Z <p>If able to use 3rd-party tools, I'd leverage one of the 3rd-party, pre-written helpers you can call from your script (<A HREF="http://pilcrow.madison.wi.us/" rel="nofollow">doalarm</A> and <A HREF="http://www.shelldorado.com/scripts/cmds/timeout" rel="nofollow">timeout</A> are both mentioned by <A HREF="http://mywiki.wooledge.org/BashFAQ/068" rel="nofollow">the BashFAQ entry on the subject</A>).</p> <p>If writing such a thing myself without using such tools, I'd probably do something like the following:</p> <pre><code>function try_proper_shutdown() { su oracle -c "lsnrctl stop &gt;/dev/null" su oracle -c "sqlplus sys/passwd as sysdba @/usr/local/PLATEX/scripts/orastop.sql &gt;/dev/null" } function resort_to_harsh_shutdown() { for progname in ora_this ora_that ; do killall -9 $progname done # also need to do a bunch of cleanup with ipcs/ipcrm here } # here's where we start the proper shutdown approach in the background try_proper_shutdown &amp; child_pid=$! # rather than keeping a counter, we check against the actual clock each cycle # this prevents the script from running too long if it gets delayed somewhere # other than sleep (or if the sleep commands don't actually sleep only the # requested time -- they don't guarantee that they will). end_time=$(( $(date '+%s') + (60 * 5) )) while (( $(date '+%s') &lt; end_time )); do if kill -0 $child_pid 2&gt;/dev/null; then exit 0 fi sleep 1 done # okay, we timed out; stop the background process that's trying to shut down nicely # (note that alone, this won't necessarily kill its children, just the subshell we # forked off) and then make things happen. kill $child_pid resort_to_harsh_shutdown </code></pre> http://stackoverflow.com/questions/1485387/regex-to-match-text-between-specified-delimiters-i-just-cant-get-it-myself/1485392#1485392 5 Answer by Charles Duffy for Regex to match text between specified delimiters? (I just can't get it myself) Charles Duffy 2009-09-28T04:16:53Z 2009-09-29T04:01:14Z <p>Standard or extended regex syntax can't do that, but what it <em>can</em> do is create match groups which you can then select. For instance:</p> <pre><code>ABC(.*)XYZ </code></pre> <p>will store anything between <code>ABC</code> and <code>XYZ</code> as <code>\1</code> (otherwise known as group 1).</p> <p>If you're using PCREs (Perl-Compatible Regular Expressions), lookahead and lookbehind assertions are also available -- but groups are the more portable and better-performing solution. Also, if you're using PCREs, you should use <code>*?</code> to ensure that the match is non-greedy and will terminate at the first opportunity.</p> <p>You can test this yourself in a Python interpreter (the Python regex syntax is PCRE-derived):</p> <pre><code>&gt;&gt;&gt; import re &gt;&gt;&gt; input_str = ''' ... This is the first line ... And ABC first matched hereXYZ ... and then ... again ABCsecond matchXYZ ... asdf ... ''' &gt;&gt;&gt; re.findall('ABC(.*?)XYZ', input_str) [' first matched here', 'second match'] </code></pre> http://stackoverflow.com/questions/1457757/python-shell-command-why-wont-it-work/1457789#1457789 5 Answer by Charles Duffy for python shell command - why won't it work? Charles Duffy 2009-09-22T01:59:17Z 2009-09-22T02:05:38Z <p>You have a serious question -- in that <code>os.system</code> isn't behaving the way you expect it to -- but also, you should seriously rethink the approach as a whole.</p> <p>You're launching a Python interpreter -- but then, via <code>os.system</code>, telling that Python interpreter to launch a shell! <code>os.system</code> shouldn't be used at all in modern Python (<code>subprocess</code> is a complete replacement)... but using any Python call which starts a shell instance is exceptionally silly in this kind of use case.</p> <p>Now, in terms of the actual, immediate problem -- look at how your quotation marks are nesting. You'll see that the quote you're starting before <code>mkdir</code> is being closed in the <code>echo</code>, allowing your command to be split in a spot you don't intend.</p> <p>The following fixes this immediate issue, but is still awful and evil (starts a subshell unnecessarily, doesn't properly check output status, and should be converted to use <code>subprocess.Popen()</code>):</p> <pre><code>os.system('''ssh -q %(REMOTEHOST)s "mkdir ~/.ssh 2&gt;/dev/null; chmod 700 ~/.ssh; echo '%(KEYCODE)s' &gt;&gt; ~/.ssh/authorized_keys; chmod 644 ~/.ssh/authorized_keys"''' % { 'REMOTEHOST':'user@remote', 'KEYCODE':open(os.path.join(os.environ['HOME'], '.ssh/id_rsa.pub'),'r').read() }) </code></pre> http://stackoverflow.com/questions/1451479/expand-tabs-to-spaces-in-c/1451511#1451511 4 Answer by Charles Duffy for Expand Tabs to Spaces in C? Charles Duffy 2009-09-20T17:25:05Z 2009-09-20T17:25:05Z <p>This isn't really a question about the C language; it's a question about finding the right algorithm -- you could use that algorithm in <em>any</em> language.</p> <p>Anyhow, you can't do this at all without reallocating <code>line[]</code> to point at a larger buffer (unless it's a large fixed length, in which case you need to be worried about overflows); as you're expanding the tabs, you need more memory to store the new, larger lines, so character replacement such as you're trying to do simply won't work.</p> <p>My suggestion: Rather than trying to operate in place (or trying to operate in memory, even) I would suggest writing this as a filter -- reading from stdin and writing to stdout one character at a time; that way you don't need to worry about memory allocation or deallocation or the changing length of line[].</p> <p>If the context this code is being used in <em>requires</em> it to operate in memory, consider implementing an API similar to <code>realloc()</code>, wherein you return a new pointer; if you don't need to change the length of the string being handled you can simply keep the original region of memory, but if you <em>do</em> need to resize it, the option is available.</p> http://stackoverflow.com/questions/1447809/awk-print-9-the-last-ls-l-column-including-any-spaces-in-the-file-name/1447925#1447925 5 Answer by Charles Duffy for awk '{print $9}' the last ls -l column including any spaces in the file name. Charles Duffy 2009-09-19T06:06:18Z 2009-09-19T06:12:02Z <p>A better solution: Don't attempt to parse ls output in the first place.</p> <p>The official wiki of the irc.freenode.org #bash channel has an explanation of why this is a Bad Idea, and what alternate approaches you can take instead: <A HREF="http://mywiki.wooledge.org/ParsingLs" rel="nofollow">http://mywiki.wooledge.org/ParsingLs</A></p> <p>Use of find, <A HREF="http://mywiki.wooledge.org/BashFAQ/087" rel="nofollow">stat</A> and similar tools will provide the functionality you're looking for without the pitfalls (not all of which are obvious -- some occur only when moving to platforms with different ls implementations).</p> <p>For your specific example, I'm guessing that you're trying to find only files (and not directories) in your current directory; your current implementation using <code>ls -l</code> is buggy, as it excludes files which have +t or setuid permissions. The Right Way to implement this would be the following:</p> <pre><code>find . -maxdepth 1 -type f -printf '%f\n' </code></pre> http://stackoverflow.com/questions/1387551/hide-a-bash-function-internals/1387624#1387624 1 Answer by Charles Duffy for Hide a bash function internals.. Charles Duffy 2009-09-07T05:08:47Z 2009-09-10T05:27:50Z <p>Run <code>type env</code> at your bash prompt, and provide the output; for me, this indicates that env is <code>/usr/bin/env</code>, a separate executable; such executables have no way to know anything about functions or non-exported variables.</p> <p>That said, without fixing the underlying problem (the likely cause being use of a bash built-in, function or alias in place of <code>/usr/bin/env</code>, which the output of the type command will show), there's a workaround available: <code>env | grep '^PERL'</code>; the carrot will emit only output starting at the beginning of a line, and function contents are indented in output of <code>set</code> (which appears to be running in place of <code>env</code>; again, <code>type env</code> should give a clue to the cause).</p> <p>One point of clarification: <code>set</code> is a bash builtin which, when run with no arguments, dumps defined variables (environment or otherwise) and functions; when run <em>with</em> arguments, it has some other, completely different (and POSIX-specified) behaviors. <code>env</code>, as an external program, has no access to unexported variables or to functions defined within the shell that calls it.</p> <p>(set is actually not bash-specific, but rather is <A HREF="http://opengroup.org/onlinepubs/009695399/utilities/set.html" rel="nofollow">specified by POSIX</A> to dump all shell variables; its additional functionality of dumping function definitions is to my knowledge an extension beyond the letter of the standard).</p> http://stackoverflow.com/questions/1371496/how-to-use-results-of-one-sql-query-within-a-sub-query/1371506#1371506 4 Answer by Charles Duffy for How to use results of one sql query within a sub-query Charles Duffy 2009-09-03T05:04:06Z 2009-09-03T05:12:54Z <p>"Unsuccessful" isn't very useful, as opposed to actual error text -- and you aren't telling us which vendor's database you're running against, so we can't test. That said, the following should work:</p> <pre><code>select YearReleased, count(*) as movie_count from movies group by YearReleased order by movie_count desc, YearReleased; </code></pre> <p>No subqueries needed!</p> <p>Validated against SQLite 3.5.9; if running against something less standards-compliant (which SQLite <em>is</em>, except in very explicitly documented ways), your mileage may vary.</p> http://stackoverflow.com/questions/1371386/display-message-on-command-cd-production/1371487#1371487 8 Answer by Charles Duffy for display message on command "cd production" Charles Duffy 2009-09-03T04:52:38Z 2009-09-03T04:52:38Z <p>Don't do it that way. :)</p> <p>What you really want to know isn't whether the user just got into the 'production' directory via a cd command; what you really want to know is if you're modifying production data, and how you got there (cd, pushd, popd, opening a shell from a parent process in that directory already) is irrelevant.</p> <p>It makes much more sense, then, to have your shell put up an obnoxious warning when you're in the production directory.</p> <pre><code>function update_prompt() { if [[ $PWD =~ /production(/|$) ]] ; then PS1="\u@\h \w [WARNING: PRODUCTION] $" else PS1="\u@\h \w $" fi } PROMPT_COMMAND=update_prompt </code></pre> <p>Feel free to replace the strings in question with something much more colorful.</p> http://stackoverflow.com/questions/1371261/get-current-working-directory-name-in-bash-script/1371283#1371283 13 Answer by Charles Duffy for Get current working directory name in Bash Script Charles Duffy 2009-09-03T03:21:39Z 2009-09-03T03:29:03Z <p>No need for basename, and especially no need for a subshell running pwd (which <A HREF="http://tldp.org/LDP/abs/html/subshells.html" rel="nofollow">adds an extra, and expensive, fork operation</A>); the shell can do this internally using <A HREF="http://www.gnu.org/software/bash/manual/html_node/Shell-Parameter-Expansion.html" rel="nofollow">parameter expansion</A>:</p> <pre><code>${PWD##*/} </code></pre> http://stackoverflow.com/questions/1368364/what-non-web-oriented-python-frameworks-exist/1368442#1368442 8 Answer by Charles Duffy for What non web-oriented python frameworks exist? Charles Duffy 2009-09-02T15:36:04Z 2009-09-02T15:36:04Z <p>For network services needing to handle numerous connections asynchronously, a great many people favor <A HREF="http://twistedmatrix.com/" rel="nofollow">Twisted</A>.</p> <p>Outside of that (and web applications), however, there's simply less need for overarching frameworks in Python than with many other languages -- the core language itself is expressive, powerful, and comes with batteries included; why add anything?</p> http://stackoverflow.com/questions/806906/how-do-i-test-if-a-variable-is-a-number-in-bash/806923#806923 8 Answer by Charles Duffy for How do I test if a variable is a number in bash? Charles Duffy 2009-04-30T13:32:20Z 2009-04-30T15:01:34Z <p>One approach is to use a regular expression, like so:</p> <pre><code>if ! [[ "$yournumber" =~ ^[0-9]+$ ]] ; then exec &gt;&amp;2; echo "error: Not a number"; exit 1 fi </code></pre> <p>If the value is not necessarily an integer, consider amending the regex appropriately; for instance:</p> <pre><code>^[0-9]+([.][0-9]+)?$ </code></pre> http://stackoverflow.com/questions/740169/lib-to-read-a-dvd-fs-data-disc/740184#740184 0 Answer by Charles Duffy for lib to read a DVD FS (data disc) Charles Duffy 2009-04-11T14:31:02Z 2009-04-11T14:31:02Z <p>If you want to browse files, why not let your operating system do the heavy lifting? Given that a modern OS will already have everything it needs to mount filesystems from DVDs -- and that there will be numerous people already using and debugging this code, as opposed to a smaller and more focused userbase for a userspace library such as libdvdread -- it seems silly not to leverage them.</p> http://stackoverflow.com/questions/732465/skip-over-html-tags-in-regular-expression-patterns/732477#732477 4 Answer by Charles Duffy for skip over HTML tags in Regular Expression patterns Charles Duffy 2009-04-09T01:33:31Z 2009-04-09T01:33:31Z <p>Using regular expressions to deal with HTML is extremely error-prone; they're simply not the right tool.</p> <p>Instead, use a HTML/XML-aware library (such as <A HREF="http://codespeak.net/lxml/" rel="nofollow">lxml</A>) to build a DOM-style object tree; modify the text segments within the tree in-place, and generate your output again using said library.</p> http://stackoverflow.com/questions/723635/how-do-you-send-an-ethernet-frame-with-a-corrupt-fcs/724009#724009 5 Answer by Charles Duffy for How do you send an Ethernet frame with a corrupt FCS? Charles Duffy 2009-04-07T02:50:09Z 2009-04-07T02:50:09Z <p>It <em>can</em> be handled in hardware, but isn't always -- and even if it is, you can turn that off; see the <A HREF="http://linux.die.net/man/8/ethtool" rel="nofollow">ethtool</A> offload parameters.</p> <p>With regard to getting full control over the frames you create -- look into <A HREF="http://swoolley.org/man.cgi/7/packet" rel="nofollow">PF_PACKET</A> (for one approach) or <A HREF="http://vtun.sourceforge.net/tun/faq.html" rel="nofollow">the tap driver</A> (for another).</p> <p>Here's an article on <A HREF="http://www.larsen-b.com/Article/206.html" rel="nofollow">using PF_PACKET to send hand-crafted frames from Python</A>.</p> http://stackoverflow.com/questions/720818/copy-one-file-content-to-another-using-sed-editor/720833#720833 0 Answer by Charles Duffy for copy one file content to another using "sed" editor Charles Duffy 2009-04-06T09:48:33Z 2009-04-06T14:25:27Z <p>All you need is a noop:</p> <pre><code>sed -e '' &lt;"${OLDNAME}" &gt;"${NEWNAME}" </code></pre> <p>...that said, <em>why</em>? Most tiny embedded systems will be using busybox, and while they may not have cp (hey, I've built a busybox without one for a dedicated router appliance!), not adding cat to the busybox config is just silly.</p> http://stackoverflow.com/questions/712113/is-there-a-good-python-module-that-does-html-encoding-escaping-in-c/712154#712154 0 Answer by Charles Duffy for Is there a good python module that does HTML encoding/escaping in C? Charles Duffy 2009-04-03T00:34:50Z 2009-04-03T00:34:50Z <p>See <A HREF="http://codespeak.net/lxml/" rel="nofollow">lxml</A>, which is based on <A HREF="http://xmlsoft.org/" rel="nofollow">libxml2</A>. While it's primarily a XML library, <A HREF="http://codespeak.net/lxml/parsing.html#parsing-html" rel="nofollow">HTML support is available</A>.</p> http://stackoverflow.com/questions/704130/can-i-transpose-a-file-in-vim/704139#704139 6 Answer by Charles Duffy for Can I transpose a file in vim? Charles Duffy 2009-04-01T05:13:33Z 2009-04-01T06:18:19Z <p>Vim support for a number of scripting languages built in -- see <A HREF="http://www.vim.org/htmldoc/if_pyth.html" rel="nofollow">the Python interface</A> as an example.</p> <p>Just modify <code>vim.current.buffer</code> appropriately and you're set.</p> <p>To be a little more specific:</p> <pre><code>function! Rotate() python &lt;&lt;EOF import vim, itertools max_len = max((len(n) for n in vim.current.buffer)) vim.current.buffer[:] = [ ''.join(n) for n in itertools.izip( *( n + ' ' * (max_len - len(n)) for n in vim.current.buffer))] EOF endfunction </code></pre> http://stackoverflow.com/questions/693752/python-module-for-vbox/694365#694365 0 Answer by Charles Duffy for Python module for VBox? Charles Duffy 2009-03-29T09:13:21Z 2009-03-29T20:27:59Z <p>Consider using <A HREF="http://www.libvirt.org" rel="nofollow">libvirt</A>. The VirtualBox support is bleeding-edge (not in any release, may not even be in source control yet, but is available as a set of patches on the mailing list) -- but this single API, available for C, Python and several other languages, lets you control virtual machines and images running in Qemu/KVM, Xen, LXC (Linux Containers), UML (User-Mode Linux), OpenVZ and others.</p> <p>I build and administer virtual appliances (in an automated QA context) using libvirt with the qemu/KVM backend, and it meets my needs very well.</p> <p>libvirt can be configured to allow remote access (such as controlling or querying VBoxService or libvirtd from within one of the VMs, which you appear to want to do -- though I question the wisdom and utility), with numerous authentication and transport options available.</p> <p>[Caveat: libvirt principally targets Unixlike operating systems; it can be built for win32, but YMMV]</p> http://stackoverflow.com/questions/694329/can-jython-replace-java/694355#694355 3 Answer by Charles Duffy for Can Jython replace Java? Charles Duffy 2009-03-29T09:06:35Z 2009-03-29T09:06:35Z <p>No, Jython is not a suitable replacement for Java. Consider, for instance, that it provides no way to implement interfaces without writing the interface in Java and then writing a class leveraging it in Jython.</p> <p>What's needed is a JVM-targeted equivalent to Boo. Boo is a language targeting the .NET CLR which is roughly inspired by Python but not compatible, and which fully exposes the CLR's functionality (thus being feature-equivalent with C#). There presently is no Pythonic language with feature parity with Java -- and such a language would necessarily be incompatible with Python, as Python simply doesn't provide a way to express some of the relevant concepts (such as interface typing information).</p> http://stackoverflow.com/questions/662137/how-to-forward-serial-port-data-dev-ttys0-to-server-from-client/662197#662197 1 Answer by Charles Duffy for How to forward serial port data (/dev/ttyS0) to Server from client Charles Duffy 2009-03-19T13:28:40Z 2009-03-19T13:28:40Z <p>Are the client systems trusted? I'd hope (for security reasons) that they wouldn't be, and thus that you wouldn't allow them access to the database.</p> <p>Write a program to be run on the client which opens <code>/dev/ttyS0</code>, reads the relevant data, and does <code>HTTP POST</code>s (or opens a raw socket, but since you're already running PHP on the server this is easier) to communicate that data to your preexisting server software; have the page receiving the <code>POST</code>s then write to the database.</p> <p>You can't do this without installing extra software on the client, and it would be a Bad Thing if you could -- do you really <em>want</em> random websites communicating with connected dataloggers?</p> http://stackoverflow.com/questions/657108/bash-recursively-adding-subdirectories-to-the-path/657240#657240 1 Answer by Charles Duffy for Bash: Recursively adding subdirectories to the path Charles Duffy 2009-03-18T07:27:12Z 2009-03-18T14:53:53Z <p>The following Does The Right Thing, including trimming hidden directories and their children and properly handling names with newlines or other whitespace:</p> <pre><code>export PATH="${PATH}$(find ~/code -name '.*' -prune -o -type d -printf ':%p')" </code></pre> <p>I use a similar trick for automatically setting <code>CLASSPATH</code>s.</p> http://stackoverflow.com/questions/561988/detect-file-handle-leaks-in-python/562005#562005 2 Answer by Charles Duffy for Detect file handle leaks in python? Charles Duffy 2009-02-18T17:12:26Z 2009-02-19T06:08:36Z <p>Look at output from <code>ls -l /proc/$pid/fd/</code> (substituting the PID of your process, of course) to see which files are open [or, on win32, use <A HREF="http://technet.microsoft.com/en-us/sysinternals/bb896653.aspx" rel="nofollow">Process Explorer</A> to list open files]; then figure out where in your code you're opening them, and make that <code>close()</code> is being called. (Yes, the garbage collector will eventually close things, but it's not always fast enough to avoid running out of fds).</p> <p>Checking for any circular references which might be preventing garbage collection is also a good practice. (The cycle collector will eventually dispose of these -- but it may not run frequently enough to avoid file descriptor exhaustion; I've been bitten by this personally).</p> http://stackoverflow.com/questions/220525/ensuring-a-single-instance-of-an-application-in-linux/220709#220709 15 Answer by Charles Duffy for Ensuring a single instance of an application in Linux Charles Duffy 2008-10-21T03:43:36Z 2009-02-18T17:09:30Z <p>The Right Thing is advisory locking using <code>flock(LOCK_EX)</code>; in Python, this is found in <A HREF="http://www.python.org/doc/2.5.2/lib/module-fcntl.html" rel="nofollow">the fcnl module</A>.</p> <p>Unlike pidfiles, these locks are always automatically released when your process dies for any reason, have no race conditions exist relating to file deletion (as the file doesn't <I>need</I> to be deleted to release the lock), and there's no chance of a different process inheriting the PID and thus appearing to validate a stale lock.</p> <p>If you want unclean shutdown detection, you can write a marker (such as your PID, for traditionalists) into the file after grabbing the lock, and then truncate the file to 0-byte status before a clean shutdown (while the lock is being held); thus, if the lock is not held and the file is non-empty, an unclean shutdown is indicated.</p> http://stackoverflow.com/questions/544417/deleting-empty-zero-byte-files/544428#544428 7 Answer by Charles Duffy for Deleting empty (zero-byte) files Charles Duffy 2009-02-13T01:50:03Z 2009-02-13T03:38:19Z <p>Easy enough:</p> <pre><code>find . -type f -empty -exec rm -f '{}' + </code></pre> http://stackoverflow.com/questions/529118/how-to-output-data-form-a-thread-to-another-thread-without-locking/529169#529169 1 Answer by Charles Duffy for How to output data form a thread to another thread without locking? Charles Duffy 2009-02-09T17:56:52Z 2009-02-09T17:56:52Z <p>If you were doing this in pure Python, I'd use a <A HREF="http://docs.python.org/library/queue.html" rel="nofollow"><code>Queue</code></A> object; these buffer up data which is written but block on read until something is available, and do any necessary locking under the hood.</p> <p>This is an extremely common datatype, and some equivalent should always be available, whatever your current language or toolchain; there's a STL Queue available in C++, for instance, but the standard doesn't specify thread-safety characteristics (so see your local implementation docs).</p> http://stackoverflow.com/questions/527197/intercepting-stdout-of-a-subprocess-while-it-is-running/527202#527202 3 Answer by Charles Duffy for intercepting stdout of a subprocess while it is running Charles Duffy 2009-02-09T05:49:20Z 2009-02-09T08:20:50Z <p>Process output is buffered. On more UNIXy operating systems (or Cygwin), the <A HREF="http://www.noah.org/wiki/Pexpect" rel="nofollow">pexpect</A> module is available, which recites all the necessary incantations to avoid buffering-related issues. However, these incantations require a working <A HREF="http://docs.python.org/library/pty.html" rel="nofollow">pty module</A>, which is not available on native (non-cygwin) win32 Python builds.</p> <p>In the example case where you control the subprocess, you can just have it call <code>sys.stdout.flush()</code> where necessary -- but for arbitrary subprocesses, that option isn't available.</p> <p>See also <A HREF="http://www.noah.org/wiki/Pexpect#Q:_Why_not_just_use_a_pipe_.28popen.28.29.29.3F" rel="nofollow">the question "Why not just use a pipe (popen())?"</A> in the pexpect FAQ.</p> http://stackoverflow.com/questions/525907/replace-url-paths-using-regex/525913#525913 2 Answer by Charles Duffy for replace url paths using Regex Charles Duffy 2009-02-08T15:38:18Z 2009-02-08T15:44:19Z <p>Well, the easiest way is probably to use sed in in-place mode:</p> <pre><code>sed -ir \ 's@http://www[.]myOLDwebsite[.]com/@http://www.myNEWwebsite.com/subdirectory/@g' \ file1 file2 ... </code></pre> <p>If for some reason you need to actually interpret the HTML (rather than just do a simple string replacement), a quick script built around <A HREF="http://www.crummy.com/software/BeautifulSoup/" rel="nofollow">BeautifulSoup</A> is going to be safer -- lots of people try to do HTML or XML parsing via regular expressions, but it's very hard if not impossible to cover all corner cases.</p> <p>All that said, it'd be better if you were using relative links to not have your HTML depend on the server it's hosted on. See also the <code>&lt;BASE HREF="..."&gt;</code> element you can put in your <code>&lt;HEAD&gt;</code> to specify a location all URLs are relative to; if you were using that, you'd only need to do a single replacement.</p> http://stackoverflow.com/questions/561988/detect-file-handle-leaks-in-python/562120#562120 Comment by Charles Duffy on Detect file handle leaks in python? Charles Duffy 2009-11-06T05:57:50Z 2009-11-06T05:57:50Z @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). http://stackoverflow.com/questions/378127/pyc-to-py-files Comment by Charles Duffy on pyc to py files Charles Duffy 2009-11-03T12:21:21Z 2009-11-03T12:21:21Z Voted to close as duplicate (of 48211) http://stackoverflow.com/questions/1617446/how-can-i-find-out-the-server-specs-in-unix/1617457#1617457 Comment by Charles Duffy on How can i find out the server specs in unix? Charles Duffy 2009-10-24T15:53:15Z 2009-10-24T15:53:15Z Many current distributions have this packages (<code>lshw</code>) available for installation without needing to build from source. http://stackoverflow.com/questions/80021/is-it-me-or-is-eclipse-horribly-unpredictable Comment by Charles Duffy on Is it me, or is Eclipse horribly unpredictable? Charles Duffy 2009-10-15T03:32:51Z 2009-10-15T03:32:51Z Subjective and argumentative. http://stackoverflow.com/questions/1563967/generate-sql-statements-with-python Comment by Charles Duffy on Generate SQL statements with python Charles Duffy 2009-10-14T04:24:35Z 2009-10-14T04:24:35Z Generating &quot;plain SQL statements&quot; 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. http://stackoverflow.com/questions/1554689/evaluate-expressions-in-switch-statements-in-c/1554696#1554696 Comment by Charles Duffy on Evaluate Expressions in Switch Statements in C# Charles Duffy 2009-10-12T13:54:28Z 2009-10-12T13:54:28Z 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. http://stackoverflow.com/questions/1554689/evaluate-expressions-in-switch-statements-in-c/1554706#1554706 Comment by Charles Duffy on Evaluate Expressions in Switch Statements in C# Charles Duffy 2009-10-12T13:53:40Z 2009-10-12T13:53:40Z That's what I was going to suggest -- but why put the ternary in a different function? http://stackoverflow.com/questions/1543087/pure-python-persistent-key-and-value-based-container-a-hash-like-interface-with/1543245#1543245 Comment by Charles Duffy on Pure Python persistent key and value based container (a hash like interface) with large file system support? Charles Duffy 2009-10-11T09:42:12Z 2009-10-11T09:42:12Z Not sure MySQL is the database of choice if reliability is one of the key requirements, particularly if MyISAM is in use. http://stackoverflow.com/questions/301039/how-to-escape-white-space-in-bash-loop-list Comment by Charles Duffy on how to escape white space in bash loop list Charles Duffy 2009-10-07T02:56:05Z 2009-10-07T02:56:05Z 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) http://stackoverflow.com/questions/301039/how-to-escape-white-space-in-bash-loop-list/301065#301065 Comment by Charles Duffy on how to escape white space in bash loop list Charles Duffy 2009-10-05T03:22:31Z 2009-10-05T03:22:31Z @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. http://stackoverflow.com/questions/1516508/sqlite3-in-python/1516527#1516527 Comment by Charles Duffy on sqlite3 in Python Charles Duffy 2009-10-04T15:05:32Z 2009-10-04T15:05:32Z @john2x - yes, it does. http://stackoverflow.com/questions/1516458/kill-process-in-bash-that-runs-more-than-specified-time Comment by Charles Duffy on Kill process in bash that runs more than specified time? Charles Duffy 2009-10-04T14:36:15Z 2009-10-04T14:36:15Z 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 <code>kill -9</code> codepath). http://stackoverflow.com/questions/1516458/kill-process-in-bash-that-runs-more-than-specified-time/1516482#1516482 Comment by Charles Duffy on Kill process in bash that runs more than specified time? Charles Duffy 2009-10-04T14:31:33Z 2009-10-04T14:31:33Z Updated to remove the /proc/$child_pid reference. http://stackoverflow.com/questions/927091/how-to-check-in-a-bash-script-if-something-is-running-and-exit-if-it-is/927095#927095 Comment by Charles Duffy on How to check in a bash script if something is running and exit if it is. Charles Duffy 2009-10-04T14:28:29Z 2009-10-04T14:28:29Z If using <code>flock</code>, lock files are easy to manage -- but yes, using <code>-f</code> to test their existence is Evil And Wrong. http://stackoverflow.com/questions/1516458/kill-process-in-bash-that-runs-more-than-specified-time/1516482#1516482 Comment by Charles Duffy on Kill process in bash that runs more than specified time? Charles Duffy 2009-10-04T14:26:32Z 2009-10-04T14:26:32Z ...but yes, if we could do that, it would be <i>much</i> less evil. :)