User Crad - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T08:21:46Zhttp://stackoverflow.com/feeds/user/13203http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1572967/importing-python-modules-from-a-distant-directory/1572979#15729791Answer by Crad for Importing Python modules from a distant directoryCrad2009-10-15T15:06:29Z2009-10-15T15:06:29Z<p>Any reason you wouldn't want to make your own shared-code dir under site-packages? Then you could just import import shared.code.module...</p>
http://stackoverflow.com/questions/136069/python-web-development-with-or-without-a-framework6Python web development - with or without a frameworkCrad2008-09-25T20:59:49Z2009-09-17T02:47:39Z
<p>I am planning on porting a PHP application over to Python. The application is mostly about data collection and processing. The main application runs as a stand alone command line application. There is a web interface to the application which is basically a very light weight reporting interface. </p>
<p>I did not use a framework in the PHP version, but being new to Python, I am wondering if it would be advantageous to use something like Django or at the very least Genshi. The caveat is I do not want my application distribution to be overwhelmed by the framework parts I would need to distribute with the application. </p>
<p>Is using only the cgi import in Python the best way to go in this circumstance? I would tend to think a framework is too much overhead, but perhaps I'm not thinking in a very "python" way about them. What suggestions do you have in this scenario?</p>
http://stackoverflow.com/questions/1209645/what-is-wrong-with-this-php-array/1209666#12096660Answer by Crad for What is wrong with this php array?Crad2009-07-30T22:05:54Z2009-07-30T22:05:54Z<p>I do not see this:</p>
<pre><code>$ php
<?php
print_r(array("British Columbia" => "British Columbia", "Manitoba" => "Manitoba", "New Brunswick" => "New Brunswick", "Newfoundland and Labrador" => "Newfoundland and Labrador", "Nova Scotia" => "Nova Scotia", "Northwest Territories" => "Northwest Territories", "Nunavut" => "Nunavut", "Ontario" => "Ontario", "Prince Edward Island" => "Prince Edward Island", "Quebec" => "Quebec", "Saskatchewan" => "Saskatchewan", "Yukon" => "Yukon"));
Array
(
[British Columbia] => British Columbia
[Manitoba] => Manitoba
[New Brunswick] => New Brunswick
[Newfoundland and Labrador] => Newfoundland and Labrador
[Nova Scotia] => Nova Scotia
[Northwest Territories] => Northwest Territories
[Nunavut] => Nunavut
[Ontario] => Ontario
[Prince Edward Island] => Prince Edward Island
[Quebec] => Quebec
[Saskatchewan] => Saskatchewan
[Yukon] => Yukon
)
</code></pre>
<p>Are you sure you're outputting your results in a way that shows you truly what you have?</p>
http://stackoverflow.com/questions/1208542/could-you-suggest-an-on-line-wsdl-validation-tool/1208559#12085590Answer by Crad for Could you suggest an on-line WSDL validation tool?Crad2009-07-30T18:47:05Z2009-07-30T20:46:19Z<p><a href="http://xmethods.net/ve2/Tools.po" rel="nofollow">http://xmethods.net/ve2/Tools.po</a></p>
http://stackoverflow.com/questions/1202174/memcache-invalidate-entries-according-to-a-pattern/1203829#12038290Answer by Crad for Memcache invalidate entries according to a pattern?Crad2009-07-30T00:33:55Z2009-07-30T00:33:55Z<p>memcached does not support namespaced deletes.</p>
<p>The official wiki has a suggestion on how to work around it:</p>
<p><a href="http://code.google.com/p/memcached/wiki/FAQ#Deleting_by_Namespace" rel="nofollow">http://code.google.com/p/memcached/wiki/FAQ#Deleting_by_Namespace</a></p>
http://stackoverflow.com/questions/1185845/storing-updating-retrieving-settings-for-a-php-application-without-a-database/1185853#11858530Answer by Crad for Storing, Updating, Retrieving settings for a PHP Application without a DatabaseCrad2009-07-26T23:18:38Z2009-07-26T23:18:38Z<p>If you're not hand editing, use serialized data. </p>
<p>Writing config using <a href="http://us3.php.net/serialize" rel="nofollow">serialize</a>:</p>
<pre><code>file_put_contents('myConfig.txt', serialize($Settings));
</code></pre>
<p>Reading config using <a href="http://us3.php.net/unserialize" rel="nofollow">unserialize</a>:</p>
<pre><code>$Settings = unserialize(file_get_contents('myConfig.txt'));
</code></pre>
<p>You could write a class for modifying and getting values for this data using PHP magic functions __get() and __set().</p>
http://stackoverflow.com/questions/1162372/how-would-i-bind-this-to-the-onclick-event-in-jquery/1162413#11624130Answer by Crad for How would I bind this to the onclick event in JQUERY?Crad2009-07-22T00:11:49Z2009-07-22T00:11:49Z<p>You could do something like:</p>
<p>PHP:</p>
<pre><code><script language="text/javascript">var price_options = <?php echo json_encode($price_options_array); ?></script
for ( $y = 0; $y < $prices; $y++ )
{
echo '<div class="price_row" id="price_' . $y . '">Foo</div>';
}
</code></pre>
<p>And in jQuery:</p>
<pre><code>$('div.price_row').click(function(){
var id = $(this).attr('id').split('_');
selprice(price_options[id], id);
});
</code></pre>
<p>This is untested but it should give you a rough start.</p>
http://stackoverflow.com/questions/999463/css-performance-question/999477#9994770Answer by Crad for CSS Performance QuestionCrad2009-06-16T03:44:45Z2009-06-16T03:44:45Z<p>Poor css can definitely impact rendering, however I don't believe it would impact scrolling once rendered. In your example, at least avoid the selectors 3 levels deep. Single level css selectors will be faster than double level selectors. Putting the tag type should speed up the selection process, because instead of matching *.class in your DOM document, it only has to match div.class, filtering the type of dom nodes you are having to look at class for.</p>
http://stackoverflow.com/questions/989036/jquery-fadein-fadeout-or-show-hide-issue/989040#9890401Answer by Crad for jQuery fadeIn fadeOut (or show/hide) issueCrad2009-06-12T21:03:57Z2009-06-12T21:03:57Z<p>If you have a parent container around your week, you could just do the effect on that item.</p>
http://stackoverflow.com/questions/984834/map-virtual-directory-to-another-web-server-in-apache/984837#9848372Answer by Crad for Map virtual directory to another web server in apacheCrad2009-06-12T03:27:41Z2009-06-12T03:27:41Z<p>mod_rewrite is pretty powerful for this. You'd setup a rewrite rule for /resource/ and use a 302 redirect to send people over to server two.</p>
<p><a href="http://httpd.apache.org/docs/1.3/mod/mod_rewrite.html" rel="nofollow">http://httpd.apache.org/docs/1.3/mod/mod_rewrite.html</a></p>
<p><a href="http://www.modrewrite.com/" rel="nofollow">http://www.modrewrite.com/</a></p>
<p>Untested example:</p>
<pre><code><location "/">
RewriteEngine On
RewriteRule ^/resource/(.*)$ http://server2/resource/$1 [R]
</location>
</code></pre>
http://stackoverflow.com/questions/898669/how-can-i-detect-if-a-file-is-binary-non-text-in-python/898723#8987232Answer by Crad for How can I detect if a file is binary (non-text) in python?Crad2009-05-22T16:21:50Z2009-05-22T16:21:50Z<p>You can also use the mimetypes module:</p>
<pre><code>import mimetypes
...
mime = mimetypes.guess_type(file)
</code></pre>
<p>It's fairly easy to compile a list of binary mime types. For example Apache distributes with a mime.types file that you could parse into a set of lists, binary and text and then check to see if the mime is in your text or binary list.</p>
http://stackoverflow.com/questions/888834/daemonizing-pythons-basehttpserver/890300#8903001Answer by Crad for Daemonizing python's BaseHTTPServerCrad2009-05-20T21:17:13Z2009-05-20T21:17:13Z<p>After a bit of googling I finally stumbled upon:</p>
<p><a href="http://blog.doughellmann.com/2007/12/pymotw-basehttpserver.html" rel="nofollow">http://blog.doughellmann.com/2007/12/pymotw-basehttpserver.html</a></p>
<p>And after that I ended up with:</p>
<pre><code>from BaseHTTPServer import BaseHTTPRequestHandler, HTTPServer
from SocketServer import ThreadingMixIn
class ThreadedHTTPServer(ThreadingMixIn, HTTPServer):
"""Handle requests in a separate thread."""
server = ThreadedHTTPServer((config['HTTPServer']['listen'],config['HTTPServer']['port']), HTTPHandler)
server.serve_forever()
</code></pre>
<p>Which for the most part comes after I fork and ended up resolving my problem.</p>
http://stackoverflow.com/questions/888834/daemonizing-pythons-basehttpserver0Daemonizing python's BaseHTTPServerCrad2009-05-20T16:04:22Z2009-05-20T21:17:13Z
<p>I am working on a daemon where I need to embed a HTTP server. I am attempting to do it with BaseHTTPServer, which when I run it in the foreground, it works fine, but when I try and fork the daemon into the background, it stops working. My main application continues to work, but BaseHTTPServer does not.</p>
<p>I believe this has something to do with the fact that BaseHTTPServer sends log data to STDOUT and STDERR. I am redirecting those to files. Here is the code snippet:</p>
<pre><code># Start the HTTP Server
server = HTTPServer((config['HTTPServer']['listen'],config['HTTPServer']['port']),HTTPHandler)
# Fork our process to detach if not told to stay in foreground
if options.foreground is False:
try:
pid = os.fork()
if pid > 0:
logging.info('Parent process ending.')
sys.exit(0)
except OSError, e:
sys.stderr.write("Could not fork: %d (%s)\n" % (e.errno, e.strerror))
sys.exit(1)
# Second fork to put into daemon mode
try:
pid = os.fork()
if pid > 0:
# exit from second parent, print eventual PID before
print 'Daemon has started - PID # %d.' % pid
logging.info('Child forked as PID # %d' % pid)
sys.exit(0)
except OSError, e:
sys.stderr.write("Could not fork: %d (%s)\n" % (e.errno, e.strerror))
sys.exit(1)
logging.debug('After child fork')
# Detach from parent environment
os.chdir('/')
os.setsid()
os.umask(0)
# Close stdin
sys.stdin.close()
# Redirect stdout, stderr
sys.stdout = open('http_access.log', 'w')
sys.stderr = open('http_errors.log', 'w')
# Main Thread Object for Stats
threads = []
logging.debug('Kicking off threads')
while ...
lots of code here
...
server.serve_forever()
</code></pre>
<p>Am I doing something wrong here or is BaseHTTPServer somehow prevented from becoming daemonized? </p>
<p>Edit: Updated code to demonstrate the additional, previously missing code flow and that log.debug shows in my forked, background daemon I am hitting code after fork.</p>
http://stackoverflow.com/questions/660961/overriding-python-threading-thread-run3Overriding python threading.Thread.run()Crad2009-03-19T03:26:56Z2009-03-19T04:24:36Z
<p>Given the documentation at <a href="http://docs.python.org/library/threading.html" rel="nofollow">http://docs.python.org/library/threading.html</a> which states for Thread.run():</p>
<blockquote>
<p>You may override this method in a subclass. The standard run() method invokes the callable object passed to the object’s constructor as the target argument, if any, with sequential and keyword arguments taken from the args and kwargs arguments, respectively.</p>
</blockquote>
<p>I have constructed the following code:</p>
<pre><code>class DestinationThread(threading.Thread):
def run(self, name, config):
print 'In thread'
thread = DestinationThread(args = (destination_name, destination_config))
thread.start()
</code></pre>
<p>But when I execute it, I receive the following error:</p>
<pre><code>Exception in thread Thread-1:
Traceback (most recent call last):
File "/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/threading.py", line 522, in __bootstrap_inner
self.run()
TypeError: run() takes exactly 3 arguments (1 given)
</code></pre>
<p>It seems I am missing something obvious, but the various examples I have seen work with this methodology. Ultimately I am trying to just pass the string and dictionary into the thread, if the Constructor is not the right way, but rather to make a new function to set the values prior to starting the thread, I am open to that. </p>
<p>Any suggestions on how to best accomplish this?</p>
http://stackoverflow.com/questions/660961/overriding-python-threading-thread-run/660975#6609752Answer by Crad for Overriding python threading.Thread.run()Crad2009-03-19T03:35:26Z2009-03-19T03:35:26Z<p>Turns out it was <strong>init</strong> I needed to override:</p>
<pre><code>class DestinationThread(threading.Thread):
def __init__(self, name, config):
threading.Thread.__init__(self)
# Set internal variables
self.name = name
self.config = config
def run(self):
print 'In thread'
</code></pre>
http://stackoverflow.com/questions/141975/postgresqls-and-mysqls-full-text-search/147433#1474333Answer by Crad for PostgreSQL's and MySQL's full text searchCrad2008-09-29T03:39:48Z2009-02-16T11:04:28Z<p>PostgreSQL 8.3 has built in full text search which is an integrated version of the "tsearch2"</p>
<p>Here is the documentation: <a href="http://www.postgresql.org/docs/8.3/static/textsearch.html" rel="nofollow">http://www.postgresql.org/docs/8.3/static/textsearch.html</a></p>
<p>And the example from the documentation:</p>
<pre><code>SELECT title
FROM pgweb
WHERE to_tsvector(body) @@ to_tsquery('friend');
</code></pre>
<p>Where body is a text field. You can index specifically for these types of searches and of course they can become more complex than this simple example. The functionality is very solid and worth diving into as you make your decision.</p>
<p>Best of luck.</p>
http://stackoverflow.com/questions/529034/python-pass-or-sleep-for-long-running-processes4Python: Pass or Sleep for long running processes?Crad2009-02-09T17:15:42Z2009-02-09T18:41:46Z
<p>I am writing an queue processing application which uses threads for waiting on and responding to queue messages to be delivered to the app. For the main part of the application, it just needs to stay active. For a code example like:</p>
<pre>
while True:
pass
</pre>
<p>or</p>
<pre>
while True:
time.sleep(1)
</pre>
<p>Which one will have the least impact on a system? What is the preferred way to do nothing, but keep a python app running?</p>
http://stackoverflow.com/questions/399250/going-where-php-parseurl-doesnt-parsing-only-the-domain1Going where PHP parse_url() doesn't - Parsing only the domainCrad2008-12-30T00:51:48Z2009-01-01T01:29:12Z
<p>PHP's parse_url() has a host field, which includes the full host. I'm looking for the most reliable (and least costly) way to only return the domain and TLD.</p>
<p>Given the examples:</p>
<ul>
<li><a href="http://www.google.com/foo" rel="nofollow">http://www.google.com/foo</a>, parse_url() returns www.google.com for host</li>
<li><a href="http://www.google.co.uk/foo" rel="nofollow">http://www.google.co.uk/foo</a>, parse_url() returns www.google.co.uk for host</li>
</ul>
<p>I am looking for only <strong>google.com</strong> or <strong>google.co.uk</strong>. I have contemplated a table of valid TLD's/suffixes and only allowing those and one word. Would you do it any other way? Does anyone know of a pre-canned valid REGEX for this sort of thing?</p>
http://stackoverflow.com/questions/399250/going-where-php-parseurl-doesnt-parsing-only-the-domain/399258#3992581Answer by Crad for Going where PHP parse_url() doesn't - Parsing only the domainCrad2008-12-30T01:03:35Z2008-12-30T01:03:35Z<p>Dug this up from a related post, for the idea of keeping a table: <a href="http://mxr.mozilla.org/mozilla-central/source/netwerk/dns/src/effective_tld_names.dat?raw=1" rel="nofollow">http://mxr.mozilla.org/mozilla-central/source/netwerk/dns/src/effective_tld_names.dat?raw=1</a></p>
<p>I'd rather not do that though.</p>
http://stackoverflow.com/questions/217424/create-csv-file-for-user-in-php/217432#2174320Answer by Crad for create .CSV File for user in PHPCrad2008-10-20T03:15:08Z2008-10-20T03:15:08Z<p>To have it send it as a CSV and have it give the file name, use header():</p>
<p><a href="http://us2.php.net/header" rel="nofollow">http://us2.php.net/header</a></p>
<pre><code>header('Content-type: text/csv');
header('Content-disposition: attachment; filename="myfile.csv"');
</code></pre>
<p>As far as making the CSV itself, you would just loop through the result set, formatting the output and sending it, just like you would any other content.</p>
http://stackoverflow.com/questions/148538/what-is-a-great-tool-for-remote-pair-development/148550#1485500Answer by Crad for What is a great tool for remote pair development?Crad2008-09-29T13:00:01Z2008-09-29T13:00:01Z<p>Coda for OS X has a great feature for this - <a href="http://www.panic.com/coda/" rel="nofollow">http://www.panic.com/coda/</a> </p>
<p>It supports most popular languages and is pretty snappy.</p>
http://stackoverflow.com/questions/144487/can-you-recommend-a-postgresql-visual-database-designer-for-linux/144526#1445260Answer by Crad for Can you recommend a PostgreSQL Visual Database Designer for Linux?Crad2008-09-27T21:34:32Z2008-09-27T21:34:32Z<p>I really like dbWrench. It's commercial as well, but not expensive and is Java based. It can reverse engineer a database and generates pretty good HTML based documentation.</p>
<p><a href="http://www.dbwrench.com/" rel="nofollow">http://www.dbwrench.com/</a></p>
http://stackoverflow.com/questions/137540/what-is-the-best-web-based-subversion-client/137572#1375720Answer by Crad for What is the best web based Subversion client?Crad2008-09-26T03:18:20Z2008-09-26T03:18:20Z<p>Subversion via DAV is a decent platform for subversion:</p>
<p><a href="http://svnbook.red-bean.com/en/1.1/ch06s04.html" rel="nofollow">http://svnbook.red-bean.com/en/1.1/ch06s04.html</a></p>
<p>I don't know if you mean that you want a web application to manage your files, but with DAV or even a subversion command line clinet you can use the HTTP as the protocol for your svn usage.</p>
http://stackoverflow.com/questions/137487/null-vs-false-vs-0/137553#1375530Answer by Crad for Null vs. False vs. 0Crad2008-09-26T03:12:10Z2008-09-26T03:12:10Z<p>In PHP it depends on if you are validating types:</p>
<p>(
( false !== 0 ) && ( false !== -1 ) && ( false == 0 ) && ( false == -1 ) &&
( false !== null ) && ( false == null )
)</p>
<p>Technically null is 0x00 but in PHP ( null == 0x00 ) && ( null !== 0x00 ).</p>
<p>0 is an integer value.</p>
http://stackoverflow.com/questions/136056/ide-or-text-editor/136108#1361080Answer by Crad for IDE or Text Editor?Crad2008-09-25T21:03:11Z2008-09-25T21:03:11Z<p>Traditionally, I've been a text-editor fan, vim being the editor of choice. When I moved from Linux on the desktop to a Mac, I started using various IDE's including Eclipse, as I like the visual organization and overall usefulness of an IDE. Recently I stumbled across Coda and for my environment it works great. It's much lighter weight than Eclipse and supports all the languages I am banging about in. </p>
<p>Ultimately for me it comes down to if I am developing on a remote box, in which case I am in VIM and if I am developing on my desktop, then it's Coda.</p>
http://stackoverflow.com/questions/135373/would-performance-suffer-using-autoload-in-php-and-searching-for-the-class-file/135394#1353943Answer by Crad for Would performance suffer using autoload in php and searching for the class file?Crad2008-09-25T19:21:36Z2008-09-25T19:21:36Z<p>__autoload is great, but the cost of stating all the files in a recursive search function is expensive. You might want to look at building a tree of files to use for autoloading. In my framework, I consistently name files for their classes and use a map that is cached for the data.</p>
<p>Check out <a href="http://trac.framewerk.org/cgi-bin/trac.fcgi/browser/trunk/index.php" rel="nofollow">http://trac.framewerk.org/cgi-bin/trac.fcgi/browser/trunk/index.php</a> starting at line 68 for an idea of how this can be done.</p>
<p>Edit: And to more directly answer your question, without caching, you can expect a performance hit on a site with medium to heavy traffic.</p>
http://stackoverflow.com/questions/131115/should-all-public-methods-of-an-api-be-documented/131124#1311241Answer by Crad for Should all public methods of an API be documented?Crad2008-09-25T02:11:43Z2008-09-25T02:11:43Z<p>I'd say a, in that when someone who is obtuse is reviewing or modifying your code, nothing is left for interpretation, even if without the documentation, you think it's perfectly clear.</p>
http://stackoverflow.com/questions/130878/global-or-singleton-for-database-connection/130900#1309002Answer by Crad for Global or Singleton for database connection?Crad2008-09-25T01:03:55Z2008-09-25T01:03:55Z<p>If you're not going to use a persistent connection, and there are cases for not doing that, I find a singleton to be conceptually more palatable than a global in OO design.</p>
<p>In a true OO architecture, a singleton is more effective than creating a new instance the object each time.</p>
http://stackoverflow.com/questions/123920/automatic-newlines-and-formatting-for-blogging-software/123937#1239377Answer by Crad for Automatic newlines and formatting for blogging softwareCrad2008-09-23T21:17:02Z2008-09-23T21:20:52Z<p>PHP has a function: nl2br which turns new lines into <br /></p>
<p><a href="http://uk2.php.net/nl2br" rel="nofollow">www.php.net/nl2br</a></p>
http://stackoverflow.com/questions/120228/php-running-scheduled-jobs-cron-jobs/122158#1221580Answer by Crad for PHP: running scheduled jobs (cron jobs)Crad2008-09-23T16:32:36Z2008-09-23T16:32:36Z<p>Command line PHP + cron would be the way I would go. It's simple and should fit the bill. It is usually installed with PHP as a matter of course.</p>
http://stackoverflow.com/questions/136069/python-web-development-with-or-without-a-frameworkComment by Crad on Python web development - with or without a frameworkCrad2009-12-03T01:03:46Z2009-12-03T01:03:46ZAs a follow-up, I've ended up being a big fan of Tornado. It's loosely coupled enough for men and I have found it to be very solid.http://stackoverflow.com/questions/1208542/could-you-suggest-an-on-line-wsdl-validation-tool/1208559#1208559Comment by Crad on Could you suggest an on-line WSDL validation tool?Crad2009-07-30T20:46:50Z2009-07-30T20:46:50ZSorry, didn't check the bookmark link.http://stackoverflow.com/questions/1185845/storing-updating-retrieving-settings-for-a-php-application-without-a-database/1185853#1185853Comment by Crad on Storing, Updating, Retrieving settings for a PHP Application without a DatabaseCrad2009-07-26T23:36:05Z2009-07-26T23:36:05ZPlease clarify, of course you'd have collisions with multiple setters, but there would be no problem with multiple readers. Author of the question says "Settings will not be updated/added/removed very often. So updating of settings does not have to be very efficient. However, I do want to be able to do this all through a PHP script, not through editing of files."http://stackoverflow.com/questions/1185248/is-python-only-for-building-backends-when-you-need-to-write-sql-by-handComment by Crad on Is Python only for building backends when you need to write SQL by hand?Crad2009-07-26T18:57:45Z2009-07-26T18:57:45ZYour title doesn't quite match your question. There are many Python web frameworks beyond Django and you can build many types of applications, including front-ends -- with or without a framework.http://stackoverflow.com/questions/1162372/how-would-i-bind-this-to-the-onclick-event-in-jquery/1162392#1162392Comment by Crad on How would I bind this to the onclick event in JQUERY?Crad2009-07-22T00:12:38Z2009-07-22T00:12:38ZIt appears his price_counter is inside a non-listed PHP loop so your first example looks like it wouldn't work.http://stackoverflow.com/questions/984834/map-virtual-directory-to-another-web-server-in-apache/984842#984842Comment by Crad on Map virtual directory to another web server in apacheCrad2009-06-12T03:35:41Z2009-06-12T03:35:41ZThe only disadvantage here is in a high request per second environment, you are proxying, and thus leaving the backend on apache open while you go to the other server and process. This requires more open connections and may be slower than just sending the browser to the right server with a http header.http://stackoverflow.com/questions/984834/map-virtual-directory-to-another-web-server-in-apache/984841#984841Comment by Crad on Map virtual directory to another web server in apacheCrad2009-06-12T03:33:39Z2009-06-12T03:33:39ZAgreed that this would have been better on ServerFault.comhttp://stackoverflow.com/questions/888834/daemonizing-pythons-basehttpserver/889115#889115Comment by Crad on Daemonizing python's BaseHTTPServerCrad2009-05-20T17:19:39Z2009-05-20T17:19:39ZActually, I was running that after the fork, and according to my debug output, after the second fork, I am hitting code.http://stackoverflow.com/questions/454875/how-to-do-browser-detection-with-jquery-1-3-with-browser-msie-deprecatedComment by Crad on How to do browser detection with jQuery 1.3 with $.browser.msie deprecated?Crad2009-05-13T21:33:03Z2009-05-13T21:33:03ZFor what it's worth, there are some display bugs in ie6 that one has to compensate for that don't happen in any other browser, such as positioning a div over a select box. IE6 detection is useful for putting in something like an iframe hack to hide the select boxes.http://stackoverflow.com/questions/660961/overriding-python-threading-thread-run/660974#660974Comment by Crad on Overriding python threading.Thread.run()Crad2009-03-19T03:36:56Z2009-03-19T03:36:56ZThis was a key piece of info I was missing, which is why I accepted it, but in my case, I actually am extending the class adding needed functions to pull data out of the thread.http://stackoverflow.com/questions/529034/python-pass-or-sleep-for-long-running-processes/529321#529321Comment by Crad on Python: Pass or Sleep for long running processes?Crad2009-02-09T22:02:28Z2009-02-09T22:02:28ZThis doesn't seem to work, since the threads should not terminate the process is terminated, the timeout could conceptually always come first, or am I missing something?http://stackoverflow.com/questions/529034/python-pass-or-sleep-for-long-running-processesComment by Crad on Python: Pass or Sleep for long running processes?Crad2009-02-09T20:14:57Z2009-02-09T20:14:57ZWell in the case of the threads, they're using blocking TCP connections waiting on messages. Its just the main thread that I am concerned about, and it doesn't do anything but handle the command line options, read config and kick of threads.http://stackoverflow.com/questions/529034/python-pass-or-sleep-for-long-running-processes/529321#529321Comment by Crad on Python: Pass or Sleep for long running processes?Crad2009-02-09T20:13:57Z2009-02-09T20:13:57ZI am not expecting threads to finish, though. This is a non-ending process. Does this logic still apply?http://stackoverflow.com/questions/529034/python-pass-or-sleep-for-long-running-processes/529073#529073Comment by Crad on Python: Pass or Sleep for long running processes?Crad2009-02-09T17:31:14Z2009-02-09T17:31:14ZThanks for the tip on Queue looks handy, in this app I am using blocking sockets to listen for messages from an AMQP broker (in separate threads) and acting on them upon receipt.http://stackoverflow.com/questions/529034/python-pass-or-sleep-for-long-running-processes/529048#529048Comment by Crad on Python: Pass or Sleep for long running processes?Crad2009-02-09T17:27:38Z2009-02-09T17:27:38ZYup, makes sense!