User Chris AtLee - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T21:19:08Z http://stackoverflow.com/feeds/user/4558 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1711795/linux-shell-how-to-read-command-argument-from-a-file/1711825#1711825 1 Answer by Chris AtLee for linux shell: How to read command argument from a file? Chris AtLee 2009-11-10T22:53:16Z 2009-11-10T22:53:16Z <p><code>kill -9 $(cat pid)</code> or <code>cat pid | xargs kill -9</code> will both work</p> http://stackoverflow.com/questions/1685417/mysql-orderby-question/1685465#1685465 1 Answer by Chris AtLee for mysql order_by question Chris AtLee 2009-11-06T04:44:29Z 2009-11-06T04:44:29Z <p>You might be able to do something like this:</p> <pre><code>select * from articles where article_id in(98,97,96,99) order by article_id == 98 desc, article_id == 97 desc, article_id == 96 desc, article_id == 99 desc; </code></pre> http://stackoverflow.com/questions/1685330/why-we-should-perfer-to-store-the-serialized-data-not-the-raw-code-to-db/1685445#1685445 2 Answer by Chris AtLee for Why we should perfer to store the serialized data not the raw code to DB? Chris AtLee 2009-11-06T04:37:10Z 2009-11-06T04:37:10Z <p>I've preferred using a standard serialization format like JSON for storing this kind of data in the database. It makes it possible for consumers of the data to be written in other languages than python, it's basically human readable, and it's more easily query-able with SQL than pickled objects.</p> http://stackoverflow.com/questions/1685389/possible-to-use-more-than-one-argument-on-getitem/1685412#1685412 8 Answer by Chris AtLee for Possible to use more than one argument on __getitem__? Chris AtLee 2009-11-06T04:27:31Z 2009-11-06T04:27:31Z <p><code>__getitem__</code> only accepts one argument (other than self), so you get passed a tuple.</p> <p>You can do this:</p> <pre><code>class matrix: def __getitem__(self, pos): x,y = pos return "fetching %s, %s" % (x, y) m = matrix() print m[1,2] </code></pre> <p>outputs</p> <pre><code>fetching 1, 2 </code></pre> <p>See <a href="http://docs.python.org/reference/datamodel.html#object.%5F%5Fgetitem%5F%5F" rel="nofollow">http://docs.python.org/reference/datamodel.html#object.<strong>getitem</strong></a> for more information</p> http://stackoverflow.com/questions/1685221/accurately-measure-time-python-function-takes/1685267#1685267 2 Answer by Chris AtLee for accurately measure time python function takes Chris AtLee 2009-11-06T03:37:25Z 2009-11-06T03:37:25Z <p>The documentation also mentions that time.clock() and time.time() have different resolution depending on platform. On Unix, time.clock() measures CPU time as opposed to wall clock time.</p> <p>timeit also disables garbage collection when running the tests, which is probably not what you want for production code.</p> <p>I find that time.time() suffices for most purposes.</p> http://stackoverflow.com/questions/1684173/uploading-to-the-cheeseshop-different-versions-of-a-package-for-different-version/1684399#1684399 3 Answer by Chris AtLee for Uploading to the cheeseshop different versions of a package for different versions of Python Chris AtLee 2009-11-05T23:31:30Z 2009-11-05T23:31:30Z <pre><code>python2.4 setup.py bdist_egg upload python2.5 setup.py bdist_egg upload python2.6 setup.py bdist_egg upload python3.1 setup.py bdist_egg upload </code></pre> http://stackoverflow.com/questions/1667996/is-it-possible-to-have-a-php-script-authenticate-users-with-their-linux-user-info/1668067#1668067 4 Answer by Chris AtLee for Is it possible to have a PHP script authenticate users with their Linux user info? Chris AtLee 2009-11-03T15:32:18Z 2009-11-03T15:32:18Z <p>To access Linux's authentication system directly, you could look at using the PAM module:</p> <p><a href="http://pecl.php.net/package/PAM" rel="nofollow">http://pecl.php.net/package/PAM</a></p> <p>According to the docs, you need to configure pam to allow php to access it. After that, you can call the pam_auth function to validate a username / password combination:</p> <pre><code>if (pam_auth($username, $password)) { // SUCCESS!!! } else { // FAILURE :( } </code></pre> http://stackoverflow.com/questions/1667340/version-control-choices-choices-choices/1667409#1667409 0 Answer by Chris AtLee for Version control; choices, choices, choices! Chris AtLee 2009-11-03T13:43:26Z 2009-11-03T13:43:26Z <p>How you set things up will depend a little bit on which source control software you choose.</p> <p>I would set up a central repository on an internal server. This is required for svn, and gives you a canonical location to pull changes from if you're using git or hg.</p> <p>Developers can checkout / clone the repository to their local machines and commit / push changes back. I would suggest using branches to distinguish between production code, and development code.</p> <p>To deploy to the web site, you'd have a process that checks out from the central repository, updates to the production branch or tag, and then copies the files to the live server.</p> <p>The exact details depend a lot on which version control system you use.</p> http://stackoverflow.com/questions/699570/python-testing-for-unicode-and-converting-to-time/699631#699631 1 Answer by Chris AtLee for Python: Testing for unicode, and converting to time() Chris AtLee 2009-03-31T00:50:34Z 2009-03-31T00:50:34Z <p><code>datetime.combine</code> is complaining because it expects the second argument to be a <code>datetime.time</code> instance, not a string (or unicode string).</p> <p>There are a few ways to convert your string to a <code>datetime.time</code> instance. One way would be to use <code>datetime.strptime</code>:</p> <pre><code>t = datetime.strptime(self.start, "%H:%M:%S").time() start = datetime.combine(self.job_record.date, t) </code></pre> http://stackoverflow.com/questions/687059/risk-of-exploits-backwards-into-outbound-tcp-connections/687106#687106 3 Answer by Chris AtLee for Risk of exploits "backwards" into outbound tcp connections. Chris AtLee 2009-03-26T18:55:54Z 2009-03-26T18:55:54Z <p>It is straightforward for an attacker to sniff the network traffic to your server if they have access to the machine or network you are connecting to. This could allow him to reverse engineer your protocol, and then either try and inject malicious data into the data going back to your server, or replace the client side application altogether.</p> <p>Since it sounds like you can't trust the client side application, it doesn't matter who is initiating the connection, once it's up, you have a two-way communication channel. The best thing to do in this case is to validate all the data coming from the client.</p> <p>If you can trust the client, but not the network, then adding some encryption to your network protocol will help.</p> http://stackoverflow.com/questions/687014/removing-created-temp-files-in-unexpected-bash-exit/687052#687052 8 Answer by Chris AtLee for Removing created temp files in unexpected bash exit Chris AtLee 2009-03-26T18:42:28Z 2009-03-26T18:42:28Z <p>I usually create a directory in which to place all my temporary files, and then immediately after, create an EXIT handler to clean up this directory when the script exits.</p> <pre><code>TMPDIR=`mktemp -d` trap "rm -rf $TMPDIR" EXIT </code></pre> <p>If you put all your temporary files under <code>$TMPDIR</code>, then they will all be deleted when your script exits in most circumstances. Killing a process with SIGKILL (kill -9) kills the process right away though, so your EXIT handler won't run in that case.</p> http://stackoverflow.com/questions/682799/python-os-system-limited-length/682815#682815 2 Answer by Chris AtLee for Python os.system() limited length Chris AtLee 2009-03-25T18:13:55Z 2009-03-25T18:13:55Z <p>Make sure when you're using '\' in your strings that they're being properly escaped.</p> <p>Python uses the '\' as the escape character, so the string <code>"..\folder\filename"</code> evaluates to <code>"..folderfilename"</code> since an escaped f is still an f.</p> <p>You probably want to use</p> <pre><code>r"..\folder\filename" </code></pre> <p>or </p> <pre><code>"..\\folder\\filename" </code></pre> http://stackoverflow.com/questions/681688/how-can-i-disable-demand-paging-for-one-of-my-userspace-programs/681822#681822 1 Answer by Chris AtLee for How can I disable "demand paging" for one of my userspace programs ? Chris AtLee 2009-03-25T14:28:31Z 2009-03-25T14:28:31Z <p>If you have the ability to modify the application, you could use the <code>mlock()</code> / <code>mlockall()</code> system calls to ensure that your memory doesn't get paged out:</p> <pre><code>#include &lt;sys/mman.h&gt; mlockall(MCL_FUTURE); </code></pre> <p>This will prevent all memory currently allocated, and any future memory that is allocated to this process from being swapped out. You can use the <code>mlock()</code> system call to get finer control over which parts of memory are locked.</p> http://stackoverflow.com/questions/681518/c-enum-not-properly-recognized-by-compiler/681585#681585 0 Answer by Chris AtLee for C++ enum not properly recognized by compiler Chris AtLee 2009-03-25T13:26:00Z 2009-03-25T13:26:00Z <p>Either of these two lines work for me:</p> <pre><code>X obj(X::A); X obj2 = X(X::A); </code></pre> <p>As Neil Butterworth points out, <code>X(X::A)</code> is being treated as a function declaration. If you really want an anonymous object, <code>(X)(X::A)</code> will construct an X object and immediately delete it.</p> http://stackoverflow.com/questions/679013/get-vs-post-best-practices/679032#679032 14 Answer by Chris AtLee for GET vs. POST Best Practices Chris AtLee 2009-03-24T20:03:50Z 2009-03-24T20:11:58Z <p>In general it's not a good idea to have a GET request that modifies the system state somehow, like deleting an item.</p> <p>You could have your form look like this:</p> <pre><code>&lt;form action='item.php' method='POST' id='form'&gt; &lt;input type='hidden' name='action' value='delete' /&gt; &lt;input type='hidden' name='id' value='{item_id}' /&gt; &lt;a href="" onclick="document.getElementById('form').submit(); return false;"&gt;Delete item&lt;/a&gt; &lt;/form&gt; </code></pre> http://stackoverflow.com/questions/678944/how-do-i-create-a-tcp-server-that-will-accept-only-one-connection-at-a-time/678971#678971 3 Answer by Chris AtLee for How do I create a TCP server that will accept only one connection at a time? Chris AtLee 2009-03-24T19:48:22Z 2009-03-24T19:48:22Z <p>You could close your original socket that's listening for connections after accepting the first connection. I don't know if the socket class you're using will allow you to do that though.</p> http://stackoverflow.com/questions/677312/in-bash-how-to-make-control-delete-mean-kill-word/677438#677438 4 Answer by Chris AtLee for In bash, how to make control-delete mean kill-word? Chris AtLee 2009-03-24T13:39:04Z 2009-03-24T16:48:07Z <p>On my machine, pressing Ctrl-V, Ctrl-Delete outputs this:</p> <pre><code>^[[3;5~ </code></pre> <p>The <code>^[</code> escape character can be replaced with \e, so you can then use bind like this for bash (in your <code>~/.bashrc</code> for example):</p> <pre><code>bind '"\e[3;5~":kill-word' </code></pre> <p>Or, you can add the following to your <code>~/.inputrc</code> so Ctrl-Delete does kill-word in any program that uses readline:</p> <pre><code>"\e[3;5~": kill-word </code></pre> <p>This will bind only the Ctrl-Delete key, you don't have to worry about what will happen if you need to type 5~.</p> http://stackoverflow.com/questions/677986/vim-copy-selection-to-os-x-clipboard/678011#678011 4 Answer by Chris AtLee for vim: copy selection to OS X clipboard Chris AtLee 2009-03-24T15:45:45Z 2009-03-24T15:45:45Z <p>Depending on which version of vim I use, I'm able to use the + register to access the clipboard.</p> <p><a href="http://vim.wikia.com/wiki/Mac%5FOS%5FX%5Fclipboard%5Fsharing" rel="nofollow">http://vim.wikia.com/wiki/Mac_OS_X_clipboard_sharing</a> may have some ideas that work for you as well.</p> http://stackoverflow.com/questions/677811/python-and-mysql-is-there-an-alternative-to-mysqldb/677870#677870 2 Answer by Chris AtLee for Python and MySQL: is there an alternative to MySQLdb? Chris AtLee 2009-03-24T15:19:39Z 2009-03-24T15:19:39Z <p>You can find pre-built binary packages for MySQLdb and its dependencies for most operating systems.</p> <p><a href="http://sourceforge.net/project/showfiles.php?group_id=22307&amp;package_id=15775" rel="nofollow">http://sourceforge.net/project/showfiles.php?group_id=22307&amp;package_id=15775</a></p> <p>What platform are you running on?</p> http://stackoverflow.com/questions/676976/mysql-error/677161#677161 0 Answer by Chris AtLee for MYSQL ERROR Chris AtLee 2009-03-24T12:26:48Z 2009-03-24T12:26:48Z <p>As aknock says, you are missing a ' before $tags.</p> <p>However, you really need to be using <code>mysql_escape_string</code> to protect against <a href="http://en.wikipedia.org/wiki/SQL%5Finjection" rel="nofollow">SQL injection</a> attacks. Using <code>mysql_escape_string</code> for your SQL query parameters is a good habit to get into.</p> <p>Using a DB wrapper like <a href="http://pear.php.net/package/DB" rel="nofollow">PEAR</a> can make escaping parameters much less painful. Your code above could be written like:</p> <pre><code>$insertQuery = "INSERT INTO blog_articles \ (`title`, `tags`, `category`, `blog`, `author`, `date`) \ VALUES (?, ?, ?, ?, ?, ?)"; $data = array($title, $tags, $category, $blog, $author, $date); if ($result = $connector-&gt;query($insertQuery, $data)) { // It worked, give confirmation echo '&lt;center&gt;&lt;b&gt;Article added to the database&lt;/b&gt;&lt;/center&gt;&lt;br&gt;'; }else{ // It hasn't worked so stop. Better error handling code would be good here! die (mysql_error()); } </code></pre> <p>(assuming <code>$connector</code> is a PEAR DB object)</p> <p>Explicitly giving the names and order of the columns that you're inserting makes your code much more maintainable and readable. If you change the database schema later, you will be protected from inserting values into the wrong column, or into columns that don't exist any more.</p> http://stackoverflow.com/questions/676485/are-there-any-build-in-cross-thread-events-in-python/677120#677120 4 Answer by Chris AtLee for Are there any build-in cross-thread events in python? Chris AtLee 2009-03-24T12:11:51Z 2009-03-24T12:11:51Z <p>The <a href="http://docs.python.org/library/queue.html" rel="nofollow">Queue</a> module is python is well suited to what you're describing.</p> <p>You could have one queue set up that is shared between all your threads. The threads that handle the network events can use queue.put to post events onto the queue. The logic thread would use queue.get to retrieve events from the queue.</p> <pre><code>import Queue # maxsize of 0 means that we can put an unlimited number of events # on the queue q = Queue.queue(maxsize=0) def network_thread(): while True: e = get_network_event() q.put(e) def logic_thread(): while True: # This will wait until there are events to process e = q.get() process_event(e) </code></pre> http://stackoverflow.com/questions/599027/calculate-size-of-files-using-basic-linux-commands/599163#599163 3 Answer by Chris AtLee for Calculate size of files using basic linux commands Chris AtLee 2009-03-01T03:00:12Z 2009-03-01T03:00:12Z <p>With zsh, you can use extended globbing to do:</p> <p>du -c **/*.undo</p> http://stackoverflow.com/questions/124742/max-length-of-send-data-param-on-xmlhttprequest-post/124771#124771 1 Answer by Chris AtLee for Max length of send() data param on XMLHttpRequest Post Chris AtLee 2008-09-24T00:44:47Z 2008-09-24T00:44:47Z <p>According to the <a href="http://www.xmlrpc.com/spec" rel="nofollow">XMLRPC spec</a>, the only real limits are on the size of integers and doubles.</p> http://stackoverflow.com/questions/68477/send-file-using-post-from-a-python-script/75186#75186 5 Answer by Chris AtLee for Send file using POST from a Python script Chris AtLee 2008-09-16T18:05:01Z 2008-09-16T18:05:01Z <p>Blatant self-promotion:</p> <p>check out my <a href="http://atlee.ca/software/poster/" rel="nofollow">poster</a> module for python. It handles the multipart/form-data encoding, as well as supporting streaming uploads (so you don't have to load the entire file into memory before submitting the HTTP POST request).</p> http://stackoverflow.com/questions/74790/is-there-a-way-for-my-binary-to-react-to-some-global-hotkeys-in-linux/75025#75025 0 Answer by Chris AtLee for is there a way for my binary to react to some global hotkeys in linux ? Chris AtLee 2008-09-16T17:50:11Z 2008-09-16T17:50:11Z <p>One way to do it is to have your application listen on a certain port, or socket file, for incoming requests.</p> <p>Then you can write a small client application that connects to that port or socket file and sends commands to the running application.</p> <p>Then you can configure your window manager to bind certain key combinations to launch your small client app.</p> http://stackoverflow.com/questions/74844/bash-or-ksh/74992#74992 0 Answer by Chris AtLee for Bash or Ksh ? Chris AtLee 2008-09-16T17:46:34Z 2008-09-16T17:46:34Z <p>I don't have experience with ksh, but I have used both bash and zsh. I prefer zsh over bash because of its support for very powerful file globbing, variable expansion modifiers, and faster tab completion.</p> <p>Here's a quick intro: <a href="http://friedcpu.wordpress.com/2007/07/24/zsh-the-last-shell-youll-ever-need/" rel="nofollow">http://friedcpu.wordpress.com/2007/07/24/zsh-the-last-shell-youll-ever-need/</a></p> http://stackoverflow.com/questions/74626/how-do-you-force-a-cifs-connection-to-unmount/74695#74695 0 Answer by Chris AtLee for How do you force a CIFS connection to unmount Chris AtLee 2008-09-16T17:15:31Z 2008-09-16T17:15:31Z <p>There's a -f option to umount that you can try:</p> <pre><code>umount -f /mnt/fileshare </code></pre> <p>Are you specifying the '-t cifs' option to mount? Also make sure you're not specifying the 'hard' option to mount.</p> <p>You may also want to consider <a href="http://www.ricardis.tudelft.nl/~vincent/fusesmb/" rel="nofollow">fusesmb</a>, since the filesystem will be running in userspace you can kill it just like any other process.</p> http://stackoverflow.com/questions/74443/managing-authorizedkeys-on-a-large-number-of-hosts/74557#74557 1 Answer by Chris AtLee for Managing authorized_keys on a large number of hosts. Chris AtLee 2008-09-16T17:00:50Z 2008-09-16T17:00:50Z <p>I'd checkout the <a href="http://web.monkeysphere.info/" rel="nofollow">Monkeysphere</a> project. It uses OpenPGP's web of trust concepts to manage ssh's authorized_keys and known_hosts files, without requiring changes to the ssh client or server.</p> http://stackoverflow.com/questions/74430/random-in-python-2-5-not-working/74459#74459 0 Answer by Chris AtLee for Random in python 2.5 not working? Chris AtLee 2008-09-16T16:52:11Z 2008-09-16T16:52:11Z <p>Can you post an example of what you're trying to do? It's not clear from your question what the actual problem is.</p> <p>Here's an example of how to use the random module:</p> <pre><code>import random print random.randint(0,10) </code></pre> http://stackoverflow.com/questions/70577/best-online-resource-to-learn-python/74436#74436 0 Answer by Chris AtLee for Best online resource to learn Python? Chris AtLee 2008-09-16T16:49:53Z 2008-09-16T16:49:53Z <p>The <a href="http://docs.python.org/tut/tut.html" rel="nofollow">Python tutorial</a> is actually pretty good.</p> <p>There's also a <a href="http://showmedo.com/videos/python" rel="nofollow">video series on showmedo</a> about python.</p> <p>Between those two resources, you should have more than enough to learn the basics!</p> http://stackoverflow.com/questions/1708560/record-duplication-in-c Comment by Chris AtLee on record duplication in c++ Chris AtLee 2009-11-10T14:58:48Z 2009-11-10T14:58:48Z we're going to need more information to answer this. how are your records stored? how are you editing them? http://stackoverflow.com/questions/1684173/uploading-to-the-cheeseshop-different-versions-of-a-package-for-different-version/1684399#1684399 Comment by Chris AtLee on Uploading to the cheeseshop different versions of a package for different versions of Python Chris AtLee 2009-11-06T13:22:31Z 2009-11-06T13:22:31Z Yeah, it's fine to have different versions; several projects do this including, one of mine: <a href="http://pypi.python.org/pypi/poster/" rel="nofollow">pypi.python.org/pypi/poster</a> http://stackoverflow.com/questions/1667880/is-there-a-command-line-way-to-show-the-outward-facing-ip-address-for-my-machine/1667908#1667908 Comment by Chris AtLee on Is there a command line way to show the outward-facing IP address for my machine? Chris AtLee 2009-11-03T15:19:50Z 2009-11-03T15:19:50Z there's no internal way because your machine has no way of knowing what's between it and the internet. http://stackoverflow.com/questions/1667323/gethostbyname-problem Comment by Chris AtLee on gethostbyname problem Chris AtLee 2009-11-03T13:50:48Z 2009-11-03T13:50:48Z stupid question - what does 'm/c' mean? http://stackoverflow.com/questions/681688/how-can-i-disable-demand-paging-for-one-of-my-userspace-programs/681822#681822 Comment by Chris AtLee on How can I disable "demand paging" for one of my userspace programs ? Chris AtLee 2009-03-25T17:04:05Z 2009-03-25T17:04:05Z In that case, you can disable your swap device altogether :) I'm not aware of a way to do the equivalent of mlockall to another process. You could try and hack the executable to insert a call to mlockall as the very first thing to do when the application starts. http://stackoverflow.com/questions/676485/are-there-any-build-in-cross-thread-events-in-python/677120#677120 Comment by Chris AtLee on Are there any build-in cross-thread events in python? Chris AtLee 2009-03-24T12:46:43Z 2009-03-24T12:46:43Z Yes. You can put any python object you want onto the queue, so a tuple or list containing your event, function and arguments could be added, or a dictionary, or a class that you've written. http://stackoverflow.com/questions/676485/are-there-any-build-in-cross-thread-events-in-python/677120#677120 Comment by Chris AtLee on Are there any build-in cross-thread events in python? Chris AtLee 2009-03-24T12:35:47Z 2009-03-24T12:35:47Z In Python, functions are objects like everything else, and so can be passed around just like other objects. So you could also attach a function to be called with the event, like q.put((e, PostConnectionStatus)). Your logic thread could then do &quot;e, func = q.get()&quot;. Does this help? http://stackoverflow.com/questions/677143/which-one-is-a-more-reliable-matching-scheme-eregi-or-stripos/677153#677153 Comment by Chris AtLee on Which one is a more reliable matching scheme, EREGI or STRIPOS? Chris AtLee 2009-03-24T12:29:47Z 2009-03-24T12:29:47Z If you just need to do a simple substring match, then stripos or strpos are probably best. If you need to match on something more complicated, like matching a pattern of characters, then regular expressions could be the better choice. http://stackoverflow.com/questions/74626/how-do-you-force-a-cifs-connection-to-unmount/74695#74695 Comment by Chris AtLee on How do you force a CIFS connection to unmount Chris AtLee 2008-09-16T19:33:17Z 2008-09-16T19:33:17Z have you rebooted since adding the '-t cifs' option to mount? I don't think there's anything you can do to fix your stuck mount point right now, your only hope is to try and mount it in a way that's more resistant to failure in the future. http://stackoverflow.com/questions/74625/what-is-the-best-way-to-force-yourself-to-master-vi/74664#74664 Comment by Chris AtLee on What is the best way to force yourself to master vi? Chris AtLee 2008-09-16T17:28:21Z 2008-09-16T17:28:21Z I've remapped the Caps-Lock key on my keyboard to Escape. Even faster than ctrl+[! http://stackoverflow.com/questions/44352/iterate-over-subclasses-of-a-given-class-in-a-given-module/44381#44381 Comment by Chris AtLee on Iterate over subclasses of a given class in a given module Chris AtLee 2008-09-15T15:41:36Z 2008-09-15T15:41:36Z My solution won't return classes that are not direct descendants of 'cls'. quamrana's solution below will find any class that has 'cls' somewhere in its ancestry.