User phjr - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T01:43:49Zhttp://stackoverflow.com/feeds/user/9403http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1755834/memory-access-violation-whats-wrong-with-this-seemingly-simple-program/1755910#17559100Answer by phjr for Memory access violation. What's wrong with this seemingly simple program?phjr2009-11-18T13:19:19Z2009-11-18T13:24:27Z<p>When using more strict compiler settings, this code shouldn't even compile:</p>
<pre><code>char* str = "Constant string";
</code></pre>
<p>because it should be constant:</p>
<pre><code>const char* str = "Now correct";
const char str[] = "Also correct";
</code></pre>
<p>This allows you to catch these errors faster. Or you can just use a character array:</p>
<pre><code>char str[] = "You can write to me, but don't try to write something longer!";
</code></pre>
<p>To be perfectly safe, just use std::string. You're using C++ after all, and raw string manipulation is extremely error-prone.</p>
http://stackoverflow.com/questions/1676593/memory-leaks-during-development/1676630#16766301Answer by phjr for memory leaks during developmentphjr2009-11-04T21:06:14Z2009-11-04T21:06:14Z<p><strong>It's best to fight them during development,</strong> because then it's easier to identify the revision that introduces the leak. As you probably see now, doing it after the fact is very, very hard. Expect a lot of reports when running the tools I recommend below:</p>
<p><a href="http://valgrind.org/" rel="nofollow">http://valgrind.org/</a></p>
<p><a href="http://www.ibm.com/software/awdtools/purify/" rel="nofollow">http://www.ibm.com/software/awdtools/purify/</a></p>
<p><a href="http://directory.fsf.org/project/ElectricFence/" rel="nofollow">http://directory.fsf.org/project/ElectricFence/</a></p>
<p>I'd suggest you to run this tools, <strong>suppress most warnings about leaks, and then fix them one by one, removing the suppresions.</strong></p>
<p>And then, make sure you regularly run these tools and quickly fix any regressions!</p>
http://stackoverflow.com/questions/1392305/mstest-for-huge-legacy-codebase/1582313#15823130Answer by phjr for MSTest for huge legacy codebasephjr2009-10-17T14:27:15Z2009-10-17T14:27:15Z<p><strong>I would recomment googletest anyway.</strong> I think they will also gladly accept your VS integration and include it in the next release, provided the patch has reasonable quality.</p>
<p>Oh, and you can use another great Google project then, gmock.</p>
http://stackoverflow.com/questions/1522188/organizing-classes-in-php/1550365#15503651Answer by phjr for Organizing Classes in PHPphjr2009-10-11T10:31:20Z2009-10-11T10:31:20Z<p>I think there is no "The Right Answer" to the problem you stated. Some people will put Prime in Is, and some in Math. There is ambiguity. Otherwise you wouldn't be asking this question.</p>
<p>Now, you have to resolve the ambiguity somehow. You can think about some rules and conventions, that would say which class/method goes where. But this may be fragile, as the rules are not always obvious, and they may become very complicated, and at that point they're no longer helpful.</p>
<p><strong>I'd suggest that you design the classes so that it's obvious by looking at the names where some method should go.</strong></p>
<p>Don't name your validation package Is. It's so general name that almost everything goes there. IsFile, IsImage, IsLocked, IsAvailable, IsFull - doesn't sound good, ok? There is no <strong>cohesion</strong> with that design.</p>
<p>It's probably better to make the validation component filter data at subsystems boundary (where you have to enforce security and business rules), nothing else.</p>
<p>After making that decision, your example becomes obvious. Prime belongs in Math. Is::Image is probably too general. I'd prefer Image::IsValid, because you'll probably also have other methods operating on an image (more cohesion). <strong>Otherwise "Is" becomes a bag for everything</strong>, as I said at the beginning.</p>
http://stackoverflow.com/questions/1547250/currently-required-skills-in-most-internships/1550336#15503361Answer by phjr for Currently required skills in most internships phjr2009-10-11T10:13:11Z2009-10-11T10:13:11Z<p>This looks like a common problem with learning technologies.</p>
<p><strong>Don't focus too much on any particular technology.</strong> By the time you graduate the technologies are going to change 10 times (a little exaggeration).</p>
<p>Of course during the internship you're probably expected to be able to write things in some language with some set of libraries. You should know enough of it to be comfortable writing real-world programs with it. <strong>Don't expect to memorize the entire standard library or something.</strong> There are guys who do that, but it's a really short-sighted strategy.</p>
<p>The real value is in things which don't change that quickly. Design skills, algorithms, math problems, theoretical foundations of computer science, good judgment, good development practices... Some of it you'll learn in college (more theoretical ones), and some during internships (more practical ones; just try to make sure that what they <em>think</em> are best practices <em>are</em> really best practices - apply some critical thinking to it).</p>
http://stackoverflow.com/questions/1547317/what-does-128-bit-os-mean-to-a-software-developer/1550323#15503230Answer by phjr for What does 128-bit OS mean to a software developer??phjr2009-10-11T10:02:45Z2009-10-11T10:02:45Z<p>They would have to have 128-bit hardware or emulation layer to test it. Sounds interesting.</p>
<p>But the users probably don't care that much. Most non-technical people can't really understand the difference between 64-bit and 32-bit other than compatibility problems and "64-bits are better because marketing guy said so".</p>
http://stackoverflow.com/questions/1547342/c-run-time-error-with-protected-members/1550316#15503160Answer by phjr for C++ run time error with protected membersphjr2009-10-11T09:59:33Z2009-10-11T09:59:33Z<p>You can try running your program under Valgrind (free) or Purify (probably not free) to detect memory errors as early as possible. The error message should also be much more clear.</p>
<p>Also, just run the program under a debugger, and when it crashes, check its state. Is it what you expect?</p>
http://stackoverflow.com/questions/1548062/ftp-file-sharing/1550266#15502660Answer by phjr for ftp file sharingphjr2009-10-11T09:30:19Z2009-10-11T09:30:19Z<p>Hmm... you didn't say which language you are using, and you didn't describe the problems you're getting. You didn't even explain what you have now, so it may be difficult to help you effectively.</p>
<p>However, I can point you to some resources which should be helpful for you:</p>
<p><a href="http://www.ietf.org/rfc/rfc959.txt" rel="nofollow">http://www.ietf.org/rfc/rfc959.txt</a> (the FTP spec)</p>
<p><a href="http://src.chromium.org/viewvc/chrome/trunk/src/net/ftp/" rel="nofollow">http://src.chromium.org/viewvc/chrome/trunk/src/net/ftp/</a> (Google Chrome's FTP implementation in modern C++. The most interesting file is probably ftp_network_transaction.cc)</p>
<p><a href="http://code.google.com/p/pyftpdlib/" rel="nofollow">http://code.google.com/p/pyftpdlib/</a> (server-like FTP code in Python)</p>
http://stackoverflow.com/questions/1548858/patterns-best-practices-and-clean-code/1550255#15502551Answer by phjr for Patterns, Best Practices and Clean Codephjr2009-10-11T09:22:14Z2009-10-11T09:22:14Z<p>I think that a part of the problem are <strong>examples</strong> in the books.</p>
<p>When you write a book or article, you need some examples to present your idea. Usually the examples are meant to be simple. However, for a simple example the "pattern" may not make too much sense.</p>
<p>Then some people start applying the complicated machinery to all kind of simple problems, just to stick a pattern somewhere. I think this is the bad usage of patterns you're describing.</p>
<p>However, for more complicated designs (well, it requires <em>very</em> good judgment) patterns may be useful. You may also want to read <a href="http://stackoverflow.com/questions/466365/when-are-design-patterns-the-problem-instead-of-the-solution">http://stackoverflow.com/questions/466365/when-are-design-patterns-the-problem-instead-of-the-solution</a></p>
http://stackoverflow.com/questions/1369873/crash-handler-printing-a-backtrace3Crash handler printing a backtracephjr2009-09-02T20:12:45Z2009-09-02T20:52:10Z
<p>I want to install a SIGSEGV and friends handler in C++ to print a stack trace and exit on a crash.</p>
<p>backtrace_symbols_fd from glibc is almost what I want, but it doesn't symbolize calls in anonymous namespaces. However, gdb deals with that just fine (I have symbols compiled in, DWARF etc).</p>
<p>What library would you recommend for my situation?</p>
http://stackoverflow.com/questions/236125/how-to-convert-not-neccessarily-programatically-between-windows-wchart-and-gc2How to convert (not neccessarily programatically) between Windows' wchar_t and GCC/Linux one?phjr2008-10-25T08:55:22Z2009-07-24T08:53:04Z
<p>Suppose I have this Windows wchar_t string:</p>
<pre><code>L"\x4f60\x597d"
</code></pre>
<p>and</p>
<pre><code>L"\x00e4\x00a0\x597d"
</code></pre>
<p>and would like to convert it (not neccessarily programatically; it will be a one-time thing) to GCC/Linux wchar_t format, which is UTF-32 AFAIK. How do I do it? (a general explanation would be nice, but example based on this concrete case would be helpful as well)</p>
<p><em>Please don't direct me to character conversion sites. I would like to convert from L"\x(something)" form and not "end character" form.</em></p>
http://stackoverflow.com/questions/161885/how-to-evict-file-from-system-cache-on-linux1How to evict file from system cache on Linux?phjr2008-10-02T11:53:52Z2009-07-22T20:12:48Z
<p>When running performance tests file system cache hit or miss can significantly influence test results. Therefore generally before running such tests used files are evicted from system cache. How to do that on Linux?</p>
<p><strong>Clarification:</strong> If possible, the solution should not require root privileges.</p>
http://stackoverflow.com/questions/448428/how-to-accomplish-equivalent-of-vims-ctrl-n-in-gnu-emacs3How to accomplish equivalent of Vim's Ctrl-n in GNU Emacs?phjr2009-01-15T20:54:13Z2009-07-13T13:01:58Z
<p>Vim's Ctrl-n generally works like this: I type few letters, hit Ctrl-n, and Vim provides me with completions based on words in my all opened buffers.</p>
<p>Solution for Emacs doesn't have to be identical. I mainly use it like this: declare variable, then use it in later code. But I like the lightweight approach of <em>not</em> parsing the source code.</p>
http://stackoverflow.com/questions/272479/how-to-get-equivalent-of-printfl-on-linux3How to get equivalent of printf_l on Linux?phjr2008-11-07T15:41:24Z2009-07-06T16:37:12Z
<p>This function exists on OS X and allows you to pass custom local to the function. setlocale is not thread-safe, and passing locale as parameter is.</p>
<p>If there is no equivalent, any way of locale-independent printf, or printf just for doubles (%g) will be ok.</p>
http://stackoverflow.com/questions/858916/how-to-redirect-python-warnings-to-a-custom-stream1How to redirect python warnings to a custom stream?phjr2009-05-13T16:18:21Z2009-07-03T04:24:04Z
<p>Let's say I have a file-like object like StreamIO and want the python's warning module write all warning messages to it. How do I do that?</p>
http://stackoverflow.com/questions/503401/how-to-debug-file-change-notifications-obtained-by-findfirstchangenotification1How to debug file change notifications obtained by FindFirstChangeNotification?phjr2009-02-02T14:36:19Z2009-05-18T20:13:26Z
<p>So, the question is: I get some notifications I don't want to get. But I don't know for what file/dir I got them. Is there a way to know why given notification was fired?</p>
<p>If you think about ReadDirectoryChangesW, please include a meaningful code sample.</p>
http://stackoverflow.com/questions/818674/how-do-you-test-an-asynchronous-method/876586#8765861Answer by phjr for How do you test an asynchronous method?phjr2009-05-18T07:29:04Z2009-05-18T07:29:04Z<p>Asynchronous callbacks often require a message loop to run. It is a frequent pattern to stop the message loop after callback was called in the test code. Otherwise the loop is just waiting for next tasks, and there will be none.</p>
http://stackoverflow.com/questions/874609/what-gui-library-does-google-chrome-use/874627#8746273Answer by phjr for What GUI library does Google Chrome use?phjr2009-05-17T13:28:47Z2009-05-17T13:28:47Z<p>On Linux it uses GTK+, on Mac OS X Cocoa, and on Windows a custom views library, see <a href="http://www.youtube.com/watch?v=WsvNebq1dRg" rel="nofollow">http://www.youtube.com/watch?v=WsvNebq1dRg</a> and also documents from <a href="http://dev.chromium.org" rel="nofollow">http://dev.chromium.org</a>:</p>
<ul>
<li><a href="http://dev.chromium.org/developers/design-documents/chromeviews" rel="nofollow">http://dev.chromium.org/developers/design-documents/chromeviews</a></li>
<li><a href="http://dev.chromium.org/developers/design-documents/views-windowing" rel="nofollow">http://dev.chromium.org/developers/design-documents/views-windowing</a></li>
</ul>
http://stackoverflow.com/questions/858623/how-to-recognize-whether-a-script-is-running-on-a-tty3How to recognize whether a script is running on a tty?phjr2009-05-13T15:24:06Z2009-05-13T19:51:46Z
<p>I would like my script to act differently in an interactive shell session and when running with redirected stdout (for example when piped to some other command).</p>
<p>How do I recognize which of these two happen in a Python script?</p>
<p>Example of such behavior in existing program: grep --color=auto highlights matches when running in interactive shell, but doesn't when piped to something else.</p>
http://stackoverflow.com/questions/149772/how-to-use-group-by-to-concatenate-strings-in-mysql8How to use GROUP BY to concatenate strings in MySQL?phjr2008-09-29T17:32:45Z2009-05-12T06:43:00Z
<p>Basically the question is how to get from this:</p>
<pre>
id string
1 A
1 B
2 C
</pre>
<p>to this:</p>
<pre>
id string
1 A B
2 C
</pre>
http://stackoverflow.com/questions/843115/git-newbie-error-how-to-recover/843127#8431270Answer by phjr for git newbie error - how to recoverphjr2009-05-09T11:04:18Z2009-05-09T11:04:18Z<p>I think you can git-format-patch in one repository, and then apply in another. This way all important information is preserved.</p>
http://stackoverflow.com/questions/767147/how-do-i-tell-git-to-ignore-gitignore/767219#76721920Answer by phjr for How do I tell Git to ignore ".gitignore" ?phjr2009-04-20T07:14:19Z2009-04-20T07:14:19Z<p>If you want to store the list of ignored filed outside of your git tree, you can use <em>.git/info/exclude</em> file. It is applied only to your checkout of the repo.</p>
http://stackoverflow.com/questions/742413/return-code-when-os-kills-your-process/743553#7435531Answer by phjr for Return code when OS kills your processphjr2009-04-13T10:31:56Z2009-04-13T10:31:56Z<p><strong>Exit code is only "valid" when WIFEXITED macro evaluates to true.</strong> See <a href="http://www.manpagez.com/man/2/waitpid/" rel="nofollow">man waitpid(2)</a>.</p>
<p>You can use WIFSIGNALED macro to see if your program has been signaled.</p>
http://stackoverflow.com/questions/742341/difference-between-abstraction-and-encapsulation/743544#7435442Answer by phjr for difference between abstraction and encapsulation?phjr2009-04-13T10:27:51Z2009-04-13T10:27:51Z<p>Another example:</p>
<p>Suppose I created an immutable Rectangle class like this:</p>
<pre><code>class Rectangle {
public:
Rectangle(int width, int height) : width_(width), height_(height) {}
int width() const { return width_; }
int height() const { return height_; }
private:
int width_;
int height_;
}
</code></pre>
<p>Now it's obvious that I've <strong>encapsulated</strong> width and height (access is somehow restricted), but I've not <strong>abstracted</strong> anything (okay, maybe I've ignored where the rectangle is located in the coordinates space, but this is a flaw of the example).</p>
<p><strong>Good abstraction usually implies good encapsulation.</strong></p>
<p>An example of good abstraction is a generic database connection class. Its public interface is database-agnostic, and is very simple, yet allows me to do what I want with the connection. And you see? There's also encapsulation there, because the class must have all the low-level handles and calls inside.</p>
http://stackoverflow.com/questions/692799/realpath-safe/713225#7132250Answer by phjr for RealPath safe?phjr2009-04-03T09:34:40Z2009-04-03T09:34:40Z<p>Better run basename() on $_GET['p']. No directory traversal attacks for sure.</p>
http://stackoverflow.com/questions/475481/how-do-you-send-a-site-through-the-acid-test/477485#4774851Answer by phjr for How do you send a site through the Acid Test?phjr2009-01-25T10:20:06Z2009-01-25T10:20:06Z<p>You probably meant <a href="http://validator.w3.org/" rel="nofollow">http://validator.w3.org/</a> (for HTML) and <a href="http://jigsaw.w3.org/css-validator/" rel="nofollow">http://jigsaw.w3.org/css-validator/</a> (for CSS). You can also validate your feeds at <a href="http://validator.w3.org/feed/" rel="nofollow">http://validator.w3.org/feed/</a>.</p>
<p>And you can check for broken links at <a href="http://validator.w3.org/checklink" rel="nofollow">http://validator.w3.org/checklink</a>.</p>
http://stackoverflow.com/questions/477374/how-can-i-write-an-app-that-doesnt-change-state-in-functional-language/477440#4774402Answer by phjr for How can I write an app that doesn't change state (in functional language)?phjr2009-01-25T09:47:11Z2009-01-25T09:47:11Z<p>Good example how you deal with "mutability". Suppose you implement some data structure, let's say AVL tree, in a functional language. In functions you implement (insert, delete, etc.), as well as internal functions (rotate, etc.) you don't actually mutate data, but <strong>return</strong> mutated data.</p>
<p>The underlying runtime system ensures your program will use memory efficiently (for example, it does copy-on-write and garbage collection).</p>
<p>In parts of the program when you <strong>really</strong> change the world state (I/O, GUI), there are two approaches.</p>
<ul>
<li>pure functional languages, like Haskell, encapsulate such operations in monads (warning: your head might explode when reading about them, but don't worry too much)</li>
<li>other functional languages, like OCaml, permit mutability and side-effects in your programs.</li>
</ul>
http://stackoverflow.com/questions/151945/how-do-i-control-how-emacs-makes-backup-files/467083#4670831Answer by phjr for How do I control how Emacs makes backup files? phjr2009-01-21T21:24:48Z2009-01-21T21:24:48Z<p>You can disable them altogether by</p>
<pre><code>(setq make-backup-files nil)
</code></pre>
http://stackoverflow.com/questions/448448/how-to-get-equivalent-of-vims-texplore-in-emacs0How to get equivalent of Vim's :Texplore in Emacs?phjr2009-01-15T20:59:39Z2009-01-18T19:59:09Z
<p>I know about M-x dire, but would like to customize it. I would like to hit one key (for example F2) and get dire buffer open. When I navigate across the directory hierarchy it shouldn't open new buffers.</p>
<p>And when I finally open the file it also shouldn't open new buffer for it (not strictly necessary, but strongly preferred).</p>
<p>Of course this behavior can be global, i.e. for all dire buffers/invocations.</p>
http://stackoverflow.com/questions/448448/how-to-get-equivalent-of-vims-texplore-in-emacs/455608#4556080Answer by phjr for How to get equivalent of Vim's :Texplore in Emacs?phjr2009-01-18T18:13:15Z2009-01-18T18:40:00Z<p>Here's what I finally used:</p>
<pre><code>(require 'dired)
(global-set-key [(f2)] 'my-dired)
(defun my-dired ()
(interactive)
(dired (file-name-directory (buffer-file-name))))
(defadvice dired-advertised-find-file (around dired-subst-directory activate)
"Replace current buffer if file is a directory."
(interactive)
(let ((orig (current-buffer)) (filename (dired-get-filename :no-error-if-not-filep t)))
ad-do-it
(when (not (eq (current-buffer) orig)) (kill-buffer orig))))
</code></pre>
http://stackoverflow.com/questions/1755834/memory-access-violation-whats-wrong-with-this-seemingly-simple-program/1755910#1755910Comment by phjr on Memory access violation. What's wrong with this seemingly simple program?phjr2009-11-18T13:25:23Z2009-11-18T13:25:23ZThanks, I made my post more accurate - it's about compiler settings (which you can set to be more strict than the standard is).http://stackoverflow.com/questions/1522188/organizing-classes-in-php/1550365#1550365Comment by phjr on Organizing Classes in PHPphjr2009-10-12T08:48:21Z2009-10-12T08:48:21Z@eyze I hope you agree that "Is" is a bag for everything here. If validation is <i>everything</i> you
're doing, then it's ok. But then you shouldn't have any doubts about Math (there's no place for it). If validation isn't everything you're doing, then I'd suggest you to find a better architecture. Could you give an example how do you plan to use Is::Number::Integer::Prime?http://stackoverflow.com/questions/1369873/crash-handler-printing-a-backtrace/1370036#1370036Comment by phjr on Crash handler printing a backtracephjr2009-09-03T16:30:29Z2009-09-03T16:30:29ZThanks, but it's not the point. I can live with a mangled symbol name - but for anonymous namespace I get <i>no</i> symbol name! That's the problem.http://stackoverflow.com/questions/448428/how-to-accomplish-equivalent-of-vims-ctrl-n-in-gnu-emacs/491453#491453Comment by phjr on How to accomplish equivalent of Vim's Ctrl-n in GNU Emacs?phjr2009-01-29T18:18:54Z2009-01-29T18:18:54ZNot a big problem for me. Reliable completion for C++ is very hard.http://stackoverflow.com/questions/448458/how-to-adjust-and-behavior-in-emacs-vim-emulation-indent-dedentComment by phjr on How to adjust >> and << behavior in Emacs (Vim emulation, indent, dedent)?phjr2009-01-16T18:49:51Z2009-01-16T18:49:51Z@J.J. Almost unlimited scriptability. Even now I feel I'm more in control using Emacs.http://stackoverflow.com/questions/448458/how-to-adjust-and-behavior-in-emacs-vim-emulation-indent-dedentComment by phjr on How to adjust >> and << behavior in Emacs (Vim emulation, indent, dedent)?phjr2009-01-15T21:08:50Z2009-01-15T21:08:50Z@J.J. I'm switching from Vim right now. Sorry for basic questions, I just try to retain previous level of productivity or minimize the drop, and hope for enormous gains in the future.http://stackoverflow.com/questions/236125/how-to-convert-not-neccessarily-programatically-between-windows-wchart-and-gcComment by phjr on How to convert (not neccessarily programatically) between Windows' wchar_t and GCC/Linux one?phjr2008-12-30T12:33:53Z2008-12-30T12:33:53Zlitb: it doesn't solve the problem when interfacing with other libraries compiled without this option.http://stackoverflow.com/questions/322938/recommended-way-to-initialize-srand/322961#322961Comment by phjr on Recommended way to initialize srand?phjr2008-11-27T18:36:21Z2008-11-27T18:36:21ZOn Windows you can use rand_s.http://stackoverflow.com/questions/317392/is-forking-in-php-apache-a-good-ideaComment by phjr on Is forking in PHP / apache a good idea?phjr2008-11-25T15:36:35Z2008-11-25T15:36:35ZPlease make it clear in the question title that you mean forking a process. I first thought you want to fork the project.http://stackoverflow.com/questions/290952/how-to-know-in-gcc-when-given-macro-preprocessor-symbol-gets-declaredComment by phjr on How to know (in GCC) when given macro/preprocessor symbol gets declared?phjr2008-11-14T18:42:45Z2008-11-14T18:42:45Z@Greg: print information: such and such just got defined. Would expand to (...). This is in file (...), line (...). Included from (a "backtrace of #includes going back to my .cc file).http://stackoverflow.com/questions/289661/what-can-cause-strange-gcc-error-modet-has-not-been-declared-and-others-in-s/289958#289958Comment by phjr on What can cause strange gcc error "mode_t has not been declared" (and others) in system headers?phjr2008-11-14T18:10:19Z2008-11-14T18:10:19ZFor GCC it's -H. Still investigating...http://stackoverflow.com/questions/289661/what-can-cause-strange-gcc-error-modet-has-not-been-declared-and-others-in-s/289959#289959Comment by phjr on What can cause strange gcc error "mode_t has not been declared" (and others) in system headers?phjr2008-11-14T17:37:29Z2008-11-14T17:37:29ZNo result. Doesn't help.http://stackoverflow.com/questions/289661/what-can-cause-strange-gcc-error-modet-has-not-been-declared-and-others-in-s/289726#289726Comment by phjr on What can cause strange gcc error "mode_t has not been declared" (and others) in system headers?phjr2008-11-14T10:59:36Z2008-11-14T10:59:36ZYes. It makes no difference. That's why it's so weird to me.http://stackoverflow.com/questions/286629/what-is-a-memory-fenceComment by phjr on What is a memory fence?phjr2008-11-13T14:53:53Z2008-11-13T14:53:53ZPlease correct to "What is a memory fence?". Good question BTW.http://stackoverflow.com/questions/284325/how-to-make-child-process-die-after-parent-exits/285134#285134Comment by phjr on How to make child process die after parent exits?phjr2008-11-12T20:47:16Z2008-11-12T20:47:16ZVery nice solution, thanks! The currently accepted one is more generic, but yours is more portable.