User Jay - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T07:32:17Z http://stackoverflow.com/feeds/user/20840 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/440932/reading-command-line-arguments-of-another-process-win32-c-code 4 Reading Command Line Arguments of Another Process (Win32 C code) Jay 2009-01-13T21:46:40Z 2009-10-09T17:50:34Z <p>I need to be able to list the command line arguments (if any) passed to other running processes. I have the PIDs already of the running processes on the system, so basically I need to determine the arguments passed to process with given PID <em>XXX</em>. </p> <p>I'm working on a core piece of a <a href="http://code.google.com/p/psutil/" rel="nofollow">Python module for managing processes</a>. The code is written as a Python extension in C and will be wrapped by a higher level Python library. The goal of this project is to avoid dependency on third party libs such as the pywin32 extensions, or on ugly hacks like calling 'ps' or taskkill on the command line, so I'm looking for a way to do this in C code.</p> <p>I've Googled this around and found some brief suggestions of using <a href="http://msdn.microsoft.com/en-us/library/ms682437%28VS.85%29.aspx" rel="nofollow">CreateRemoteThread()</a> to inject myself into the other process, then run <a href="http://msdn.microsoft.com/en-us/library/ms683156%28VS.85%29.aspx" rel="nofollow">GetCommandLine()</a> but I was hoping someone might have some working code samples and/or better suggestions.</p> <p><strong>UPDATE</strong>: I've found full working demo code and a solution using NtQueryProcessInformation on CodeProject: <a href="http://www.codeproject.com/KB/threads/GetNtProcessInfo.aspx" rel="nofollow">http://www.codeproject.com/KB/threads/GetNtProcessInfo.aspx</a> - It's not ideal since it's "unsupported" to cull the information directly from the NTDLL structures but I'll live with it. Thanks to all for the suggestions. </p> <p><strong>UPDATE 2</strong>: I managed through more Googling to dig up a C version that does not use C++ code, and is a little more direct/concisely pointed toward this problem. See <a href="http://wj32.wordpress.com/2009/01/24/howto-get-the-command-line-of-processes/" rel="nofollow">http://wj32.wordpress.com/2009/01/24/howto-get-the-command-line-of-processes/</a> for details.</p> <p>Thanks!</p> http://stackoverflow.com/questions/458467/how-do-i-find-out-the-path-of-the-file-triggered-by-opening-a-file-with-a-custom/458492#458492 -2 Answer by Jay for How do I find out the path of the file triggered by opening a file with a custom file extension? Jay 2009-01-19T17:50:11Z 2009-09-09T19:33:10Z <p>File extension databases: </p> <ul> <li><a href="http://filext.com/" rel="nofollow">http://filext.com/</a></li> <li><a href="http://www.cybertechhelp.com/fileextensions/" rel="nofollow">http://www.cybertechhelp.com/fileextensions/</a></li> <li><a href="http://extensions.pndesign.cz/" rel="nofollow">http://extensions.pndesign.cz/</a></li> <li>And of course: <a href="http://www.google.com/search?q=file+extension+database" rel="nofollow">http://www.google.com/search?q=file+extension+database</a></li> </ul> <p><strong>EDIT</strong>: removed MSDN link</p> http://stackoverflow.com/questions/185781/finding-the-lcm-of-a-range-of-numbers 2 Finding the LCM of a range of numbers Jay 2008-10-09T03:00:30Z 2009-05-07T11:44:05Z <p>I read an interesting DailyWTF post today, <a href="http://thedailywtf.com/Articles/Out-of-All-the-Possible-Answers.aspx" rel="nofollow">"Out of All The Possible Answers..."</a> and it interested me enough to dig up the original <a href="http://forums.thedailywtf.com/forums/t/10030.aspx" rel="nofollow">forum post</a> where it was submitted. This got me thinking how I would solve this interesting problem - the original question is posed on <a href="http://projecteuler.net/index.php?section=problems&amp;id=5" rel="nofollow">Project Euler</a> as: </p> <blockquote> <p>2520 is the smallest number that can be divided by each of the numbers from 1 to 10 without any remainder.</p> <p>What is the smallest number that is evenly divisible by all of the numbers from 1 to 20?</p> </blockquote> <p>To reform this as a programming question, <strong>how would you create a function that can find the Least Common Multiple for an arbitrary list of numbers?</strong></p> <p>I'm incredibly bad with pure math, despite my interest in programming, but I was able to solve this after a little Googling and some experimenting. I'm curious what other approaches SO users might take. If you're so inclined, post some code below, hopefully along with an explanation. Note that while I'm sure libraries exist to compute the GCD and LCM in various languages, I'm more interested in something that displays the logic more directly than calling a library function :-) </p> <p>I'm most familiar with Python, C, C++, and Perl, but any language you prefer is welcome. Bonus points for explaining the logic for other mathematically-challenged folks out there like myself.</p> <p><strong>EDIT</strong>: After submitting I did find this similar question <a href="http://stackoverflow.com/questions/147515">Least common multiple for 3 or more numbers</a> but it was answered with the same basic code I already figured out and there's no real explanation, so I felt this was different enough to leave open.</p> http://stackoverflow.com/questions/805066/how-to-call-a-parent-classs-method-from-child-class-in-python/805082#805082 2 Answer by Jay for How to call a parent class's method from child class in python? Jay 2009-04-30T01:58:31Z 2009-04-30T02:06:42Z <p>Python also has <a href="http://docs.python.org/library/functions.html" rel="nofollow">super</a> as well: </p> <p><code><strong>super</strong>(type[, object-or-type])</code></p> <blockquote> <p>Return a proxy object that delegates method calls to a parent or sibling class of type. This is useful for accessing inherited methods that have been overridden in a class. The search order is same as that used by getattr() except that the type itself is skipped.</p> </blockquote> <p>Example: </p> <pre><code>class A(object): def foo(self): print "foo" class B(A): def foo(self): super(B, self).foo() myB = B() myB.foo() </code></pre> http://stackoverflow.com/questions/731470/whats-easiest-way-to-get-python-script-output-on-the-web/731756#731756 1 Answer by Jay for What's easiest way to get Python script output on the web? Jay 2009-04-08T20:46:33Z 2009-04-08T20:46:33Z <p>If you want a dead simple way to print data from a Python script to a webpage and update automatically, you can just print from the script. For example, using Apache with the below Python CGI script: </p> <pre><code>#!/usr/bin/python import time import sys import random def write(inline=''): sys.stdout.write(inline) sys.stdout.write('\r\n') sys.stdout.flush() #prints out random digits between 1 and 1000 indefinitely write("Content-type: text/html\r\n") i = 0 while(True): i = i + 1 time.sleep(1) write(str(i) + "&lt;br /&gt;") </code></pre> <p>If I navigate to that in a browser (Firefox, don't know if other browsers might work differently with regards to buffering etc), it prints the digits continually. Mind you, it prints in sequential order so the newer data is at the bottom rather than that top, but it might work depending on what exactly you're looking to do. </p> <p>If this isn't really what you're looking for, the only other way to do this is an automatic refreshing page (either in an iframe, or the whole page) or with javascript to do the data fetching. </p> <p>You can use a meta refresh tag in your iframe or page HTML source, and your CGI can print the new data each time it's refreshed. Alternatively, you can use javascript with an XMLHTTPRequest to read the new data in without a visual page refresh.</p> http://stackoverflow.com/questions/38362/best-version-control-system-for-managing-home-directories/731551#731551 0 Answer by Jay for Best version control system for managing home directories Jay 2009-04-08T19:51:13Z 2009-04-08T19:51:13Z <p>I would suggest looking into <a href="http://joey.kitenet.net/code/etckeeper/" rel="nofollow"><strong>etckeeper</strong></a> if you haven't already. It's designed for versioning configuration files in /etc using a version control system: </p> <blockquote> <p>etckeeper is a collection of tools to let /etc be stored in a git, mercurial, darcs, or bzr repository. It hooks into apt (and other package managers including yum and pacman-g2) to automatically commit changes made to /etc during package upgrades. It tracks file metadata that revison control systems do not normally support, but that is important for /etc, such as the permissions of /etc/shadow. It's quite modular and configurable, while also being simple to use if you understand the basics of working with revision control.</p> </blockquote> <p>Although it's designed for /etc I think it would probably also work well (perhaps with some adaptation) for home directories since the basic needs are the same. </p> http://stackoverflow.com/questions/719237/how-important-is-ticket-bug-format/719580#719580 1 Answer by Jay for How important is ticket/bug format? Jay 2009-04-05T19:59:47Z 2009-04-05T19:59:47Z <p>Ultimately the point of format is just to make sure that people are consistently including enough information to reproduce or debug an issue. If you don't enforce some kind of format, people will use whatever comes to mind. For well-organized people with a good understanding of the software development process, they'll probably include all the relevant info on their own anyway. </p> <p>On the other hand, in many cases you'll get bug reports from across an organization or even direct from users. Or for that matter, someone might just be in a hurry and without some kind of standard format as a guide, you're likely to get bug reports like "Application is not working right" etc. At the end of the day, regardless of foramt, you just need a minimum amount of information necessary to figure out what the exact problem being reported is (where is it, when does it happen, how do you reproduce it) and enable you to debug it.</p> http://stackoverflow.com/questions/714769/how-to-capture-the-result-of-a-system-call-in-a-shell-variable/714826#714826 1 Answer by Jay for How to capture the result of a system call in a shell variable? Jay 2009-04-03T17:03:15Z 2009-04-03T17:03:15Z <p>You can easily get the PID or list of PIDs into a variable using backticks and cut (or awk if preferred) to retrieve only the PID field: </p> <pre><code>[user@host ~]$ ps -e | grep java | cut -d' ' -f1 12812 12870 13008 13042 13060 </code></pre> <p>Note in the above example I have multiple Java processes running hence the multiple values. If you save this into a variable like so: </p> <pre><code>JAVA_PROCS=`ps -e | grep java | cut -d' ' -f1` </code></pre> <p>You can iterate through the processes to kill them if desired: </p> <pre><code>for proc in $JAVA_PROCS; do kill -9 $proc; done </code></pre> <p>Of course, if you're only retrieving one process, then there's no need to iterate and you can just run it as: </p> <pre><code>kill -9 $JAVA_PROCS </code></pre> http://stackoverflow.com/questions/712124/going-nuts-with-executing-pyton-script-via-crontab-on-debian/712180#712180 1 Answer by Jay for Going nuts with executing pyton script via crontab on debian! Jay 2009-04-03T00:47:55Z 2009-04-03T01:17:41Z <p>This works fine for me on my RHES 4 Linux box exactly as shown (NOTE: I removed the 'root' username in the crontab).</p> <p>I suspect there's something wrong with the way you're installing your cron job, or the configuration of cron on your system. How are you installing this? Are you using <code>crontab -e</code> or some other method? Are you able to run any other cron jobs for root successfully?</p> http://stackoverflow.com/questions/208772/process-text-files-ftped-into-a-set-of-directories-in-a-hosted-server/712207#712207 1 Answer by Jay for Process text files ftp'ed into a set of directories in a hosted server Jay 2009-04-03T01:01:51Z 2009-04-03T01:01:51Z <p>If you're looking to stay with your existing FTP server setup then I'd advise using something like inotify or daemonized process to watch the upload directories. If you're OK with moving to a different FTP server, you might take a look at <a href="http://code.google.com/p/pyftpdlib/" rel="nofollow"><strong>pyftpdlib</strong></a> which is a Python FTP server lib. </p> <p>I've been a part of the dev team for pyftpdlib a while and one of more common requests was for a way to "process" files once they've finished uploading. Because of that we created an <code>on_file_received()</code> callback method that's triggered on completion of an upload (See <a href="http://code.google.com/p/pyftpdlib/issues/detail?id=79" rel="nofollow">issue #79</a> on our issue tracker for details). </p> <p>If you're comfortable in Python then it might work out well for you to run pyftpdlib as your FTP server and run your processing code from the callback method. Note that pyftpdlib is asynchronous and not multi-threaded, so your callback method can't be blocking. If you need to run long-running tasks I would recommend a separate Python process or thread be used for the actual processing work.</p> http://stackoverflow.com/questions/321711/virtual-guest-not-bridging-to-the-hosts-vpn-connection-in-vmware-server/709760#709760 1 Answer by Jay for Virtual guest not bridging to the host's VPN connection in VMware Server Jay 2009-04-02T13:38:41Z 2009-04-02T13:38:41Z <p>I don't think you can do this with bridged networking, I've only ever been able to do this using NAT networking in VMWare. I'm not sure exactly what you're wanting to do but if you're just trying to route your traffic through the VPN then NAT should work unless you need static IPs etc. </p> <p>In addition to my own experiences I dug up this thread which seems to indicate the same: </p> <ul> <li><a href="http://communities.vmware.com/thread/112006" rel="nofollow">http://communities.vmware.com/thread/112006</a></li> </ul> http://stackoverflow.com/questions/706813/what-is-the-best-way-to-pass-a-method-with-parameters-to-another-method-in-pyth/707902#707902 2 Answer by Jay for What is the best way to pass a method (with parameters) to another method in python Jay 2009-04-02T00:49:17Z 2009-04-02T00:49:17Z <p>You can used <a href="http://docs.python.org/library/functools.html" rel="nofollow">functools.partial</a> to do this, as <a href="http://stackoverflow.com/questions/706813/what-is-the-best-way-to-pass-a-method-with-parameters-to-another-method-in-pyth/706864#706864">jkp pointed out</a></p> <p>However, functools is new in Python 2.5, so to handle this in the past I used the following code (this code is in the Python docs for functools.partial, in fact).</p> <pre><code># functools is Python 2.5 only, so we create a different partialfn if we are # running a version without functools available try: import functools partialfn = functools.partial except ImportError: def partialfn(func, *args, **keywords): def newfunc(*fargs, **fkeywords): newkeywords = keywords.copy() newkeywords.update(fkeywords) return func(*(args + fargs), **newkeywords) newfunc.func = func newfunc.args = args newfunc.keywords = keywords return newfunc </code></pre> http://stackoverflow.com/questions/626796/how-do-i-find-the-windows-common-application-data-folder-using-python/626927#626927 8 Answer by Jay for How do I find the Windows common application data folder using Python? Jay 2009-03-09T16:12:41Z 2009-03-09T16:22:08Z <p>If you don't want to add a dependency for a third-party module like winpaths, I would recommend using the environment variables already available in Windows: </p> <ul> <li><a href="http://windowsitpro.com/article/articleid/23873/what-environment-variables-are-available-in-windows.html" rel="nofollow"><strong>What environment variables are available in Windows?</strong></a></li> </ul> <p>Specifically you probably want <code>ALLUSERSPROFILE</code> to get the location of the common user profile folder, which is where the Application Data directory resides.</p> <p>e.g.: </p> <pre><code>C:\&gt; python -c "import os; print os.environ['ALLUSERSPROFILE']" C:\Documents and Settings\All Users </code></pre> <p><strong>EDIT</strong>: Looking at the winpaths module, it's using ctypes so if you wanted to just use the relevant part of the code without installing winpath, you can use this (obviously some error checking omitted for brevity).</p> <pre><code>import ctypes from ctypes import wintypes, windll CSIDL_COMMON_APPDATA = 35 _SHGetFolderPath = windll.shell32.SHGetFolderPathW _SHGetFolderPath.argtypes = [wintypes.HWND, ctypes.c_int, wintypes.HANDLE, wintypes.DWORD, wintypes.LPCWSTR] path_buf = wintypes.create_unicode_buffer(wintypes.MAX_PATH) result = _SHGetFolderPath(0, CSIDL_COMMON_APPDATA, 0, 0, path_buf) print path_buf.value </code></pre> <p>Example run: </p> <pre><code>C:\&gt; python get_common_appdata.py C:\Documents and Settings\All Users\Application Data </code></pre> http://stackoverflow.com/questions/615204/replace-text-with-regular-expression/615235#615235 0 Answer by Jay for Replace text with regular expression? Jay 2009-03-05T15:23:53Z 2009-03-05T15:23:53Z <p>If you're on Linux you might find this thread helpful:</p> <ul> <li><a href="http://stackoverflow.com/questions/189190/replace-in-multiple-files-graphical-tool-for-linux/189265#189265">Replace in multiple files - graphical tool for Linux</a> (Regexxer <a href="http://regexxer.sourceforge.net/" rel="nofollow">http://regexxer.sourceforge.net/</a> was the accepted answer)</li> </ul> <p>You could use a command line tool like sed, a scripting language like Python/Perl, or any number of other solutions to do this. If you can give more details as to what you're looking for and what OS it needs to run on that would help in providing a more specific answer.</p> http://stackoverflow.com/questions/592256/fast-way-to-determine-if-a-pid-exists-on-windows 5 Fast way to determine if a PID exists on (Windows)? Jay 2009-02-26T20:19:23Z 2009-03-04T16:25:45Z <p>I realize "fast" is a bit subjective so I'll explain with some context. I'm working on a Python module called <a href="http://code.google.com/p/psutil/" rel="nofollow"><strong>psutil</strong></a> for reading process information in a cross-platform way. One of the functions is a <code>pid_exists(pid)</code> function for determining if a PID is in the current process list.</p> <p>Right now I'm doing this the obvious way, using <a href="http://msdn.microsoft.com/en-us/library/ms682629%28VS.85%29.aspx" rel="nofollow">EnumProcesses()</a> to pull the process list, then interating through the list and looking for the PID. However, some simple benchmarking shows this is dramatically slower than the pid_exists function on UNIX-based platforms (Linux, OS X, FreeBSD) where we're using <code>kill(pid, 0)</code> with a 0 signal to determine if a PID exists. Additional testing shows it's EnumProcesses that's taking up almost all the time.</p> <p>Anyone know a faster way than using EnumProcesses to determine if a PID exists? I tried <a href="http://msdn.microsoft.com/en-us/library/ms684320%28VS.85%29.aspx" rel="nofollow">OpenProcess()</a> and checking for an error opening the nonexistent process, but this turned out to be over 4x slower than iterating through the EnumProcesses list, so that's out as well. Any other (better) suggestions?</p> <p><strong>NOTE</strong>: This is a Python library intended to avoid third-party lib dependencies like pywin32 extensions. I need a solution that is faster than our current code, and that doesn't depend on pywin32 or other modules not present in a standard Python distribution.</p> <p><strong>EDIT</strong>: To clarify - we're well aware that there are race conditions inherent in reading process iformation. We raise exceptions if the process goes away during the course of data collection or we run into other problems. The pid_exists() function isn't intended to replace proper error handling.</p> <p><strong>UPDATE</strong>: Apparently my earlier benchmarks were flawed - I wrote some simple test apps in C and EnumProcesses consistently comes out slower and OpenProcess (in conjunction with GetProcessExitCode in case the PID is valid but the process has stopped) is actually much <em>faster</em> not slower.</p> http://stackoverflow.com/questions/592256/fast-way-to-determine-if-a-pid-exists-on-windows/600217#600217 0 Answer by Jay for Fast way to determine if a PID exists on (Windows)? Jay 2009-03-01T18:18:22Z 2009-03-04T16:16:22Z <p>Turns out that my benchmarks evidently were flawed somehow, as later testing reveals OpenProcess and GetExitCodeProcess are much faster than using EnumProcesses after all. I'm not sure what happened but I did some new tests and verified this is the faster solution: </p> <pre><code>int pid_is_running(DWORD pid) { HANDLE hProcess; DWORD exitCode; //Special case for PID 0 System Idle Process if (pid == 0) { return 1; } //skip testing bogus PIDs if (pid &lt; 0) { return 0; } hProcess = handle_from_pid(pid); if (NULL == hProcess) { //invalid parameter means PID isn't in the system if (GetLastError() == ERROR_INVALID_PARAMETER) { return 0; } //some other error with OpenProcess return -1; } if (GetExitCodeProcess(hProcess, &amp;exitCode)) { CloseHandle(hProcess); return (exitCode == STILL_ACTIVE); } //error in GetExitCodeProcess() CloseHandle(hProcess); return -1; } </code></pre> <p>Note that you do need to use <code>GetExitCodeProcess()</code> because <code>OpenProcess()</code> will succeed on processes that have died recently so you can't assume a valid process handle means the process is running. </p> <p>Also note that <code>OpenProcess()</code> succeeds for PIDs that are within 3 of any valid PID (See <a href="http://blogs.msdn.com/oldnewthing/archive/2008/06/06/8576557.aspx" rel="nofollow">Why does OpenProcess succeed even when I add three to the process ID?</a>)</p> http://stackoverflow.com/questions/599776/how-do-you-deal-with-situations-where-you-cant-use-your-preferred-text-editor/599813#599813 2 Answer by Jay for How do you deal with situations where you can't use your preferred text editor? Jay 2009-03-01T13:23:20Z 2009-03-01T13:23:20Z <p>I work as a support technician, which means I'm frequently working on customer systems remotely. The unfortunate side effect is that I rarely have any choice over what editor I get to use in those situations. Generally speaking there's not a whole lot you can do about it unless the situation is one where it's feasible for you to install a new editor or bring a USB thumb drive or something similar with your editor pre-installed on it. In such a situation, by all means, if you plan to be working for an extended time period, take advantage of the opportunity. You'll work faster and more efficiently and it will be less frustrating.</p> <p>In an environment (e.g. webex/RDC) where you cannot install software or use temporary media, you have two choices: live with whatever editor they have, or copy files back and forth from your system. Typically if I'm doing very minor editing I just suck it up and use whatever editor is available. If I know I'm going to be doing an extensive amount of editing, I find a way to transfer the file I'm working on back and forth. This still stinks, forcing you to interrupt your editing flow with file transfers, but I find my sanity makes it worth not struggling with something like notepad to do real editing or programming.</p> http://stackoverflow.com/questions/598157/cheap-exception-handling-in-python/598168#598168 11 Answer by Jay for Cheap exception handling in Python? Jay 2009-02-28T15:40:15Z 2009-02-28T15:40:15Z <p>You might find this post helpful: <a href="http://paltman.com/2008/jan/18/try-except-performance-in-python-a-simple-test/" rel="nofollow"><strong>Try / Except Performance in Python: A Simple Test</strong></a> where Patrick Altman did some simple testing to see what the performance is in various scenarios pre-conditional checking (specific to dictionary keys in this case) and using only exceptions. Code is provided as well if you want to adapt it to test other conditionals.</p> <p>The conclusions he came to: </p> <blockquote> <p>From these results, I think it is fair to quickly determine a number of conclusions:</p> <ol> <li>If there is a high likelihood that the element doesn't exist, then you are better off checking for it with has_key.</li> <li>If you are not going to do anything with the Exception if it is raised, then you are better off not putting one have the except</li> <li>If it is likely that the element does exist, then there is a very slight advantage to using a try/except block instead of using has_key, however, the advantage is very slight.</li> </ol> </blockquote> http://stackoverflow.com/questions/597348/foss-html-to-pdf-in-python-net-or-command-line/597368#597368 1 Answer by Jay for FOSS HTML to PDF in Python, .Net or command line? Jay 2009-02-28T02:12:59Z 2009-02-28T02:12:59Z <p>The fact that you're asking about C#/.NET makes me guess you're on a Windows platform, so this may not work for you, but I've had decent success using <a href="http://user.it.uu.se/~jan/html2ps.html" rel="nofollow"><strong>html2ps</strong></a> in conjunction with <a href="http://pages.cs.wisc.edu/~ghost/doc/AFPL/6.50/Ps2pdf.htm" rel="nofollow"><strong>ps2pdf</strong></a>: </p> <pre><code>#! /bin/sh TEMPDIR="/tmp" html2ps -u $1 &gt; $TEMPDIR'temp.ps' ps2pdf $TEMPDIR'temp.ps' $2 </code></pre> <p>That does handle CSS (at least all the CSS I've thrown at it so far) though there are some limitations if I remember right with regards to some in-line styles.</p> <p><strong>NOTE</strong>: I think these are both available on Windows via Cygwin, if that's an acceptable solution for you.</p> http://stackoverflow.com/questions/597347/developing-on-a-macbook/597360#597360 1 Answer by Jay for Developing on a MacBook? Jay 2009-02-28T02:05:01Z 2009-02-28T02:05:01Z <p>You don't say what kind of software you're developing and in what environment. I have a macbook and I do some development on it just fine in C/C++, Python, Perl, that kind of stuff. I would recommend maxing out the RAM for a snappier performance especially if you're planning to develop in a heavier environment like Eclipse, or need to run a VM frequently. </p> <p>By far the biggest performance increase I've seen on my first-gen macbook was replacing the hard drive (needed a bigger one anyway). I'd definitely recommend the solid state or a faster optical drive option also if you can spring for it.</p> http://stackoverflow.com/questions/582126/best-way-to-upload-multiple-files-from-a-browser/582153#582153 0 Answer by Jay for Best way to upload multiple files from a browser Jay 2009-02-24T15:19:57Z 2009-02-24T15:19:57Z <p>You can upload multiple files with HTTP forms as well, as Dave already pointed out, but if you're set on using something beyond what HTTP and Javascript offers I would heavily consider Flash. There are even some pre-existing solutions for it such as <a href="http://www.element-it.com/MultiPowUpload.aspx" rel="nofollow"><strong>MultiPowUpload</strong></a> and it offers many of the features you're looking for. It's also easier to obtain progress information using a Flash client than with AJAX calls from Javascript since you have a little more flexibility.</p> http://stackoverflow.com/questions/575817/vim-encryption-how-to-break-it/575886#575886 3 Answer by Jay for Vim encryption: how to break it? Jay 2009-02-22T21:51:39Z 2009-02-22T21:51:39Z <p>Not sure if this may help: </p> <ul> <li><a href="http://axion.physics.ubc.ca/cbw.html" rel="nofollow"><strong>Crypt Breaker's README</strong></a> </li> </ul> <p>Explains how to break a file encrypted with "crypt", might give you a starting point (at least with older versions of vi, the encryption was based on crypt).</p> http://stackoverflow.com/questions/185254/how-can-a-win32-process-get-the-pid-of-its-parent/558251#558251 2 Answer by Jay for How can a Win32 process get the pid of its parent? Jay 2009-02-17T18:58:42Z 2009-02-17T18:58:42Z <p>Just in case anyone else runs across this question and is looking for a code sample, I had to do this recently for a Python library project I'm working on. Here's the test/sample code I came up with: </p> <pre><code>#include &lt;stdio.h&gt; #include &lt;windows.h&gt; #include &lt;tlhelp32.h&gt; int main(int argc, char *argv[]) { int pid = -1; HANDLE h = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0); PROCESSENTRY32 pe = { 0 }; pe.dwSize = sizeof(PROCESSENTRY32); //assume first arg is the PID to get the PPID for, or use own PID if (argc &gt; 1) { pid = atoi(argv[1]); } else { pid = GetCurrentProcessId(); } if( Process32First(h, &amp;pe)) { do { if (pe.th32ProcessID == pid) { printf("PID: %i; PPID: %i\n", pid, pe.th32ParentProcessID); } } while( Process32Next(h, &amp;pe)); } CloseHandle(h); } </code></pre> http://stackoverflow.com/questions/114007/free-supportticket-software/123162#123162 10 Answer by Jay for Free supportticket software Jay 2008-09-23T19:16:11Z 2009-02-16T21:02:15Z <p>I've looked into this quite a bit, and here are some of the best options I found. For reference, my choice was HelpSpot for the overall, but SupportTrio has an excellent offering, and there's a completely free version (limited number of users). </p> <h3>Free Software</h3> <p><a href="http://activecampaign.com/supporttrio/" rel="nofollow">SupportTrio</a> (free or paid versions available)</p> <ul> <li><a href="http://activecampaign.com/supporttrio/demo.php" rel="nofollow">Demo here</a></li> <li>Nice web interface</li> <li>Knowledgebase included</li> <li>direct email to email communication, decent interface, free version available</li> <li>Nice reports available if management reports are desired (see demo)</li> <li>Couple things I didn't like in the interface, e.g. no way to expand all ticket correspondence to read all which can be frustrating.</li> <li>Encoded PHP pages; can't be modified to include or change features if desired</li> <li>Support seems decent enough, with regular releases (check out their forum and you can see the posted releases), but they release updates as individual files that need to be replaced, which isn't optimal.</li> </ul> <p><a href="http://bestpractical.com/rt" rel="nofollow">Request Tracker</a> (a.k.a. RT)</p> <ul> <li>Long standing history as a solid open source project</li> <li>Lots of features and flexibility, doubly so since the source is open. Comprehensive API provides opportunities to modify and extend. </li> <li>Direct mail communication and ticket handling can be a major plus for small orgs.</li> <li>Available as packages for most Linux distributions</li> <li>Documentation is ranges from mediocre to very poor for certain topics, can be difficult to decipher</li> <li>Web interface not very attractive compared to other options, and does not take advantage of dynamic javascript etc. for a smoother webapp experience.</li> </ul> <h3>Paid Software</h3> <p><a href="http://www.userscape.com/products/helpspot/" rel="nofollow">HelpSpot</a></p> <ul> <li>Solid feature set, all in one nice package with good support</li> <li>email communication available</li> <li>Simple web interface, as uncluttered as possible while still maintaining features</li> <li>good reporting tools</li> <li>flexible interface and filters</li> <li>API available for extending and integrating with other systems</li> <li>"Knowledge books" documentation built-in</li> <li>dynamic web interface with good usage of javascript to make it smoother to use </li> <li>encoded pages prevent updating or modifying pages yourself</li> </ul> <p><a href="http://www.kayako.com/solutions/esupport/" rel="nofollow">Kayako eSupport</a></p> <ul> <li><a href="http://kayako.com/esupport.php?page=onlinedemo" rel="nofollow">Demo here</a></li> <li>Very slick interface</li> <li>lots of features, very extensive </li> <li>Windows mobile version, live chat, other similar tools available</li> <li>Uses forum style for posts/replies, which is a pro or con based on your preference ;)</li> <li>pages are encoded to prevent updating/modifying yourself</li> <li>support for this product is reported as being very poor, including users who did not even receive a license after paying for the product - this was enough for us to stay clear of this product. </li> </ul> <p>Hope that helps!</p> http://stackoverflow.com/questions/551711/best-approach-for-storing-forum-threads-and-replies-in-a-database/551745#551745 0 Answer by Jay for Best approach for storing forum threads and replies in a database Jay 2009-02-15T22:39:10Z 2009-02-15T22:44:47Z <p>A simple approach would be to store all forum posts in a single table like this: </p> <pre><code>| id | parent_post | post_content | user | timestamp | </code></pre> <p>Obviously simplified a little since for most forums you also want to store data like the IP address it was posted from, etc. Then to display a thread, all you need to do is </p> <pre><code>SELECT post_content,user [...] FROM posts WHERE parent_post = $id ORDER BY timestamp; </code></pre> <p>This is pseudocode/simplified but you get the idea. </p> <p><strong>EDIT</strong>: I'm assuming you're talking about a standard forum where it's generally one main post and other posts are all "children" of the main post. If you're wanting to design this to allow nested replies like a threaded usenet/email conversation then obviously I wouldn't take this approach!</p> http://stackoverflow.com/questions/551527/when-do-you-blow-the-scope-creep-whistle/551536#551536 1 Answer by Jay for When do you blow the scope creep whistle? Jay 2009-02-15T20:32:53Z 2009-02-15T20:32:53Z <p>I'd say when it's going to impact the schedule/release date. If that happens, it's definitely time to blow the whistle. If either the scope creep is of sufficient magnitude, or if there are enough cumulative changes that it's impacting your ability to ship on time, then you should push back.</p> http://stackoverflow.com/questions/551208/remote-access-windows-vista-to-mac-osx/551217#551217 4 Answer by Jay for Remote access Windows Vista to Mac OSX? Jay 2009-02-15T17:06:24Z 2009-02-15T17:06:24Z <p><a href="http://macapper.com/2007/03/19/vnc-remote-desktop-for-free/" rel="nofollow"><strong>VNC for OS X</strong></a></p> <p><em>NOTE</em>: VNC server is already included with OS X 10.4 and later. See <a href="http://www.wikihow.com/Setup-VNC-on-Mac-OS-X" rel="nofollow">http://www.wikihow.com/Setup-VNC-on-Mac-OS-X</a>: </p> <ol> <li>Open your System Preferences from your blue apple menu.</li> <li>Click the Sharing tab under 'Internet and Network'.</li> <li>Click Start to fire up the Remote Desktop component.</li> <li>Click Access Privileges to open the more advanced options.</li> <li>Check on VNC viewers may control screen with password and define a password.</li> <li>You can close the System Preferences. You're done!</li> </ol> http://stackoverflow.com/questions/550009/parsing-from-addresses-from-email-text/550068#550068 2 Answer by Jay for Parsing "From" addresses from email text Jay 2009-02-15T00:37:27Z 2009-02-15T00:37:27Z <pre><code>mailsrch = re.compile(r'[\w\-][\w\-\.]+@[\w\-][\w\-\.]+[a-zA-Z]{1,4}') </code></pre> <p>Expression breakdown:</p> <p><code>[\w-]</code>: any word character (alphanumeric, plus underscore) or a dash</p> <p><code>[\w-.]+</code>: any word character, a dash, or a period/dot, one or more times</p> <p><code>@</code>: literal @ symbol</p> <p><code>[\w-][\w-.]+</code>: any word char or dash, followed by any word char, dash, or period one or more times.</p> <p><code>[a-zA-Z]{1,4}</code>: any alphabetic character 1-4 times.</p> <p>To make this match only lines starting with <code>From:</code>, and wrapped in &lt; and &gt; symbols: </p> <pre><code>import re foundemail = [] mailsrch = re.compile(r'^From:\s+.*&lt;([\w\-][\w\-\.]+@[\w\-][\w\-\.]+[a-zA-Z]{1,4})&gt;', re.I | re.M) foundemail.extend(mailsrch.findall(open('text.txt').read())) print foundemail </code></pre> http://stackoverflow.com/questions/549391/python-3-0-smtplib/549643#549643 3 Answer by Jay for Python 3.0 smtplib Jay 2009-02-14T19:29:28Z 2009-02-14T19:29:28Z <p><strong>UPDATE</strong>: just noticed from a look at the bug tracker there's a suggested fix also: </p> <p>Edit smtplib.py and replace the existing <code>encode_plain()</code> definition with this: </p> <pre><code>def encode_plain(user, password): s = "\0%s\0%s" % (user, password) return encode_base64(s.encode('ascii'), eol='') </code></pre> <p>Tested here on my installation and it works properly. </p> http://stackoverflow.com/questions/549394/whats-a-good-book-for-learning-ruby/549426#549426 4 Answer by Jay for What's a good book for learning Ruby? Jay 2009-02-14T17:42:15Z 2009-02-14T17:51:31Z <p>I've heard a lot of good things about <a href="http://poignantguide.net/ruby/" rel="nofollow"><strong>Why's (Poignant) Guide To Ruby</strong></a> also. </p> <p><em>Note: probably not the best choice if you can only pick one book, but certainly as a supplement to one or more of the other books mentioned in other answers :-)</em></p> http://stackoverflow.com/questions/798379/removing-only-my-files-in-unix/798404#798404 Comment by Jay on Removing only my files in Unix Jay 2009-04-28T15:19:37Z 2009-04-28T15:19:37Z ah, good to know. In that case nevermind :-) http://stackoverflow.com/questions/798379/removing-only-my-files-in-unix/798404#798404 Comment by Jay on Removing only my files in Unix Jay 2009-04-28T15:00:54Z 2009-04-28T15:00:54Z This is the most concise, but note that you have to put the directory in the command before the -user option, e.g. 'find . -user $(whoami) -delete' http://stackoverflow.com/questions/173392/what-is-the-best-installation-tool-for-java/207537#207537 Comment by Jay on What is the best installation tool for java? Jay 2009-04-27T20:49:05Z 2009-04-27T20:49:05Z @Daniel - good to know. We're still using it at work in several products but it's always preferable to use tools in active developent of course! http://stackoverflow.com/questions/353258/are-object-oriented-databases-still-in-use/353281#353281 Comment by Jay on Are Object oriented databases still in use? Jay 2009-04-13T02:39:48Z 2009-04-13T02:39:48Z We don't really do any parsing of XML ourselves, we use the 'ptxml' utility from Versant to do export/import of FastObjects databases in XML format, but that's about it. http://stackoverflow.com/questions/731470/whats-easiest-way-to-get-python-script-output-on-the-web/731756#731756 Comment by Jay on What's easiest way to get Python script output on the web? Jay 2009-04-09T01:26:16Z 2009-04-09T01:26:16Z All good points, it really just depends on the details of what the OP was looking for. My guess is a dash of javascript would be the better solution. http://stackoverflow.com/questions/714769/how-to-capture-the-result-of-a-system-call-in-a-shell-variable/714827#714827 Comment by Jay on How to capture the result of a system call in a shell variable? Jay 2009-04-03T17:11:14Z 2009-04-03T17:11:14Z I almost posted the same thing, but ps -e doesn't list cmd arguments (at least on my box) so there's no danger of accidentally capturing the 'grep java' command itself in the grep output. http://stackoverflow.com/questions/706813/what-is-the-best-way-to-pass-a-method-with-parameters-to-another-method-in-pyth/706864#706864 Comment by Jay on What is the best way to pass a method (with parameters) to another method in python Jay 2009-04-02T00:51:25Z 2009-04-02T00:51:25Z I just posted an answer showing how to create a roughly equivalent function to functools.partial for use with Python versions prior to 2.5, in conjunction with @jkp's answer it should get the job done. http://stackoverflow.com/questions/630285/programmatically-getting-per-process-network-statistics-on-windows Comment by Jay on Programmatically getting per-process network statistics on Windows? Jay 2009-03-10T14:34:41Z 2009-03-10T14:34:41Z From the answers so far, it looks like people think you're looking for a utility to do this with. Are you looking for a tool, or looking to program this yourself in your own app? I suggest clarifying, and letting us know what programming environment you're using if appropriate, etc. http://stackoverflow.com/questions/626796/how-do-i-find-the-windows-common-application-data-folder-using-python/626927#626927 Comment by Jay on How do I find the Windows common application data folder using Python? Jay 2009-03-09T17:11:05Z 2009-03-09T17:11:05Z @Out Into Space - it does at least on the Italian version of windows, not sure about other non-English versions. http://stackoverflow.com/questions/615204/replace-text-with-regular-expression Comment by Jay on Replace text with regular expression? Jay 2009-03-05T15:20:05Z 2009-03-05T15:20:05Z What platform are you on? there are various solutions but it rather depends on which OS it needs to run on as to what's available. http://stackoverflow.com/questions/592256/fast-way-to-determine-if-a-pid-exists-on-windows/609020#609020 Comment by Jay on Fast way to determine if a PID exists on (Windows)? Jay 2009-03-04T16:15:00Z 2009-03-04T16:15:00Z We don't want to wait in this case (other function calls will detect if the process has closed itself and raise an exception to Python). But, you're right about closing the process handles...our &quot;real&quot; code does close the handles but I forgot to do that in the sample I posted. http://stackoverflow.com/questions/592256/fast-way-to-determine-if-a-pid-exists-on-windows/592788#592788 Comment by Jay on Fast way to determine if a PID exists on (Windows)? Jay 2009-03-01T18:23:49Z 2009-03-01T18:23:49Z Turns out despite my earlier testing this is the better way to go after all. See my answer for details if interested. http://stackoverflow.com/questions/592256/fast-way-to-determine-if-a-pid-exists-on-windows/592573#592573 Comment by Jay on Fast way to determine if a PID exists on (Windows)? Jay 2009-02-27T12:51:17Z 2009-02-27T12:51:17Z Mainly it's just curiosity and a desire to see our performance be on par across the board. It's <i>much</i> slower on Windows than all other platforms, and I want to make sure I'm doing the best I can at least. Plus, it seems much less elegant this way than sending a 0 signal test as on UNIX. http://stackoverflow.com/questions/592256/fast-way-to-determine-if-a-pid-exists-on-windows/592449#592449 Comment by Jay on Fast way to determine if a PID exists on (Windows)? Jay 2009-02-26T21:29:10Z 2009-02-26T21:29:10Z Yes, there's an inherent race condition in any ps-like application, including our library. However, this function does still have valid use cases. Note that we're <i>also</i> raising exceptions if at any point during the data collection process fails because the process has disappeared. http://stackoverflow.com/questions/551208/remote-access-windows-vista-to-mac-osx/551217#551217 Comment by Jay on Remote access Windows Vista to Mac OSX? Jay 2009-02-24T15:13:27Z 2009-02-24T15:13:27Z @schooner - I don't use VNC much and I still run XP, so I am not sure if there are better options but I used to always use TightVNC - <a href="http://www.tightvnc.com/" rel="nofollow">tightvnc.com</a>