User Joe Shaw - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T17:43:48Zhttp://stackoverflow.com/feeds/user/156http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/135302/is-there-a-way-to-programmatically-import-ics-into-google-calendar8Is there a way to programmatically import ICS into Google Calendar?Joe Shaw2008-09-25T19:05:55Z2009-10-21T10:22:26Z
<p>I don't see any obvious way to import ICS files into Google Calendar from the API docs here:</p>
<p><a href="http://code.google.com/apis/calendar/developers_guide_protocol.html" rel="nofollow">http://code.google.com/apis/calendar/developers_guide_protocol.html</a></p>
<p>And I'd greatly prefer not to have to parse them myself just to send the appointments into GCal. I'm looking for a programmatic solution, not something like import plugins for Thunderbird, Outlook, etc. Third party APIs to do the ICS parsing are acceptable, in any language. Any ideas?</p>
http://stackoverflow.com/questions/21564/is-there-a-unix-utility-to-prepend-timestamps-to-lines-of-text2Is there a Unix utility to prepend timestamps to lines of text?Joe Shaw2008-08-22T01:24:34Z2009-08-12T20:59:43Z
<p>I ended up writing a quick little script for this in Python, but I was wondering if there was a utility you could feed text into which would prepend each line with some text -- in my specific case, a timestamp. Ideally, the use would be something like:</p>
<pre><code>$ cat somefile.txt | prepend-timestamp
</code></pre>
<p>(Before you answer sed, I tried this:</p>
<pre><code>$ cat somefile.txt | sed "s/^/`date`/"
</code></pre>
<p>but that only evaluates the date command once when sed is executed, so the same timestamp is incorrectly prepended to each line.)</p>
<p><em>Note on the accepted answer below:</em> strftime() appears to be a GNU awk extension, so if you're on Mac OS, for example, use gawk instead of awk.</p>
http://stackoverflow.com/questions/1189072/what-are-the-python-thread-unix-signals-semantics2What are the Python thread + Unix signals semantics?Joe Shaw2009-07-27T16:08:34Z2009-07-28T14:54:45Z
<p>What are the rules surrounding Python threads and how Unix signals are handled?</p>
<p>Is <code>KeyboardInterrupt</code>, which is triggered by <code>SIGINT</code> but handled internally by the Python runtime, handled differently?</p>
http://stackoverflow.com/questions/1189072/what-are-the-python-thread-unix-signals-semantics/1189162#11891623Answer by Joe Shaw for What are the Python thread + Unix signals semantics?Joe Shaw2009-07-27T16:21:02Z2009-07-28T14:51:52Z<p>First, when setting up signal handlers using the <a href="http://docs.python.org/library/signal.html" rel="nofollow"><code>signal</code></a> module, you must create them in the main thread. You will receive an exception if you try to create them in a separate thread.</p>
<p>Signal handlers registered via the <code>signal.signal()</code> function will always be called in the main thread. On architectures which support sending signals to threads, at the C level I believe the Python runtime ignores all signals on threads and has a signal handler on the main thread, which it uses to dispatch to your Python-code signal handler.</p>
<p>The documentation for the <code>thread</code> module states that the <a href="http://docs.python.org/library/exceptions.html#exceptions.KeyboardInterrupt" rel="nofollow"><code>KeyboardInterrupt</code></a> exception (which is ordinarily triggered by <code>SIGINT</code>) can be <a href="http://docs.python.org/library/thread.html" rel="nofollow">delivered to an arbitrary thread</a> unless you have the <code>signal</code> module available to you, which all Unix systems should have. In that case, it's delivered to the main thread. If you're on a system without <code>signal</code>, you'll have to catch <code>KeyboardInterrupt</code> in your thread and call <a href="http://docs.python.org/library/thread.html#thread.interrupt%5Fmain" rel="nofollow"><code>thread.interrupt_main()</code></a> to re-raise it in the main thread.</p>
<p>More information can be found in the Python docs for the <a href="http://docs.python.org/library/thread.html" rel="nofollow"><code>thread</code></a> and <a href="http://docs.python.org/library/signal.html" rel="nofollow"><code>signal</code></a> modules.</p>
http://stackoverflow.com/questions/26595/is-there-any-difference-between-foo-is-none-and-foo-none45Is there any difference between "foo is None" and "foo == None"?Joe Shaw2008-08-25T18:27:16Z2009-02-25T10:34:49Z
<p>Is there any difference between:</p>
<pre><code>if foo is None: pass
</code></pre>
<p>and</p>
<pre><code>if foo == None: pass
</code></pre>
<p>The convention that I've seen in most Python code (and the code I myself write) is the former, but I recently came across code which uses the latter. None is an instance (and the only instance, IIRC) of NoneType, so it shouldn't matter, right? Are there any circumstances in which it might?</p>
http://stackoverflow.com/questions/190010/daemon-threads-explanation/583996#5839962Answer by Joe Shaw for Daemon Threads ExplanationJoe Shaw2009-02-24T22:55:10Z2009-02-24T22:55:10Z<p>Other posters gave some examples for situations in which you'd use daemon threads. My recommendation, however, is never to use them.</p>
<p>It's not because they're not useful, but because there are some bad side effects you can experience if you use them. Daemon threads can still execute after the Python runtime starts tearing down things in the main thread, causing some pretty bizarre exceptions.</p>
<p>More info here:</p>
<p><a href="http://joeshaw.org/2009/02/24/605" rel="nofollow">http://joeshaw.org/2009/02/24/605</a></p>
<p><a href="http://mail.python.org/pipermail/python-list/2005-February/307042.html" rel="nofollow">http://mail.python.org/pipermail/python-list/2005-February/307042.html</a></p>
<p>Strictly speaking you never need them, it just makes implementation easier in some cases.</p>
http://stackoverflow.com/questions/543541/what-does-select2-do-if-you-close2-a-file-descriptor-in-a-separate-thread/566249#5662491Answer by Joe Shaw for What does select(2) do if you close(2) a file descriptor in a separate thread?Joe Shaw2009-02-19T17:09:17Z2009-02-19T17:09:17Z<p>From some additional investigation, it appears that both dwc and bothie are right.</p>
<p><a href="http://stackoverflow.com/questions/543541/what-does-select2-do-if-you-close2-a-file-descriptor-in-a-separate-thread/546396#546396">bothie's answer</a> to the question boils down to: it's undefined behavior. That doesn't mean that it's unpredictable necessarily, but that different OSes do it differently. It would appear that systems like Solaris and HP-UX return from <code>select(2)</code> in this case, but Linux does not based on <a href="http://lkml.indiana.edu/hypermail/linux/kernel/0106.0/0768.html" rel="nofollow">this post to the linux-kernel mailing list</a> from 2001.</p>
<p>The argument on the linux-kernel mailing list is essentially that it is undefined (and broken) behavior to rely upon. In Linux's case, calling <code>close(2)</code> on the file descriptor effectively decrements a reference count on it. Since there is a <code>select(2)</code> call also with a reference to it, the fd will remain open and waiting for input until the <code>select(2)</code> returns. This is basically <a href="http://stackoverflow.com/questions/543541/what-does-select2-do-if-you-close2-a-file-descriptor-in-a-separate-thread/543676#543676">dwc's answer</a>. You will get an event on the file descriptor and then it'll be closed. Trying to read from it will result in a EBADF, assuming the fd hasn't been recycled. (A concern that MarkR made in <a href="http://stackoverflow.com/questions/543541/what-does-select2-do-if-you-close2-a-file-descriptor-in-a-separate-thread/543595#543595">his answer</a>, although I think it's probably avoidable in most cases with proper synchronization.)</p>
<p>So thank you all for the help.</p>
http://stackoverflow.com/questions/543541/what-does-select2-do-if-you-close2-a-file-descriptor-in-a-separate-thread3What does select(2) do if you close(2) a file descriptor in a separate thread?Joe Shaw2009-02-12T21:54:19Z2009-02-19T17:09:17Z
<p>What is the behavior of the <code>select(2)</code> function when a file descriptor it is watching for reading is closed by another thread?</p>
<p>From some cursory testing, it does return right away. I suspect the outcome is either that (a) it still continues to wait for data, but if you actually tried to read from it you'd get EBADF (possibly -- there's a potential race) or (b) that it pretends as though the file descriptor were never passed in. If the latter case is true, passing in a single fd with no timeout would cause a deadlock if it were closed.</p>
http://stackoverflow.com/questions/345356/why-doesnt-python-2-6-have-set-literals-and-comprehensions-or-dict-comprehension6Why doesn't Python 2.6 have set literals and comprehensions or dict comprehensions?Joe Shaw2008-12-05T22:14:21Z2008-12-27T03:25:59Z
<p>Python 2.6 was basically a stepping stone to make converting to Python 3 easier. A lot of the features destined for Python 3 were implemented in 2.6 if they didn't break backward compatibility with syntax and the class libs.</p>
<p>Why weren't set literals (<code>{1, 2, 3}</code>), set comprehensions (<code>{v for v in l}</code>), or dict comprehensions (<code>{k: v for k, v in d}</code>) among them? In particular dict comprehensions would have been a great boon... I find myself using the considerably uglier <code>dict([(k, v) for k, v in d])</code> an awful lot lately.</p>
<p>Is there something obvious I'm missing, or was this just a feature that didn't make the cut?</p>
http://stackoverflow.com/questions/172798/lisp-in-the-real-world/172966#17296612Answer by Joe Shaw for Lisp in the real worldJoe Shaw2008-10-06T01:22:58Z2008-10-06T01:22:58Z<p><a href="http://itasoftware.com" rel="nofollow">ITA Software</a> uses <a href="http://itasoftware.com/careers/l_e_t_lisp.html?catid=0" rel="nofollow">Common Lisp</a> for its <a href="http://matrix.itasoftware.com/" rel="nofollow">QPX low-fare search engine</a> which powers sites like <a href="http://orbitz.com" rel="nofollow">Orbitz</a>, <a href="http://kayak.com" rel="nofollow">Kayak</a>, and <a href="http://aa.com" rel="nofollow">American</a> and <a href="http://united.com" rel="nofollow">United</a> Airlines among many others. It's also used in part for its upcoming <a href="http://itasoftware.com/solutions/res.html" rel="nofollow">passenger reservation system</a> for Air Canada. Paul Graham has <a href="http://www.paulgraham.com/carl.html" rel="nofollow">written a little bit</a> about Lisp at ITA in the past.</p>
<p>(Disclaimer: I work there.)</p>
http://stackoverflow.com/questions/88942/why-should-python-pep-8-specify-a-maximum-line-length-of-79-characters/89870#898703Answer by Joe Shaw for Why should Python PEP-8 specify a maximum line length of 79 characters?Joe Shaw2008-09-18T03:58:56Z2008-09-18T03:58:56Z<p>79 characters (well, actually 72 characters) is where most text-based email readers linewrap. So code cut-and-pasted into an email is a lot more readable.</p>
http://stackoverflow.com/questions/74092/is-there-a-common-way-to-check-in-python-if-an-object-is-any-function-type2Is there a common way to check in Python if an object is any function type?Joe Shaw2008-09-16T16:13:09Z2008-09-16T18:34:03Z
<p>I have a function in Python which is iterating over the attributes returned from dir(obj), and I want to check to see if any of the objects contained within is a function, method, built-in function, etc. Normally you could use callable() for this, but I don't want to include classes. The best I've come up with so far is:</p>
<pre><code>isinstance(obj, (types.BuiltinFunctionType, types.FunctionType, types.MethodType))
</code></pre>
<p>Is there a more future-proof way to do this check?</p>
<p><strong>Edit:</strong> I misspoke before when I said: "Normally you could use callable() for this, but I don't want to disqualify classes." I actually <em>do</em> want to disqualify classes. I want to match <em>only</em> functions, not classes.</p>
http://stackoverflow.com/questions/24648/whats-the-best-way-to-get-to-know-linux-or-bsd-kernel-internals/24803#248031Answer by Joe Shaw for What's the best way to get to know linux or BSD kernel internals?Joe Shaw2008-08-24T02:19:04Z2008-08-24T02:19:04Z<p>There's no substitute for diving into the code. Try to find a driver or subsystem that you're interested in and poke around with it. With tools like <a href="http://vmware.com/workstation" rel="nofollow">VMware Workstation</a> it's super easy to make whatever changes you want, snapshot the VM, and run your modified kernel. If the kernel panics on boot, who cares? Just jump back to the snapshot and fix the problem.</p>
<p>For books, I strongly recommend <a href="http://rads.stackoverflow.com/amzn/click/0672327201" rel="nofollow">Linux Kernel Development</a> by Robert Love. It's a wonderfully written book -- lots of information, organized sanely, and humorous... not dry reading at all.</p>
http://stackoverflow.com/questions/18450/is-mono-ready-for-prime-time/24799#247994Answer by Joe Shaw for Is Mono ready for prime time?Joe Shaw2008-08-24T02:12:54Z2008-08-24T02:12:54Z<p>MoMA is a great tool for this, as someone else suggested. The biggest sources of incompatibility these days are applications which DllImport (or P/Invoke) into Win32 libraries. Some assemblies aren't implemented, but most of them are Windows-only and really wouldn't make sense on Linux. I think it's fairly safe to say that most ASP.NET applications can run on Mono with limited modifications.</p>
<p>(Disclosure: I've contributed to Mono itself, as well as written apps that run on top of it.)</p>
http://stackoverflow.com/questions/23166/whats-a-good-beginning-text-on-functional-programming/23184#231841Answer by Joe Shaw for What's a good beginning text on functional programming?Joe Shaw2008-08-22T18:54:53Z2008-08-22T18:54:53Z<p>I found <a href="http://rads.stackoverflow.com/amzn/click/0262560992" rel="nofollow">The Little Schemer</a> a great, great introduction to functional programming. It's entirely based on simple, bite sized examples which are built up upon as the book goes on.</p>
http://stackoverflow.com/questions/15979/wildcardquery-error-in-solr/23095#230950Answer by Joe Shaw for WildcardQuery error in SolrJoe Shaw2008-08-22T18:19:22Z2008-08-22T18:19:22Z<p>Lucene doesn't allow you to start WildcardQueries with an asterisk by default, because those are incredibly expensive queries and will be very, very, very slow on large indexes.</p>
<p>If you're using the Lucene QueryParser, call setAllowLeadingWildcard(true) on it to enable it.</p>
<p>If you want all of the documents with a certain field set, you are much better off querying or walking the index programmatically than using QueryParser. You should really only use QueryParser to parse user input.</p>
http://stackoverflow.com/questions/22943/does-anybody-know-of-existing-code-to-read-a-mork-file-thunderbird-address-book/23038#230381Answer by Joe Shaw for Does anybody know of existing code to read a mork file (Thunderbird Address Book)?Joe Shaw2008-08-22T17:57:14Z2008-08-22T17:57:14Z<p>The <a href="http://beagle-project.org" rel="nofollow">Beagle search engine</a> had code to parse Mork files. It's not the most memory efficient solution, but it worked and could be a useful starting point. Here's a link to the file:</p>
<p><a href="http://svn.gnome.org/viewvc/beagle/tags/BEAGLE_0_2_18/Util/Mork.cs?view=markup" rel="nofollow"><a href="http://svn.gnome.org/viewvc/beagle/tags/BEAGLE_0_2_18/Util/Mork.cs?view=markup" rel="nofollow">http://svn.gnome.org/viewvc/beagle/tags/BEAGLE_0_2_18/Util/Mork.cs?view=markup</a></a></p>
<p>(These days Beagle doesn't use this parser anymore; we took the easier (and supported) path of writing a Thunderbird extension which just sent the data to Beagle itself. Has the disadvantage of not working while Thunderbird is closed, but has the advantage of not instilling the desire to bash your head in with the nearest blunt instrument.)</p>
http://stackoverflow.com/questions/17721/experience-with-hadoop/22796#227963Answer by Joe Shaw for Experience with Hadoop?Joe Shaw2008-08-22T16:29:08Z2008-08-22T16:29:08Z<p>Yes, you can use Hadoop on a local filesystem by using file URIs instead of hdfs URIs in various places. I think a lot of the examples that come with Hadoop do this.</p>
<p>This is probably fine if you just want to learn how Hadoop works and the basic map-reduce paradigm, but you will need multiple machines and a distributed filesystem to get the real benefits of the scalability inherent in the architecture.</p>
http://stackoverflow.com/questions/918/how-to-learn-python-good-example-code/2298#22982Answer by Joe Shaw for How to learn Python: Good Example Code?Joe Shaw2008-08-05T13:30:29Z2008-08-05T13:30:29Z<p><a href="http://www.python.org/dev/peps/pep-0008/" rel="nofollow">PEP-8</a> is the style guide for Python and gives a good guidance on the style and code structure once you know the Python language.</p>
<p>To answer your statement about things being in one big file, I do think that Python tends to do it a little more that way, particularly for libraries, because it's a relatively dense language and the whitespacing makes a large file not feel quite so daunting. Most Python apps I've worked with (and larger libraries like Django, SQLAlchemy, etc.) do break their code up into multiple files and smaller modules. While it's not quite as segmented as Java with its one class per file, there is still a very modular feel to the code. In the end, you should do whatever you feel comfortable with.</p>http://stackoverflow.com/questions/1983/python-what-is-the-difference-between-1-2-3-and-1-2-3-and-when-should-i-use/2277#227713Answer by Joe Shaw for Python: what is the difference between (1,2,3) and [1,2,3], and when should I use each?Joe Shaw2008-08-05T13:22:43Z2008-08-05T13:22:43Z<p>From the <a href="http://www.python.org/doc/faq/general/#why-are-there-separate-tuple-and-list-data-types" rel="nofollow">Python FAQ</a>:</p>
<blockquote>
<p>Lists and tuples, while similar in many respects, are generally used in fundamentally different ways. Tuples can be thought of as being similar to Pascal records or C structs; they're small collections of related data which may be of different types which are operated on as a group. For example, a Cartesian coordinate is appropriately represented as a tuple of two or three numbers.</p>
<p>Lists, on the other hand, are more like arrays in other languages. They tend to hold a varying number of objects all of which have the same type and which are operated on one-by-one.</p>
</blockquote>
<p>Generally by convention you wouldn't choose a list or a tuple just based on its (im)mutability. You would choose a tuple for small collections of completely different pieces of data in which a full-blown class would be too heavyweight, and a list for collections of any reasonable size where you have a homogeneous set of data.</p>http://stackoverflow.com/questions/263/gtk-implementation-of-messagebox/607#6072Answer by Joe Shaw for GTK implementation of MessageBoxJoe Shaw2008-08-03T02:30:05Z2008-08-03T02:30:05Z<p>Hmm, ok. I'd suggest code like this, then:</p>
<pre><code>typedef struct {<br> int type;<br> int result;<br>} DialogData;<br><br>static gboolean<br>display_dialog(gpointer user_data)<br>{<br> DialogData *dialog_data = user_data;<br> GtkWidget *dialog;<br><br> if (dialog_data->type & MB_YESNO)<br> dialog = gtk_message_dialog_new(...);<br> else<br> dialog = gtk_message_dialog_new(...);<br><br> // Set title, etc.<br><br> dialog_data->result = gtk_dialog_run(...);<br><br> gtk_main_quit(); // Quits the main loop run in MessageBox()<br><br> return FALSE;<br>}<br><br>int MessageBox(...)<br>{<br> DialogData dialog_data;<br><br> dialog_data.type = type;<br><br> gtk_idle_add(display_dialog, &dialog_data);<br><br> gtk_main();<br><br> // Do stuff based on dialog_data.result<br>}<br></code></pre>
<p>The struct is because you need to pass around a couple pieces of data. The <code>gtk_idle_add()</code> call adds a method to be run when the main loop is running and idle, and the <code>FALSE</code> return value from the <code>display_dialog()</code> call means that it's only run once. After we get the result from the dialog, we quit the main loop. That'll cause the <code>gtk_main()</code> in your main <code>MessageBox()</code> method to return, and you'll be able to access the result from there.</p>
<p>Hope this helps!</p>http://stackoverflow.com/questions/296/should-i-learn-c/554#5544Answer by Joe Shaw for Should I learn C?Joe Shaw2008-08-02T20:37:41Z2008-08-02T20:37:41Z<p>Yes, you should learn C. Just like all Americans <em>should</em> learn a language other than English. :)</p>
<p>I agree with what other people said in that it's good to learn how memory allocation works, how to actually and efficiently implement data structures, do bitwise operations, how to — for example — implement a memory efficient XML parser that can handle a 2 gigabyte document being fed to it.</p>
<p>You may never need to use it directly, just like you may never need to use those 6 years of French, but at the very least the ancillary knowledge you gain in learning it unquestionably makes you a better programmer. All else being equal, you should learn it just for the sake of learning new things... and Python and Lisp and Ruby and Erlang too. Of course, here in the real world there are obviously limiting factors like there being only 24 hours in a day, and you have to sleep sometime.</p>
<p>C looks good on a resumé and if you can do interview programming problems in C that is a huge strength. I give points for that, even if the position we're hiring for would be in higher-level languages like C#, Java, or Python. In some ways it's an "old boys" club, but in others it means that I could trust you to find and fix a memory usage problem in our Python app.</p>http://stackoverflow.com/questions/387/lucene-score-results/551#5513Answer by Joe Shaw for Lucene Score resultsJoe Shaw2008-08-02T20:03:06Z2008-08-02T20:03:06Z<p>You may also be interested in the output of the explain() method, which will give you an idea of how things are scored the way they are:</p>
<blockquote>
<p><a href="http://lucene.apache.org/java/2_2_0/api/org/apache/lucene/search/Searcher.html#explain" rel="nofollow" title="org.apache.lucene.search.Query,%20int">http://lucene.apache.org/java/2_2_0/api/org/apache/lucene/search/Searcher.html#explain(org.apache.lucene.search.Query,%20int)</a></p>
</blockquote>
<p>and the Explanation object:</p>
<blockquote>
<p><a href="http://lucene.apache.org/java/2_2_0/api/org/apache/lucene/search/Explanation.html" rel="nofollow">http://lucene.apache.org/java/2_2_0/api/org/apache/lucene/search/Explanation.html</a></p>
</blockquote>
<p>(Ick, scary URLs.)</p>http://stackoverflow.com/questions/88/is-gettimeofday-guaranteed-to-be-of-microsecond-resolution/522#5222Answer by Joe Shaw for Is gettimeofday() guaranteed to be of microsecond resolution?Joe Shaw2008-08-02T17:57:06Z2008-08-02T19:51:21Z<blockquote>
<p>So it says microseconds explicitly, but says the resolution of the system clock is unspecified. I suppose resolution in this context means how the smallest amount it will ever be incremented?</p>
</blockquote>
<p>The data structure is defined as having microseconds as a unit of measurement, but that doesn't mean that the clock or operating system is actually capable of measuring that finely.</p>
<p>Like other people have suggested, gettimeofday() is bad because setting the time can cause clock skew and throw off your calculation. clock_gettime(CLOCK_MONOTONIC) is what you want, and clock_getres() will tell you the precision of your clock.</p>http://stackoverflow.com/questions/263/gtk-implementation-of-messagebox/537#5371Answer by Joe Shaw for GTK implementation of MessageBoxJoe Shaw2008-08-02T18:49:30Z2008-08-02T19:50:01Z<p>A few things:</p>
<p>You are creating (and not using) an unnecessary toplevel window, named <code>window</code>. You can just delete these lines:</p>
<pre><code>window = gtk_window_new(GTK_WINDOW_TOPLEVEL);<br>g_signal_connect(G_OBJECT(window), "delete_event", G_CALLBACK(delete_event), NULL);<br>g_signal_connect(G_OBJECT(window), "destroy", G_CALLBACK(destroy), NULL);<br></code></pre>
<p>Also, the flow doesn't seem quite right. <code>gtk_main()</code> starts the GTK main loop, which blocks until something exits it. <code>gtk_dialog_run()</code> also starts a main loop, but it exits as soon as one of the buttons is clicked.</p>
<p>I think it might be enough for you to remove the <code>gtk_init_add()</code> and <code>gtk_main()</code> calls, and simply deal with the return value. Also the <code>gtk_widget_destroy()</code> call is unnecessary, as the dialog window is automatically destroyed when gtk_dialog_run() returns.</p>http://stackoverflow.com/questions/535/continuous-integration-system-for-a-python-codebase/538#5384Answer by Joe Shaw for Continuous Integration System for a Python CodebaseJoe Shaw2008-08-02T18:56:56Z2008-08-02T18:56:56Z<p>One possibility is Hudson. It's written in Java, but there's integration with Python projects:</p>
<blockquote>
<p><a href="http://redsolo.blogspot.com/2007/11/hudson-embraces-python.html" rel="nofollow">http://redsolo.blogspot.com/2007/11/hudson-embraces-python.html</a></p>
</blockquote>
<p>I've never tried it myself, however.</p>http://stackoverflow.com/questions/21564/is-there-a-unix-utility-to-prepend-timestamps-to-lines-of-text/1268696#1268696Comment by Joe Shaw on Is there a Unix utility to prepend timestamps to lines of text?Joe Shaw2009-08-17T19:31:07Z2009-08-17T19:31:07ZThe <code>date</code> is only evaluated by the shell at execution time. This means that every line will have the same timestamp prepended to it.http://stackoverflow.com/questions/1189072/what-are-the-python-thread-unix-signals-semantics/1189162#1189162Comment by Joe Shaw on What are the Python thread + Unix signals semantics?Joe Shaw2009-07-28T14:53:11Z2009-07-28T14:53:11ZMiles: Yeah, I think you and Bastien are right. A quick check of some python-list posts and a peek at the code back this up. I've corrected the answer. Thanks!http://stackoverflow.com/questions/1189072/what-are-the-python-thread-unix-signals-semantics/1189162#1189162Comment by Joe Shaw on What are the Python thread + Unix signals semantics?Joe Shaw2009-07-27T21:31:25Z2009-07-27T21:31:25ZYeah! Who knows why it isn't.http://stackoverflow.com/questions/135302/is-there-a-way-to-programmatically-import-ics-into-google-calendar/926710#926710Comment by Joe Shaw on Is there a way to programmatically import ICS into Google Calendar?Joe Shaw2009-06-10T00:20:00Z2009-06-10T00:20:00ZThat link doesn't work for me.http://stackoverflow.com/questions/543541/what-does-select2-do-if-you-close2-a-file-descriptor-in-a-separate-thread/543595#543595Comment by Joe Shaw on What does select(2) do if you close(2) a file descriptor in a separate thread?Joe Shaw2009-02-13T16:41:36Z2009-02-13T16:41:36ZYou could avoid the race by using a mutex for the data structure containing the fd, though. But that would only work if the select() call had a timeout defined.http://stackoverflow.com/questions/543541/what-does-select2-do-if-you-close2-a-file-descriptor-in-a-separate-thread/543595#543595Comment by Joe Shaw on What does select(2) do if you close(2) a file descriptor in a separate thread?Joe Shaw2009-02-12T22:07:30Z2009-02-12T22:07:30ZI thought that it might return as ready too, but that's not quite right: the descriptor isn't actually in a ready state -- it's closed. And as you mention, by the time you go to use it it could be reassigned to something else.http://stackoverflow.com/questions/135302/is-there-a-way-to-programmatically-import-ics-into-google-calendar/135410#135410Comment by Joe Shaw on Is there a way to programmatically import ICS into Google Calendar?Joe Shaw2008-09-25T19:29:11Z2008-09-25T19:29:11ZThis doesn't quite work, because I don't want to subscribe to a web-based calendar. The data I want to push in isn't available on the web. I want to basically upload a file and have Google calendar become the canonical store for it.http://stackoverflow.com/questions/74092/is-there-a-common-way-to-check-in-python-if-an-object-is-any-function-type/74295#74295Comment by Joe Shaw on Is there a common way to check in Python if an object is any function type?Joe Shaw2008-09-16T17:49:08Z2008-09-16T17:49:08ZI don't see how this is better than the solution in my original comment? You still have to check for all three explicitly.http://stackoverflow.com/questions/74092/is-there-a-common-way-to-check-in-python-if-an-object-is-any-function-type/74138#74138Comment by Joe Shaw on Is there a common way to check in Python if an object is any function type?Joe Shaw2008-09-16T16:28:48Z2008-09-16T16:28:48ZWorth noting that this will only work for new-style classes. You get False for old-style classes.