User Kurt - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T08:55:41Zhttp://stackoverflow.com/feeds/user/31056http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1831673/how-i-can-optimize-this-slow-query/1851605#18516050Answer by Kurt for How I can optimize this slow query?Kurt2009-12-05T08:43:50Z2009-12-05T08:43:50Z<p>Buy a solid state drive? ;)</p>
http://stackoverflow.com/questions/1830618/how-to-find-the-owner-of-a-file-or-directory-in-python/1830631#18306315Answer by Kurt for how to find the owner of a file or directory in pythonKurt2009-12-02T04:25:33Z2009-12-02T04:25:33Z<p>You want "os":</p>
<p><a href="http://docs.python.org/library/os.html" rel="nofollow">http://docs.python.org/library/os.html</a></p>
<p>os.stat(path)</p>
<p>Perform a stat() system call on the given path. The return value is an object whose attributes correspond to the members of the stat structure, namely: st_mode (protection bits), st_ino (inode number), st_dev (device), st_nlink (number of hard links), st_uid (user id of owner), st_gid (group id of owner), st_size (size of file, in bytes), st_atime (time of most recent access), st_mtime (time of most recent content modification), st_ctime (platform dependent; time of most recent metadata change on Unix, or the time of creation on Windows):</p>
http://stackoverflow.com/questions/1692346/adding-authentication-to-beanstalkd-from-python-or-any-unix-client0Adding authentication to beanstalkd from Python (or any UNIX) clientKurt2009-11-07T07:42:11Z2009-11-07T12:11:25Z
<p>So what I like about beanstalkd: small, lightweight, has priorities for messages, has a great set of clients, easy to use. </p>
<p>What I dislike about beanstalkd: the lack of authentication menaing if you can connect to the port you can insert messages into it. </p>
<p>So my thoughts are to either firewall it to trusted systems (which is a pain to maintain and external to the application adding another layer of stuff to do) or to wrap it in TLS/SSL using something like <a href="http://www.stunnel.org/" rel="nofollow">stunnel</a> (which will incur a good chunk of overhead with respect to establishing connections and whatnot). I did think of maybe signing jobs (MD5 or SHA of job string+time value+secret appended to the job), but if an attacker were to flood the server with bogus jobs I'd still be in trouble. <strong>Can anyone think of any other methods to secure the beanstalkd against insertion of bogus messages from an attacker?</strong> Especially those that don't incur a lot of overhead computationally or administratively. </p>
http://stackoverflow.com/questions/1648754/impact-of-idns-on-web-developers/1648774#16487740Answer by Kurt for Impact of IDNs on web developers?Kurt2009-10-30T09:21:26Z2009-10-30T09:21:26Z<p>Yes. This will make spoofing attacks a WHOLE lot easier (various encoded characters look nearly identical to the western ones). Filtering is going to be a pain. Some registries have stated that they will NOT support IDN (apparently .be and a few others), so it won't be universal. It's also not even clear if we're using <a href="http://en.wikipedia.org/wiki/UTF-8" rel="nofollow">UTF-8</a> or <a href="http://en.wikipedia.org/wiki/Punycode" rel="nofollow">punycode</a> or perhaps both (also depending upon which domain registrar you are dealing with, etc.). All in all it's going to be a gigantic mess, but not much more than the current one we live in.</p>
http://stackoverflow.com/questions/1648206/does-a-pronounceable-encoding-exist/1648234#16482342Answer by Kurt for Does a pronounceable encoding exist ?Kurt2009-10-30T05:58:52Z2009-10-30T05:58:52Z<p>Why not use something similar to what PGP does to create readable keys, simply find a nice list of words that are distinctive, lets say you're using 128 bit UUID's, a list of 256 words (2^8) means 16 words.</p>
<p>Stupid question but why are people reading/writing UUID's/etc. with respect to your application?</p>
http://stackoverflow.com/questions/1617309/which-keyvalue-store-to-use-with-python3Which key:value store to use with Python?Kurt2009-10-24T07:48:35Z2009-10-25T07:02:56Z
<p>So I'm looking at various key:value (where value is either strictly a single value or possibly an object) stores for use with Python, and have found a few promising ones. I have no specific requirement as of yet because I am in the evaluation phase. I'm looking for what's good, what's bad, what are the corner cases these things handle well or don't, etc. I'm sure some of you have already tried them out so I'd love to hear your findings/problems/etc. on the various key:value stores with Python. I'm looking primarily at:</p>
<p>memcached - <a href="http://www.danga.com/memcached/" rel="nofollow">http://www.danga.com/memcached/</a> python clients: <a href="http://pypi.python.org/pypi/python-memcached/1.40" rel="nofollow">http://pypi.python.org/pypi/python-memcached/1.40</a> <a href="http://www.tummy.com/Community/software/python-memcached/" rel="nofollow">http://www.tummy.com/Community/software/python-memcached/</a></p>
<p>CouchDB - <a href="http://couchdb.apache.org/" rel="nofollow">http://couchdb.apache.org/</a> python clients: <a href="http://code.google.com/p/couchdb-python/" rel="nofollow">http://code.google.com/p/couchdb-python/</a></p>
<p>Tokyo Tyrant - <a href="http://1978th.net/tokyotyrant/" rel="nofollow">http://1978th.net/tokyotyrant/</a> python clients: <a href="http://code.google.com/p/pytyrant/" rel="nofollow">http://code.google.com/p/pytyrant/</a></p>
<p>Lightcloud - <a href="http://opensource.plurk.com/LightCloud/" rel="nofollow">http://opensource.plurk.com/LightCloud/</a> Based on Tokyo Tyrant, written in Python</p>
<p>Redis - <a href="http://code.google.com/p/redis/" rel="nofollow">http://code.google.com/p/redis/</a> python clients: <a href="http://pypi.python.org/pypi/txredis/0.1.1" rel="nofollow">http://pypi.python.org/pypi/txredis/0.1.1</a></p>
<p>MemcacheDB - <a href="http://memcachedb.org/" rel="nofollow">http://memcachedb.org/</a></p>
<p>So I started benchmarking (simply inserting keys and reading them) using a simple count to generate numeric keys and a value of "A short string of text":</p>
<p>memcached: CentOS 5.3/python-2.4.3-24.el5_3.6, libevent 1.4.12-stable, memcached 1.4.2 with default settings, 1 gig memory, 14,000 inserts per second, 16,000 seconds to read. No real optimization, nice.</p>
<p>memcachedb claims on the order of 17,000 to 23,000 inserts per second, 44,000 to 64,000 reads per second.</p>
<p>I'm also wondering how the others stack up speed wise.</p>
http://stackoverflow.com/questions/1591319/python-how-can-i-know-which-exceptions-might-be-thrown-from-a-method-call/1591860#15918602Answer by Kurt for Python: How can I know which exceptions might be thrown from a method callKurt2009-10-20T00:26:38Z2009-10-20T00:26:38Z<p>I ran into this when using socket, I wanted to find out all the error conditions I would run in to (so rather than trying to create errors and figure out what socket does I just wanted a concise list). Ultimately I ended up grep'ing "/usr/lib64/python2.4/test/test_socket.py" for "raise":</p>
<pre><code>$ grep raise test_socket.py
Any exceptions raised by the clients during their tests
raise TypeError, "test_func must be a callable function"
raise NotImplementedError, "clientSetUp must be implemented."
def raise_error(*args, **kwargs):
raise socket.error
def raise_herror(*args, **kwargs):
raise socket.herror
def raise_gaierror(*args, **kwargs):
raise socket.gaierror
self.failUnlessRaises(socket.error, raise_error,
self.failUnlessRaises(socket.error, raise_herror,
self.failUnlessRaises(socket.error, raise_gaierror,
raise socket.error
# Check that setting it to an invalid value raises ValueError
# Check that setting it to an invalid type raises TypeError
def raise_timeout(*args, **kwargs):
self.failUnlessRaises(socket.timeout, raise_timeout,
def raise_timeout(*args, **kwargs):
self.failUnlessRaises(socket.timeout, raise_timeout,
</code></pre>
<p>Which is a pretty concise list of errors. Now of course this only works on a case by case basis and depends on the tests being accurate (which they usually are). Otherwise you need to pretty much catch all exceptions, log them and dissect them and figure out how to handle them (which with unit testing wouldn't be to difficult).</p>
http://stackoverflow.com/questions/1591613/is-there-a-low-tack-adhesive-tape-available-for-creating-scrum-story-boards/1591759#15917591Answer by Kurt for Is there a low-tack adhesive tape available for creating Scrum story boards?Kurt2009-10-19T23:50:57Z2009-10-19T23:50:57Z<p>Why not get a metallic whiteboard or sheet of thin ferrous metal (which you can paint the same color as the rest of the office) and use magnets?</p>
http://stackoverflow.com/questions/1548857/efficient-storage-of-and-access-to-web-pages-with-python1Efficient storage of and access to web pages with PythonKurt2009-10-10T19:29:56Z2009-10-10T19:58:55Z
<p>So like many people I want a way to download, index/extract information and store web pages efficiently. My first thought is to use MySQL and simply shove the pages in which would let me use FULLTEXT searches which would let me do ad hoc queries easily (in case I want to see if something exists and extract it/etc.). But of course performance wise I have some concerns especially with large objects/pages and high volumes of data. So that leads me to look at things like <a href="http://couchdb.apache.org/" rel="nofollow">CouchDB</a>/search engines/etc. So to summarize, my basic requirements are:</p>
<ol>
<li>It must be Python compatible (libraries/etc.)</li>
<li>Store meta data (URL, time retrieved, any GET/POST stuff I sent), response code, etc. of the page I requested.</li>
<li>Store a copy of the original web page as sent by the server (might be content, might be 404 search page, etc.).</li>
<li>Extract information from the web page and store it in a database.</li>
<li>Have the ability to do ad hoc queries on the existing corpus of original web pages (for example a new type of information I want to extract, or to see how many of the pages have the string "fizzbuzz" or whatever in them.</li>
<li>And of course it must be open source/Linux compatible, I have no interest in something I can't modify or fiddle with.</li>
</ol>
<p>So I'm thinking several broad options are:</p>
<ol>
<li>Toss everything into MySQL, use FULLTEXT, go nuts, shard the contact if needed.</li>
<li>Toss meta data into MySQL, store the data on the file system or something like CouchDB, write some custom search stuff.</li>
<li>Toss meta data into MySQL, store the data on a file system with a web server (maybe /YYYY/MM/DD/HH/MM/SS/URL/), make sure there is no default index.html/etc specified (directory index each directory in other words) and use some search engine like <a href="http://lucene.apache.org/" rel="nofollow">Lucene</a> or <a href="http://www.sphinxsearch.com/" rel="nofollow">Sphinx</a> index the content and use that to search. Biggest downside I see here is the inefficiency of repeatedly crawling the site.</li>
<li>Other solutions?</li>
</ol>
<p>When answering please include links to any technologies you mention and if possible what programming languages it has libraries for (i.e. if it's Scala only or whatever it's probably not that useful since this is a Python project). If this question has already been asked (I'm sure it must have been) please let me know (I searched, no luck). </p>
http://stackoverflow.com/questions/1165571/using-select-poll-kqueue-kevent-to-watch-a-directory-for-new-files/1458591#14585912Answer by Kurt for Using select/poll/kqueue/kevent to watch a directory for new filesKurt2009-09-22T07:24:01Z2009-09-22T07:24:01Z<p>FreeBSD and thus Mac OS X provide an analog of inotify called kqueue. Type man 2 kqueue on a FreeBSD machine for more information. For kqueue on Freebsd you have PyKQueue available at <a href="http://people.freebsd.org/~dwhite/PyKQueue/" rel="nofollow">http://people.freebsd.org/~dwhite/PyKQueue/</a>, unfortunately is not actively maintained so your mileage may vary. </p>
http://stackoverflow.com/questions/922200/which-process-was-responsible-for-an-event-signalled-by-inotify/1458541#14585411Answer by Kurt for Which process was responsible for an event signalled by inotify?Kurt2009-09-22T07:08:21Z2009-09-22T07:08:21Z<p>Assuming you are on Linux (pyinotify would tend to indicate this) you could use SELinux (running in permissive mode of course) to wrap a process(es) and log all their file access/creation/deletion/etc.</p>
http://stackoverflow.com/questions/1338484/simple-code-to-install-a-subversion-repository-on-a-linux-server/1385226#13852260Answer by Kurt for Simple code to install a subversion repository on a linux serverKurt2009-09-06T08:43:11Z2009-09-06T08:43:11Z<p>without shell access that's gonna be fugly (if memory serves bluehost doesn't give you shell access). You will need to edit apache's config which you may not be able to do. I suggest you contact Bluehost support.</p>
http://stackoverflow.com/questions/651358/trappings-mysql-warnings-on-calls-wrapped-in-classes-python/1219572#12195720Answer by Kurt for Trappings MySQL Warnings on Calls Wrapped in Classes -- PythonKurt2009-08-02T19:10:42Z2009-08-02T19:10:42Z<p>On first glance at least one problem:</p>
<pre><code> if dict_flag:
dbMySQL_Cursor = conn.cursor(MySQLdb.cursors.DictCursor)
</code></pre>
<p>shouldn't that be</p>
<pre><code> if dict_flag:
self.dbMySQL_Cursor = conn.cursor(MySQLdb.cursors.DictCursor)
</code></pre>
<p>You're mixing your self/not self. Also I would wrap the </p>
<pre><code>self.conn = MySQLdb.connect(db_server, db_user, db_passwd)
</code></pre>
<p>in a try/except block since I have a suspicion you may not be creating the database connection properly due to the import of db credentials (I'd toss in a print statement to make sure the data is actually being passed). </p>
http://stackoverflow.com/questions/1162230/how-can-i-get-dns-records-for-a-domain-in-python/1164260#11642601Answer by Kurt for How can I get DNS records for a domain in python?Kurt2009-07-22T10:08:20Z2009-07-22T10:08:20Z<p>Your other option is <a href="http://pydns.sourceforge.net/" rel="nofollow">pydns</a> but the last release is as of 2008 so dnspython is probably a better bet (I only mention this in case dnspython doesn't float your boat).</p>
http://stackoverflow.com/questions/1164205/running-multiple-proccesses-in-python/1164253#11642530Answer by Kurt for Running multiple proccesses in PythonKurt2009-07-22T10:06:26Z2009-07-22T10:06:26Z<p>You may want to investigate threads/threading/multiprocess. </p>
http://stackoverflow.com/questions/1120707/using-python-to-execute-a-command-on-every-file-in-a-folder/1121416#11214162Answer by Kurt for Using Python to execute a command on every file in a folderKurt2009-07-13T18:58:39Z2009-07-13T18:58:39Z<p>Python might be overkill for this.</p>
<pre><code>for file in *; do mencoder -some options $file; rm -f $file ; done
</code></pre>
http://stackoverflow.com/questions/1036024/why-do-companies-need-affordable-email-solutions/1036042#10360422Answer by Kurt for Why do companies need 'affordable email solutions'? Kurt2009-06-24T01:22:55Z2009-06-24T01:22:55Z<p>Privacy. Reliability. Message retention policies. Backups. All of which may be driven by legal requirements (SOX/HIPAA/etc.). </p>
http://stackoverflow.com/questions/990102/python-global-interpreter-lock-gil-workaround-on-multi-core-systems-using-tasks4Python Global Interpreter Lock (GIL) workaround on multi-core systems using taskset on Linux?Kurt2009-06-13T06:14:47Z2009-06-17T07:43:33Z
<p>So I just finished watching this talk on the Python Global Interpreter Lock (GIL) <a href="http://blip.tv/file/2232410" rel="nofollow">http://blip.tv/file/2232410</a>.</p>
<p>The gist of it is that the GIL is a pretty good design for single core systems (Python essentially leaves the thread handling/scheduling up to the operating system). But that this can seriously backfire on multi-core systems and you end up with IO intensive threads being heavily blocked by CPU intensive threads, the expense of context switching, the ctrl-C problem[*] and so on.</p>
<p>So since the GIL limits us to basically executing a Python program on one CPU my thought is why not accept this and simply use taskset on Linux to set the affinity of the program to a certain core/cpu on the system (especially in a situation with multiple Python apps running on a multi-core system)?</p>
<p>So ultimately my question is this: has anyone tried using taskset on Linux with Python applications (especially when running multiple applications on a Linux system so that multiple cores can be used with one or two Python applications bound to a specific core) and if so what were the results? is it worth doing? Does it make things worse for certain workloads? I plan to do this and test it out (basically see if the program takes more or less time to run) but would love to hear from others as to your experiences.</p>
<p>Addition: David Beazley (the guy giving the talk in the linked video) pointed out that some C/C++ extensions manually release the GIL lock and if these extensions are optimized for multi-core (i.e. scientific or numeric data analysis/etc.) then rather than getting the benefits of multi-core for number crunching the extension would be effectively crippled in that it is limited to a single core (thus potentially slowing your program down significantly). On the other hand if you aren't using extensions such as this</p>
<p>The reason I am not using the multiprocessing module is that (in this case) part of the program is heavily network I/O bound (HTTP requests) so having a pool of worker threads is a GREAT way to squeeze performance out of a box since a thread fires off an HTTP request and then since it's waiting on I/O gives up the GIL and another thread can do it's thing, so that part of the program can easily run 100+ threads without hurting the CPU much and let me actually use the network bandwidth that is available. As for stackless Python/etc I'm not overly interested in rewriting the program or replacing my Python stack (availability would also be a concern). </p>
<p>[*] Only the main thread can receive signals so if you send a ctrl-C the Python interpreter basically tries to get the main thread to run so it can handle the signal, but since it doesn't directly control which thread is run (this is left to the operating system) it basically tells the OS to keep switching threads until it eventually hits the main thread (which if you are unlucky may take a while). </p>
http://stackoverflow.com/questions/994082/how-do-you-implement-the-one-step-build-for-a-lamp-project/994110#9941101Answer by Kurt for How do you implement the "one step build" for a LAMP project?Kurt2009-06-15T00:20:13Z2009-06-15T00:20:13Z<p>"make" on UNIX (and Windows) is your friend. It's got a learning curve though, but it's worth it. You can have make update the source, compile, test, etc, etc.</p>
http://stackoverflow.com/questions/430811/enumerate-or-list-all-variables-in-a-program-of-your-favorite-language-here7Enumerate or list all variables in a program of [your favorite language here]Kurt2009-01-10T09:51:08Z2009-05-26T20:12:40Z
<p>A friend asked me last week how to enumerate or list all variables within a program/function/etc. for the purposes of debugging (essentially getting a snapshot of everything so you can see what variables are set to, or if they are set at all). I looked around a bit and found a relatively good way for Python:</p>
<pre>
#!/usr/bin/python
foo1 = "Hello world"
foo2 = "bar"
foo3 = {"1":"a",
"2":"b"}
foo4 = "1+1"
for name in dir():
myvalue = eval(name)
print name, "is", type(name), "and is equal to ", myvalue
</pre>
<p>which will output something like:</p>
<pre>
__builtins__ is <type 'str'> and is equal to <module '__builtin__' (built-in)>
__doc__ is <type 'str'> and is equal to None
__file__ is <type 'str'> and is equal to ./foo.py
__name__ is <type 'str'> and is equal to __main__
foo1 is <type 'str'> and is equal to Hello world
foo2 is <type 'str'> and is equal to bar
foo3 is <type 'str'> and is equal to {'1': 'a', '2': 'b'}
foo4 is <type 'str'> and is equal to 1+1
</pre>
<p>I have so far found a partial way in PHP (courtesy of <a href="http://www.phpro.org/examples/List-all-variables.html" rel="nofollow">link text</a>) but it only lists all variables and their types, not the contents:</p>
<pre>
<?php
// create a few variables
$bar = 'foo';
$foo ='bar';
// create a new array object
$arrayObj = new ArrayObject(get_defined_vars());
// loop over the array object and echo variables and values
for($iterator = $arrayObj->getIterator(); $iterator->valid(); $iterator->next())
{
echo $iterator->key() . ' => ' . $iterator->current() . '<br />';
}
?>
</pre>
<p><strong>So I put it to you: how do you list all variables and their contents in your favorite language?</strong></p>
<p><hr /></p>
<p>Edit by <a href="http://stackoverflow.com/users/6309/vonc">VonC</a>: I propose this question follows the spirit of a little "<a href="http://stackoverflow.com/questions/172184">code-challenge</a>".<br />
If you do not agree, just edit and remove the tag and the link.</p>
http://stackoverflow.com/questions/856251/paypal-cc-validation-from-the-site-using-curl-or-paypal-apis/857055#8570550Answer by Kurt for Paypal cc validation from the site using cURL or Paypal API's?Kurt2009-05-13T09:48:16Z2009-05-13T09:48:16Z<p>You want <a href="https://www.paypal.com/ipn" rel="nofollow">Paypal's Instant Payment Notification</a> .</p>
http://stackoverflow.com/questions/856927/does-your-contract-specify-that-all-your-ideas-are-the-companies-property/856955#8569557Answer by Kurt for Does your contract specify that all your ideas are the companies property?Kurt2009-05-13T09:23:34Z2009-05-13T09:23:34Z<p>This is pretty standard, the trick is to ensure it only applies to work related things, and that you can list pre-existing stuff that it won't apply to (i.e. if you've been working on project X and extend it that doesn't belong to them). You have three real choices:</p>
<ol>
<li>Sign it (yuck, it's worded very badly), you forfeit any chance to ever have your own ideas without potential legal hassles.</li>
<li>Modify it, negotiate with the firm, run the new wording by your own lawyer for sure!</li>
<li>Refuse to sign it, you may be able to get away with this.</li>
</ol>
http://stackoverflow.com/questions/810573/what-obsolete-programming-techniques-are-you-glad-to-see-go/810610#8106104Answer by Kurt for What obsolete programming techniques are you glad to see go?Kurt2009-05-01T08:12:46Z2009-05-01T08:12:46Z<p>Standard libraries. </p>
<p>Re-inventing the wheel gets stale after a while (plus most of us aren't that good at it). In this day and age if I want to grab a web page I shouldn't have to write more than about 4 lines of code (try to get web page, if it fails do something about it like set an error). The mount of time this saves, and the fact that I can re-use code written by people much better and smarter at something than I am is a HUGE time saver and a HUGE improvement for my code quality (seriously, how many people are smart enough to write an HTTP client that handles cookies, authentication, POST/GET/HEAD/DELETE/4 more methods, etc, etc.). Things like CPAN, Pypi, etc. that make it absolutely trivial to get and install a really good library that is easy to use is a HUGE improvement. </p>
http://stackoverflow.com/questions/784857/site-admin-without-username-password/784880#7848807Answer by Kurt for Site admin without username & passwordKurt2009-04-24T07:52:00Z2009-04-24T11:07:25Z<p>Why not just have a user name and password and either have your web browser remember the login, or send an authentication cookie back that doesn't expire. Use a self signed SSL cert to secure the communications channel. If you want to use public/private key crypto just setup an SSH tunnel and post from localhost on your server. Trust me, it's better to re-use known good crypto/security than to try to roll your own.</p>
http://stackoverflow.com/questions/739651/apply-multiple-negative-regex-to-expression-in-python1Apply multiple negative regex to expression in PythonKurt2009-04-11T06:58:44Z2009-04-11T08:32:59Z
<p>This question is similar to <a href="http://stackoverflow.com/questions/597476/how-to-concisely-cascade-through-multiple-regex-statements-in-python">"How to concisely cascade through multiple regex statements in Python"</a> except instead of matching one regular expression and doing something I need to make sure I do not match a bunch of regular expressions, and if no matches are found (aka I have valid data) then do something. I have found one way to do it but am thinking there must be a better way, especially if I end up with many regular expressions.</p>
<p>Basically I am filtering URL's for bad stuff ("", \\", etc.) that occurs when I yank what looks like a valid URL out of an HTML document but it turns out to be part of a JavaScript (and thus needs to be evaluated, and thus the escaping characters). I can't use Beautiful soup to process these pages since they are far to mangled (actually I use BeautifulSoup, then fall back to my ugly but workable parser). </p>
<p>So far I have found the following works relatively well: I compile a dict or regular expressions outside the main loop (so I only have to compile it once, but benefit from the speed increase every time I use it), I then loop a URL through this dict, if there is a match then the URL is bad, if not the url is good:</p>
<pre><code>regex_bad_url = {"1" : re.compile('\"\"'),
"2" : re.compile('\\\"')}
</code></pre>
<p>Followed by:</p>
<pre><code>url_state = "good"
for key, pattern in regex_bad_url_components.items():
match = re.search(pattern, url)
if (match):
url_state = "bad"
if (url_state == "good"):
# do stuff here ...
</code></pre>
<p>Now the obvious thought is to use regex "or" ("|"), i.e.:</p>
<pre><code>re.compile('(\"\"|\\\")')
</code></pre>
<p>Which reduces the number of compares and whatnot, but makes it much harder to trouble shoot (with one expression per compare I can easily add a print statement like:</p>
<pre><code>print "URL: ", url, " matched by key ", key
</code></pre>
<p>So is there someway to get the best of both worlds (i.e. minimal number of compares) yet still be able to print out which regex is matching the URL, or do I simply need to bite the bullet and have my slower but easier to troubleshoot code when debugging and then squoosh all the regex's together into one line for production? (which means one more step of programming and code maintenance and possible problems).</p>
<p>Update:</p>
<p>Good answer by Dave Webb, so the actual code for this would look like:</p>
<pre><code>match = re.search(r'(?P<double_quotes>\"\")|(?P<slash_quote>\\\")', fullurl)
if (match == None):
# do stuff here ...
else:
#optional for debugging
print "url matched by", match.lastgroup
</code></pre>
http://stackoverflow.com/questions/708441/security-review-client-credit-card-stored-on-server-but-with-one-time-pad-encry/708476#7084760Answer by Kurt for Security review: client credit card# stored on server but with one time pad encryption stored in client cookie.Kurt2009-04-02T06:07:38Z2009-04-02T06:07:38Z<p>Technologically: flawed.</p>
<p>Legally: probably flawed. talk to a lawyer.</p>
<p>A one time pad only works if the pad is securely kept secret. Storing it in a cookie definitely doesn't count as secure or secret (it's sent to and from the server, it's dropped onto the user's machine, which might be a public terminal or shared machine). This is a really bad idea. It's a clever idea but ultimately very flawed. I suggest you read the PCI compliance documentation and do what other people do which is (generally speaking):</p>
<ol>
<li>Don't do it. </li>
<li>Use a payment processor that will securely store the CC and handle billing (i.e. PayPal).</li>
<li>Setup a separate and strongly secured payment gateway, this machine only processes credit card transactions, and it in turn accesses a secured machine that stores the credit card data.</li>
<li>Remember that storing credit card numbers will basically violate PCI and will probably violate any merchant agreements and might even be illegal in your jurisdiction (privacy laws, etc.), consult a lawyer please.</li>
<li>Don't do it. Seriously. Find a payment processor who will handle this for you.</li>
</ol>
http://stackoverflow.com/questions/691045/how-do-you-determine-if-an-ip-address-is-private-in-python/692457#6924571Answer by Kurt for How do you determine if an IP address is private, in Python?Kurt2009-03-28T08:33:51Z2009-03-28T08:33:51Z<p>If you want to avoid importing a module you can just apply a simple regex:</p>
<ul>
<li>^127.\d{123}.\d{123}.\d{123}$</li>
<li>^10.\d{123}.\d{123}.\d{123}$</li>
<li>^192.168.\d{123}$</li>
<li>^172.(1[6-9]|2[0-9]|3[0-1]).[0-9]{123}.[0-9]{123}$</li>
</ul>
http://stackoverflow.com/questions/645384/how-far-does-software-copyright-extend/645393#6453930Answer by Kurt for How far does software copyright extend?Kurt2009-03-14T04:46:52Z2009-03-14T04:46:52Z<p>Don't know what country you're in, assuming the US. The relevant things to look into are:</p>
<ul>
<li><a href="http://en.wikipedia.org/wiki/Design%5Fpatent" rel="nofollow">Design patents</a></li>
<li>Copyright of look and feel, which doesn't appear to have happened yet thankfully. <a href="http://en.wikipedia.org/wiki/Apple%5Fv.%5FMicrosoft" rel="nofollow">Apple v. Microsoft</a></li>
<li>Trademark of look and feel (trademarks and copyright are two very different beasts)</li>
</ul>
<p>My advice: find a good lawyer who specializes in copyright and trademark. I suspect a complete clone of the user interface would be in an area gray enough that they might sue thinking they have a reasonable case, whether they win or not doesn't matter if you go bankrupt fighting the suit (plus dealing with any injunctions which I could definitely see the Judge imposing on distribution of your software.</p>
http://stackoverflow.com/questions/633127/python-viewing-all-defined-variables/641618#6416181Answer by Kurt for python: viewing all defined variablesKurt2009-03-13T05:59:14Z2009-03-13T05:59:14Z<p>Already been asked, I posted this a while back, it's at:</p>
<p><a href="http://stackoverflow.com/questions/430811/enumerate-or-list-all-variables-in-a-program-of-your-favorite-language-here">Enumerate or list all variables in a program of [your favorite language here]</a></p>
http://stackoverflow.com/questions/613714/how-do-you-handle-ineffective-programmers/614173#6141731Answer by Kurt for How do you handle Ineffective Programmers?Kurt2009-03-05T10:00:04Z2009-03-05T10:00:04Z<p>I could try really hard, but I'll never play in the NBA. It's a sad story but at some point you have to make a decision, is this a business or is this a group of friends getting together to work on some code? I suspect your boss thinks it is a business.</p>
http://stackoverflow.com/questions/1881632/manage-a-day-to-day-business-with-a-web-appComment by Kurt on Manage a day-to-day business with a web app?Kurt2009-12-15T08:55:21Z2009-12-15T08:55:21Znot really a programming questionhttp://stackoverflow.com/questions/1702562/speeding-up-the-first-page-load-in-django/1703326#1703326Comment by Kurt on Speeding Up the First Page Load in djangoKurt2009-12-03T10:02:25Z2009-12-03T10:02:25ZYou'd still have the same problem with memcached (time to instantiate first object). http://stackoverflow.com/questions/1814847/foreach-and-multidimensional-arraysComment by Kurt on foreach and multidimensional arraysKurt2009-11-29T06:43:31Z2009-11-29T06:43:31Z[TAC] => Array
Err...http://stackoverflow.com/questions/1082702/what-are-queue-access-concurrency-solutions/1085802#1085802Comment by Kurt on what are queue access concurrency solutions?Kurt2009-11-17T20:57:07Z2009-11-17T20:57:07ZWhich it has now had for some time:
-b <dir>
Use a binlog to keep jobs on persistent storage in <dir>. Upon startup, beanstalkd will recover any binlog that is present in <dir>, then, during normal operation, append new jobs and changes in state to the binlog.
http://stackoverflow.com/questions/1739013/find-all-htaccess-files-on-serverComment by Kurt on Find all htaccess files on serverKurt2009-11-15T22:25:20Z2009-11-15T22:25:20ZServer fault maybe, not a programming questionhttp://stackoverflow.com/questions/1692346/adding-authentication-to-beanstalkd-from-python-or-any-unix-client/1692516#1692516Comment by Kurt on Adding authentication to beanstalkd from Python (or any UNIX) clientKurt2009-11-07T22:47:40Z2009-11-07T22:47:40ZThat's not always possible (holding a connection open forever). In any event the reason I ask here is it's not a complete deal breaker, and I also want a solution I can apply now, this is also for an article I'm writing and saying "here's how to secure it.." is a lot better than "the devs are thinking of adding support for foo... someday maybe. Until then good luck!" =) Editors hate that sort of stuff (a.k.a. "This is left as an exercise to the reader").http://stackoverflow.com/questions/1692346/adding-authentication-to-beanstalkd-from-python-or-any-unix-client/1692834#1692834Comment by Kurt on Adding authentication to beanstalkd from Python (or any UNIX) clientKurt2009-11-07T22:45:26Z2009-11-07T22:45:26ZI like things to be closed up and as secure as possible by default, onion layer security. I would like to avoid adding a layer of administrative overhead that's in a totally different system (i.e. firewall) and keep the access controls within beanstalkd/application or do it in such a way that you don't have to fiddle with system settings everytime you want a change (i.e. with SSL the stunnel needs to be fiddled, which is an application level issue, the firewall is a system level issue).http://stackoverflow.com/questions/1660525/how-would-you-design-this-dbComment by Kurt on How would you design this DB?Kurt2009-11-02T11:12:41Z2009-11-02T11:12:41ZMake sure the random number space is big enough otherwise I may be able to guess them, this means having 100-1000 times the address space you need (so 3-4 extra digits). So for you it sounds like you could safely issue a few million/tens of millions of cards, something to keep in mind.http://stackoverflow.com/questions/1660059/read-string-backwards-and-terminate-at-firstComment by Kurt on read string backwards and terminate at first '/'Kurt2009-11-02T08:52:05Z2009-11-02T08:52:05ZThe question is poorly worded, should be "How do I extract the filename from a path."http://stackoverflow.com/questions/1648562/what-are-some-good-open-source-ecommerce-applications-with-subscription-supportComment by Kurt on What are some good open source ecommerce applications with subscription support?Kurt2009-10-30T09:01:48Z2009-10-30T09:01:48Znot a programming questionhttp://stackoverflow.com/questions/1648206/does-a-pronounceable-encoding-exist/1648341#1648341Comment by Kurt on Does a pronounceable encoding exist ?Kurt2009-10-30T08:41:24Z2009-10-30T08:41:24ZIf you're using long strings of digits PLEASE put a dash in every 4 characters so that people can use their well trained short memory (credit card #'s, phone #'s) to read digits in groupings of 4.http://stackoverflow.com/questions/1648206/does-a-pronounceable-encoding-exist/1648234#1648234Comment by Kurt on Does a pronounceable encoding exist ?Kurt2009-10-30T08:39:41Z2009-10-30T08:39:41ZThen I would just go with hex encoding, 0-9, a-f, most people can read/pronounce those without to much trouble.http://stackoverflow.com/questions/1637952/should-entry-level-programmers-be-able-to-answer-fizzbuzz/1638296#1638296Comment by Kurt on Should entry level programmers be able to answer FizzBuzz?Kurt2009-10-28T23:30:53Z2009-10-28T23:30:53ZDo you also look at how they triage it (assuming this is allowed)?http://stackoverflow.com/questions/1637952/should-entry-level-programmers-be-able-to-answer-fizzbuzz/1637962#1637962Comment by Kurt on Should entry level programmers be able to answer FizzBuzz?Kurt2009-10-28T23:19:37Z2009-10-28T23:19:37Z@David There's nothing inherently wrong with C++ for web based services depending on what they are doing (integrating with existing C++ code for example), but I suspect yeah you'd end up in a corner with no way out.http://stackoverflow.com/questions/1622700/remote-sql-serverComment by Kurt on Remote SQL Server?Kurt2009-10-26T06:41:11Z2009-10-26T06:41:11ZThis belongs on serverfault.com