User Chris AtLee - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T21:19:08Zhttp://stackoverflow.com/feeds/user/4558http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1711795/linux-shell-how-to-read-command-argument-from-a-file/1711825#17118251Answer by Chris AtLee for linux shell: How to read command argument from a file?Chris AtLee2009-11-10T22:53:16Z2009-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#16854651Answer by Chris AtLee for mysql order_by questionChris AtLee2009-11-06T04:44:29Z2009-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#16854452Answer by Chris AtLee for Why we should perfer to store the serialized data not the raw code to DB?Chris AtLee2009-11-06T04:37:10Z2009-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#16854128Answer by Chris AtLee for Possible to use more than one argument on __getitem__?Chris AtLee2009-11-06T04:27:31Z2009-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#16852672Answer by Chris AtLee for accurately measure time python function takesChris AtLee2009-11-06T03:37:25Z2009-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#16843993Answer by Chris AtLee for Uploading to the cheeseshop different versions of a package for different versions of PythonChris AtLee2009-11-05T23:31:30Z2009-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#16680674Answer by Chris AtLee for Is it possible to have a PHP script authenticate users with their Linux user info? Chris AtLee2009-11-03T15:32:18Z2009-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#16674090Answer by Chris AtLee for Version control; choices, choices, choices!Chris AtLee2009-11-03T13:43:26Z2009-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#6996311Answer by Chris AtLee for Python: Testing for unicode, and converting to time()Chris AtLee2009-03-31T00:50:34Z2009-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#6871063Answer by Chris AtLee for Risk of exploits "backwards" into outbound tcp connections.Chris AtLee2009-03-26T18:55:54Z2009-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#6870528Answer by Chris AtLee for Removing created temp files in unexpected bash exitChris AtLee2009-03-26T18:42:28Z2009-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#6828152Answer by Chris AtLee for Python os.system() limited lengthChris AtLee2009-03-25T18:13:55Z2009-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#6818221Answer by Chris AtLee for How can I disable "demand paging" for one of my userspace programs ?Chris AtLee2009-03-25T14:28:31Z2009-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 <sys/mman.h>
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#6815850Answer by Chris AtLee for C++ enum not properly recognized by compilerChris AtLee2009-03-25T13:26:00Z2009-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#67903214Answer by Chris AtLee for GET vs. POST Best PracticesChris AtLee2009-03-24T20:03:50Z2009-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><form action='item.php' method='POST' id='form'>
<input type='hidden' name='action' value='delete' />
<input type='hidden' name='id' value='{item_id}' />
<a href="" onclick="document.getElementById('form').submit(); return false;">Delete item</a>
</form>
</code></pre>
http://stackoverflow.com/questions/678944/how-do-i-create-a-tcp-server-that-will-accept-only-one-connection-at-a-time/678971#6789713Answer by Chris AtLee for How do I create a TCP server that will accept only one connection at a time?Chris AtLee2009-03-24T19:48:22Z2009-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#6774384Answer by Chris AtLee for In bash, how to make control-delete mean kill-word?Chris AtLee2009-03-24T13:39:04Z2009-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#6780114Answer by Chris AtLee for vim: copy selection to OS X clipboardChris AtLee2009-03-24T15:45:45Z2009-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#6778702Answer by Chris AtLee for Python and MySQL: is there an alternative to MySQLdb?Chris AtLee2009-03-24T15:19:39Z2009-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&package_id=15775" rel="nofollow">http://sourceforge.net/project/showfiles.php?group_id=22307&package_id=15775</a></p>
<p>What platform are you running on?</p>
http://stackoverflow.com/questions/676976/mysql-error/677161#6771610Answer by Chris AtLee for MYSQL ERRORChris AtLee2009-03-24T12:26:48Z2009-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->query($insertQuery, $data)) {
// It worked, give confirmation
echo '<center><b>Article added to the database</b></center><br>';
}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#6771204Answer by Chris AtLee for Are there any build-in cross-thread events in python?Chris AtLee2009-03-24T12:11:51Z2009-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#5991633Answer by Chris AtLee for Calculate size of files using basic linux commandsChris AtLee2009-03-01T03:00:12Z2009-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#1247711Answer by Chris AtLee for Max length of send() data param on XMLHttpRequest PostChris AtLee2008-09-24T00:44:47Z2008-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#751865Answer by Chris AtLee for Send file using POST from a Python scriptChris AtLee2008-09-16T18:05:01Z2008-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#750250Answer by Chris AtLee for is there a way for my binary to react to some global hotkeys in linux ?Chris AtLee2008-09-16T17:50:11Z2008-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#749920Answer by Chris AtLee for Bash or Ksh ?Chris AtLee2008-09-16T17:46:34Z2008-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#746950Answer by Chris AtLee for How do you force a CIFS connection to unmountChris AtLee2008-09-16T17:15:31Z2008-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#745571Answer by Chris AtLee for Managing authorized_keys on a large number of hosts.Chris AtLee2008-09-16T17:00:50Z2008-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#744590Answer by Chris AtLee for Random in python 2.5 not working?Chris AtLee2008-09-16T16:52:11Z2008-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#744360Answer by Chris AtLee for Best online resource to learn Python?Chris AtLee2008-09-16T16:49:53Z2008-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-cComment by Chris AtLee on record duplication in c++Chris AtLee2009-11-10T14:58:48Z2009-11-10T14:58:48Zwe'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#1684399Comment by Chris AtLee on Uploading to the cheeseshop different versions of a package for different versions of PythonChris AtLee2009-11-06T13:22:31Z2009-11-06T13:22:31ZYeah, 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#1667908Comment by Chris AtLee on Is there a command line way to show the outward-facing IP address for my machine?Chris AtLee2009-11-03T15:19:50Z2009-11-03T15:19:50Zthere'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-problemComment by Chris AtLee on gethostbyname problemChris AtLee2009-11-03T13:50:48Z2009-11-03T13:50:48Zstupid question - what does 'm/c' mean?http://stackoverflow.com/questions/681688/how-can-i-disable-demand-paging-for-one-of-my-userspace-programs/681822#681822Comment by Chris AtLee on How can I disable "demand paging" for one of my userspace programs ?Chris AtLee2009-03-25T17:04:05Z2009-03-25T17:04:05ZIn 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#677120Comment by Chris AtLee on Are there any build-in cross-thread events in python?Chris AtLee2009-03-24T12:46:43Z2009-03-24T12:46:43ZYes. 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#677120Comment by Chris AtLee on Are there any build-in cross-thread events in python?Chris AtLee2009-03-24T12:35:47Z2009-03-24T12:35:47ZIn 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 "e, func = q.get()".
Does this help?http://stackoverflow.com/questions/677143/which-one-is-a-more-reliable-matching-scheme-eregi-or-stripos/677153#677153Comment by Chris AtLee on Which one is a more reliable matching scheme, EREGI or STRIPOS?Chris AtLee2009-03-24T12:29:47Z2009-03-24T12:29:47ZIf 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#74695Comment by Chris AtLee on How do you force a CIFS connection to unmountChris AtLee2008-09-16T19:33:17Z2008-09-16T19:33:17Zhave 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#74664Comment by Chris AtLee on What is the best way to force yourself to master vi?Chris AtLee2008-09-16T17:28:21Z2008-09-16T17:28:21ZI'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#44381Comment by Chris AtLee on Iterate over subclasses of a given class in a given moduleChris AtLee2008-09-15T15:41:36Z2008-09-15T15:41:36ZMy 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.