User dbr - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T13:10:03Z http://stackoverflow.com/feeds/user/745 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/36862/how-do-you-organise-multiple-git-repositories 12 How do you organise multiple git repositories? dbr 2008-08-31T13:54:20Z 2009-11-21T16:39:12Z <p>With SVN, I had a single big repository I kept on a server, and checked-out on a few machines. This was a pretty good backup system, and allowed me easily work on any of the machines. I could checkout a specific project, commit and it updated the 'master' project, or I could checkout the entire thing.</p> <p>Now, I have a bunch of git repositories, for various projects, several of which are on github. I also have the SVN repository I mentioned, imported via the git-svn command..</p> <p>Basically, I like having all my code (not just projects, but random snippets and scripts, some things like my CV, articles I've written, websites I've made and so on) in one big repository I can easily clone onto remote machines, or memory-sticks/harddrives as backup.</p> <p>The problem is, since it's a private repository, and git doesn't allow checking out of a specific folder (that I could push to github as a separate project, but have the changes appear in both the master-repo, and the sub-repos)</p> <p>I <em>could</em> use the git submodule system, but it doesn't act how I want it too (submodules are pointers to other repositories, and don't really contain the actual code, so it's useless for backup)</p> <p>Currently I have a folder of git-repos (for example, ~/code_projects/proj1/.git/ ~/code_projects/proj2/.git/), and after doing changes to proj1 I do <code>git push github</code>, then I copy the files into ~/Documents/code/python/projects/proj1/ and do a single commit (instead of the numerous ones in the individual repos). Then do <code>git push backupdrive1</code>, <code>git push mymemorystick</code> etc</p> <p>So, the question: How do your personal code and projects with git repositories, and keep them synced and backed-up?</p> http://stackoverflow.com/questions/333664/simple-long-polling-example-code 13 Simple "Long Polling" example code? dbr 2008-12-02T11:14:47Z 2009-11-19T17:36:45Z <p>I can find lots of information on how Long Polling works (For example, <a href="http://weblogs.java.net/blog/jfarcand/archive/2007/05/new_adventures.html" rel="nofollow">this</a>, and <a href="http://en.wikipedia.org/wiki/Comet_(programming)#Ajax_with_long_polling" rel="nofollow">this</a>), but no <em>simple</em> examples of how to implement this in code.</p> <p>All I can find is <a href="http://code.google.com/p/cometd/" rel="nofollow">cometd</a>, which relies on the Dojo JS framework, and a fairly complex server system..</p> <p>Basically, how would I use Apache to serve the requests, and how would I write a simple script (say, in PHP) which would "long-poll" the server for new messages?</p> <p>The example doesn't have to be scaleable, secure or complete, it just needs to work!</p> http://stackoverflow.com/questions/1551453/auto-hide-the-os-x-menu-bar-system-wide 0 Auto-hide the OS X menu bar system-wide dbr 2009-10-11T18:56:05Z 2009-11-17T03:21:00Z <p>I wish to write a utility to auto-hide the menu bar, much like the dock. This would replicate the a OS X 10.4-only application "Menufela", but for Snow Leopard.</p> <pre><code>[[NSApplication sharedApplication] setPresentationOptions: NSApplicationPresentationAutoHideMenuBar | NSApplicationPresentationAutoHideDock]; </code></pre> <p>This code auto-hides the menu bar (and dock), but only in when the application is the frontmost window. How would I go about applying this behaviour system wide, regardless of what application is open?</p> <p>The only thing I can think of is an InputManager, but I haven't written one before, thus I'm unsure if this is the correct way to go about it..</p> <p>Also it seems InputManagers are limited as of Leopard/Snow Leopard - from <a href="http://stackoverflow.com/questions/262493/best-way-to-inject-functionality-into-a-binary/262633#262633">this SO question</a>:</p> <blockquote> <p>it won't run them in a process owned by root or whell, nor in a process which has modified its uid. Most significantly, 10.5 won't load an Input Manager into a 64 bit process and has indicated that even 32 bit use is unsupported and will be removed in a future release.</p> </blockquote> <p>I'm not concerned about the "will be removed in a future release" (it just has to work on Snow Leopard), and I don't think root-owned processes are an issue (all GUI applications should be running as the current), but presumably the code would have to be injected into many 64-bit applications (Finder/Safari/etc)</p> <p>(I originally asked this on SuperUser, <a href="http://superuser.com/questions/53724/auto-hide-os-x-menu-bar">here</a>, but as there was seemingly no existing utility to achieve this, it's more relevant to StackOverflow)</p> http://stackoverflow.com/questions/108892/is-there-something-like-autotest-for-python-unittests 8 Is there something like 'autotest' for Python unittests? dbr 2008-09-20T18:07:40Z 2009-11-16T19:58:57Z <p>Basically, growl notifications (or other callbacks) when tests break or pass. <strong>Does anything like this exist?</strong></p> <p>If not, it should be pretty easy to write.. Easiest way would be to..</p> <ol> <li>run <code>python-autotest myfile1.py myfile2.py etc.py</code></li> <li>Check if files-to-be-monitored have been modified (possibly just if they've been saved).</li> <li>Run any tests in those files.</li> <li>If a test fails, but in the previous run it passed, generate a growl alert. Same with tests that fail then pass.</li> <li>Wait, and repeat steps 2-5.</li> </ol> <p>The problem I can see there is if the tests are in a different file. The simple solution would be to run all the tests after each save.. but with slower tests, this might take longer than the time between saves, and/or could use a lot of CPU power etc..</p> <p>The best way to do it would be to actually see what bits of code have changed, if function abc() has changed, only run tests that interact with this.. While this would be great, I think it'd be extremely complex to implement?</p> <p>To summarise:</p> <ul> <li>Is there anything like the Ruby tool <code>autotest</code> (part of the <a href="http://www.zenspider.com/ZSS/Products/ZenTest/" rel="nofollow">ZenTest package</a>), but for Python code?</li> <li>How do you check which functions have changed between two revisions of a script?</li> <li>Is it possible to determine which functions a command will call? (Somewhat like a reverse traceback)</li> </ul> http://stackoverflow.com/questions/1724080/how-to-split-the-file-content-by-space-and-end-of-line-character/1724275#1724275 0 Answer by dbr for How to split the file content by space and end-of-line character? dbr 2009-11-12T18:12:48Z 2009-11-12T18:12:48Z <blockquote> <p>Is there a better way to do this via list comprehension?</p> </blockquote> <p>Sort of..</p> <p>Instead of reading each line as an array, with the <code>.readlines()</code> methods, you can just use <code>.read()</code>:</p> <pre><code>channel_values = [x for x in open(channel_output_file).readlines().split(' ') if x not in [' ', '\n']] </code></pre> <p>If you need to do anything more complicated, particularly if it involves multiple list-comprehensions, you're almost always better of expanding it into a regular <code>for</code> loop.</p> <pre><code>out = [] for y in open(channel_output_file).readlines(): for x in y.split(' '): if x not in [' ', '\n']: out.append(x) </code></pre> <p>Or using a for loop and a list-comprehension:</p> <pre><code>out = [] for y in open(channel_output_file).readlines(): out.extend( [x for x in y.split(' ') if x != ' ' and x != '\n']) </code></pre> <p>Basically, if you can't do something simply with a list comprehension (or need to nest them), list-comprehensions are probably not the best solution.</p> http://stackoverflow.com/questions/190464/how-much-of-an-operating-system-could-be-written-in-say-python 6 How much of an operating system could be written in, say, Python? dbr 2008-10-10T07:58:24Z 2009-11-05T04:37:47Z <p>This is a pretty-much theoretical question, but..</p> <p><strong>How much of an operating system could be written in a language like Python, Ruby, Perl, or Lisp, Haskell etc?</strong></p> <p>It seems like a lot of the stuff like init.d could trivially be done in a scripting language. One of the firewall-device-OS's (<a href="http://m0n0.ch/wall/" rel="nofollow">m0n0wall</a>) uses PHP for its system-configuration (including on boot). And one could argue that "emacs is an OS, mostly written in Lisp"..</p> <p>Of course there are bits that would have to be assembly/C, but how much could be regular .py/rb/.pl/.el/.hk files..? It might not have the best performance, but it would be, by far, the most easiest-to-modify OS ever...</p> http://stackoverflow.com/questions/1538663/newbie-question-why-are-python-strings-and-tuples-are-made-immutable/1632939#1632939 1 Answer by dbr for newbie question: why are python strings and tuples are made immutable? dbr 2009-10-27T18:56:17Z 2009-10-27T18:56:17Z <p>Imagine a language called FakeMutablePython, where you can alter strings using list assignment and such (such as <code>mystr[0] = 'a'</code>)</p> <pre><code>a = "abc" </code></pre> <p>That creates an entry in memory in memory address 0x1, containing "abc", and the identifier <code>a</code> pointing to it.</p> <p>Now, say you do..</p> <pre><code>b = a </code></pre> <p>This creates the identifier <code>b</code> and also points it to the same memory address of 0x1</p> <p>Now, if the string were mutable, and you change <code>b</code>:</p> <pre><code>b[0] = 'z' </code></pre> <p>This alters the first byte of the string stored at 0x1 to <code>z</code>.. Since the identifier <code>a</code> is pointing to here to, thus that string would altered also, so..</p> <pre><code>print a print b </code></pre> <p>..would both output <code>zbc</code></p> <p>This could make for some really weird, unexpected behaviour. Dictionary keys would be a good example of this:</p> <pre><code>mykey = 'abc' mydict = { mykey: 123, 'zbc': 321 } anotherstring = mykey anotherstring[0] = 'z' </code></pre> <p>Now in FakeMutablePython, things become rather odd - you initially have two keys in the dictionary, "abc" and "zbc".. Then you alter the "abc" string (via the identifier <code>anotherstring</code>) to "zbc", so the dict has two keys, "zbc" and "zbc"...</p> <p>One solution to this weirdness would be, whenever you assign a string to an identifier (or use it as a dict key), it copies the string at 0x1 to 0x2.</p> <p>This prevents the above, but what if you have a string that requires 200MB of memory?</p> <pre><code>a = "really, really long string [...]" b = a </code></pre> <p>Suddenly your script takes up 400MB of memory? This isn't very good.</p> <p>What about if we point it to the same memory address, until we modify it? <a href="http://en.wikipedia.org/wiki/Copy-on-write" rel="nofollow">Copy on write</a>. The problem is, this can be quite complicated to do..</p> <p>This is where immutability comes in.. Instead of requiring the <code>.replace()</code> method to copy the string from memory into a new address, then modify it and return.. We just make all strings immutable, and thus the function must create a new string to return. This explains the following code:</p> <pre><code>a = "abc" b = a.replace("a", "z") </code></pre> <p>And is proven by:</p> <pre><code>&gt;&gt;&gt; a = 'abc' &gt;&gt;&gt; b = a &gt;&gt;&gt; id(a) == id(b) True &gt;&gt;&gt; b = b.replace("a", "z") &gt;&gt;&gt; id(a) == id(b) False </code></pre> <p>(the <a href="http://docs.python.org/library/functions.html#id" rel="nofollow"><code>id()</code></a> function returns the memory address of the object)</p> http://stackoverflow.com/questions/1398591/how-do-i-execute-a-php-shell-script-as-an-automator-action-on-mac-os-x/1621289#1621289 0 Answer by dbr for How do I execute a PHP shell script as an Automator action on Mac OS X dbr 2009-10-25T16:12:54Z 2009-10-25T16:12:54Z <p>You can use the "Run Shell Script" action to run a PHP script. One self-contained way is to use <code>&lt;&lt;EOF ... EOF</code> to pass the script to the <code>php</code> command:</p> <p><img src="http://img259.imageshack.us/img259/8259/phpshellaction.png" alt="Using &quot;execute shell script&quot; action for PHP code" title="" /></p> <p><em>(I would strongly recommend learning Python, Ruby or Perl.. PHP does has some advantages for web-programming, but is just not intended for command-line scripting.. It's certainly doable, it'll just not be nearly as.. pleasant)</em></p> http://stackoverflow.com/questions/1620851/python-script-to-print-all-function-definitions-of-a-c-c-file/1621055#1621055 1 Answer by dbr for Python script to print all function definitions of a C/C++ file dbr 2009-10-25T14:30:54Z 2009-10-25T14:30:54Z <p>To do this reliably, you'd need to parse the C or C++ code, and then grab the function definitions from the AST the parser produces.</p> <p>C is fairly easy to parse. As <a href="http://stackoverflow.com/questions/1620851/python-script-to-print-all-function-definitions-of-a-c-c-file/1621011#1621011">pavpanchekha</a> mentions, the parser PLY comes with a C parser, and has been used to make the following relevant projects:</p> <ul> <li><a href="http://code.google.com/p/pycparser/" rel="nofollow">pycparser</a></li> <li><a href="http://sourceforge.net/projects/cppheaderparser/" rel="nofollow">CppHeaderParser</a></li> </ul> <p>Parsing C++ code is more complicated.. <a href="http://stackoverflow.com/questions/1444961/is-there-a-good-python-library-that-can-parse-c">"Is there a good Python library that can parse C++"</a> should be of help:</p> <blockquote> <p>C++ is notoriously hard to parse. Most people who try to do this properly end up taking apart a compiler. In fact this is (in part) why LLVM started: Apple needed a way they could parse C++ for use in XCode that matched the way the compiler parsed it.</p> <p>That's why there are projects like <a href="http://www.gccxml.org/HTML/Index.html" rel="nofollow">GCC_XML</a> which you could combine with a python xml library.</p> </blockquote> <p>Finally, if your code doesn't need to be robust at all, you could run the code though a code-reformatter, like <a href="http://linux.die.net/man/1/indent" rel="nofollow">indent</a> (for C code) to even things out, then use regular expressions to match the function definition. Yes this is a bad, hacky, error-prone idea, and you'll probably find function definitions in multiline comments and such, but it might work well enough..</p> http://stackoverflow.com/questions/536148/c-string-parsing-python-style/1621028#1621028 1 Answer by dbr for C++ string parsing (python style) dbr 2009-10-25T14:19:26Z 2009-10-25T14:19:26Z <p>One of Sony Picture Imagework's open-source projects is <a href="http://code.google.com/p/pystring/" rel="nofollow">Pystring</a>, which should make for a mostly direct translation of the string-splitting parts:</p> <blockquote> <p>Pystring is a collection of C++ functions which match the interface and behavior of python’s string class methods using std::string. Implemented in C++, it does not require or make use of a python interpreter. It provides convenience and familiarity for common string operations not included in the standard C++ library</p> </blockquote> <p>There are <a href="http://code.google.com/p/pystring/wiki/Examples" rel="nofollow">a few examples</a>, and <a href="http://code.google.com/p/pystring/wiki/Documentation" rel="nofollow">some documentation</a></p> http://stackoverflow.com/questions/1604305/all-but-last-element-of-ruby-array/1618689#1618689 0 Answer by dbr for All but last element of Ruby array dbr 2009-10-24T18:27:25Z 2009-10-24T18:27:25Z <p><code>a[0...-1]</code> seems like the best way. The array slicing syntax was created for exactly this purpose...</p> <p>Alternatively, if you don't mind modifying the array in place, you could just call <code>a.pop</code>:</p> <pre><code>&gt;&gt; a = [1, 2, 3, 4] &gt;&gt; a.pop &gt;&gt; a =&gt; [1, 2, 3] </code></pre> http://stackoverflow.com/questions/1586648/race-condition-creating-folder-in-python 7 Race-condition creating folder in Python dbr 2009-10-19T01:52:13Z 2009-10-19T10:20:55Z <p>I have a urllib2 caching module, which sporadically crashes because of the following code:</p> <pre><code>if not os.path.exists(self.cache_location): os.mkdir(self.cache_location) </code></pre> <p>The problem is, by the time the second line is being executed, the folder may exist, and will error:</p> <pre> File ".../cache.py", line 103, in __init__ os.mkdir(self.cache_location) OSError: [Errno 17] File exists: '/tmp/examplecachedir/'</pre> <p>This is because the script is simultaneously launched numerous times, by third-party code I have no control over.</p> <p>The code (before I attempted to fix the bug) can be found <a href="http://github.com/dbr/tvdb%5Fapi/commit/e7429cce89fb2406efce6d81336e2ffa01479976" rel="nofollow">here, on github</a></p> <p>I can't use the <a href="http://docs.python.org/library/tempfile.html#tempfile.mkdtemp" rel="nofollow">tempfile.mkstemp</a>, as it solves the race condition by using a randomly named directory (<a href="http://svn.python.org/projects/python/trunk/Lib/tempfile.py" rel="nofollow">tempfile.py source here</a>), which would defeat the purpose of the cache.</p> <p>I don't want to simply discard the error, as the same error Errno 17 error is raised if the folder name exists as a file (a different error), for example:</p> <pre>$ touch blah $ python >>> import os >>> os.mkdir("blah") Traceback (most recent call last): File "", line 1, in OSError: [Errno 17] File exists: 'blah' >>></pre> <p>I cannot using <code>threading.RLock</code> as the code is called from multiple processes.</p> <p>So, I tried writing a simple file-based lock (<a href="http://github.com/dbr/tvdb%5Fapi/blob/343df228d519ac5c8895a1e6bdab8d259a64cdb9/cache.py" rel="nofollow">that version can be found here</a>), but this has a problem: it creates the lockfile one level up, so <code>/tmp/example.lock</code> for <code>/tmp/example/</code>, which breaks if you use <code>/tmp/</code> as a cache dir (as it tries to make <code>/tmp.lock</code>)..</p> <p>In short, I need to cache <code>urllib2</code> responses to disc. To do this, I need to access a known directory (creating it, if required), in a multiprocess safe way. It needs to work on OS X, Linux and Windows.</p> <p>Thoughts? The only alternative solution I can think of is to rewrite the cache module using SQLite3 storage, rather than files.</p> http://stackoverflow.com/questions/1586389/how-to-check-for-a-duplicate-email-address-in-php-considering-gmail-user-namel/1586496#1586496 0 Answer by dbr for How to check for a duplicate email address in PHP, considering Gmail (user.name+label@gmail.com) dbr 2009-10-19T00:51:29Z 2009-10-19T00:51:29Z <p>Email address parsing is really, really hard to do correctly, without breaking things and annoying users..</p> <p>First, I would question if you really need to do this? Why do you have multiple email addresses, with different sub-addresses?</p> <p>If you are sure you need to do this, first read <a href="http://www.ietf.org/rfc/rfc0822.txt" rel="nofollow">rfc0822</a>, then modify <a href="http://www.ex-parrot.com/~pdw/Mail-RFC822-Address.html" rel="nofollow">this email address parsing regex</a> to extract all parts of the email, and recombine them excluding the label..</p> <p>Slightly more.. practically, the Email Address wikipedia page has a section on this part of the address format, <a href="http://en.wikipedia.org/wiki/E-mail%5Faddress#Sub-addressing" rel="nofollow">Sub-addressing</a>.</p> <p>The code powtac posted looks like it should work - as long as you're not using it in an automated manner to delete accounts or anything, it should be fine.</p> <p>Note that the "automated labeler" isn't a GMail specific feature, Gmail simply popularised it.. Other mail servers support this feature, some using <code>+</code> as the separator, others using <code>-</code>. If you are going to special-case spaces in GMail addresses, remember to consider the <code>googlemail.com</code> domain also</p> http://stackoverflow.com/questions/1586147/how-to-generate-random-greenish-colors/1586291#1586291 8 Answer by dbr for How to generate random 'greenish' colors dbr 2009-10-18T23:10:07Z 2009-10-18T23:24:14Z <p>As others have suggested, generating random colours is much easier in the HSV colour space (or HSL, the difference is pretty irrelevant for this)</p> <p>So, code to generate random "green'ish" colours, and (for demonstration purposes) display them as a series of simple coloured HTML span tags:</p> <pre><code>#!/usr/bin/env python2.5 """Random green colour generator, written by dbr, for http://stackoverflow.com/questions/1586147/how-to-generate-random-greenish-colors """ def hsv_to_rgb(h, s, v): """Converts HSV value to RGB values Hue is in range 0-359 (degrees), value/saturation are in range 0-1 (float) Direct implementation of: http://en.wikipedia.org/wiki/HSL_and_HSV#Conversion_from_HSV_to_RGB """ h, s, v = [float(x) for x in (h, s, v)] hi = (h / 60) % 6 hi = int(round(hi)) f = (h / 60) - (h / 60) p = v * (1 - s) q = v * (1 - f * s) t = v * (1 - (1 - f) * s) if hi == 0: return v, t, p elif hi == 1: return q, v, p elif hi == 2: return p, v, t elif hi == 3: return p, q, v elif hi == 4: return t, p, v elif hi == 5: return v, p, q def test(): """Check examples on.. http://en.wikipedia.org/wiki/HSL_and_HSV#Examples ..work correctly """ def verify(got, expected): if got != expected: raise AssertionError("Got %s, expected %s" % (got, expected)) verify(hsv_to_rgb(0, 1, 1), (1, 0, 0)) verify(hsv_to_rgb(120, 0.5, 1.0), (0.5, 1, 0.5)) verify(hsv_to_rgb(240, 1, 0.5), (0, 0, 0.5)) def main(): """Generate 50 random RGB colours, and create some simple coloured HTML span tags to verify them. """ test() # Run simple test suite from random import randint, uniform for i in range(50): # Tweak these values to change colours/variance h = randint(90, 140) # Select random green'ish hue from hue wheel s = uniform(0.2, 1) v = uniform(0.3, 1) r, g, b = hsv_to_rgb(h, s, v) # Convert to 0-1 range for HTML output r, g, b = [x*255 for x in (r, g, b)] print "&lt;span style='background:rgb(%i, %i, %i)'&gt;&amp;nbsp;&amp;nbsp;&lt;/span&gt;" % (r, g, b) if __name__ == '__main__': main() </code></pre> <p>The output (when viewed in a web-browser) should look something along the lines of:</p> <p><img src="http://img197.imageshack.us/img197/5770/randomgreens.png" alt="Example output, showing random green colours" title="" /></p> <p><em>Edit</em>: I didn't know about the colorsys module. Instead of the above <code>hsv_to_rgb</code> function, you could use <a href="http://docs.python.org/library/colorsys.html#colorsys.hsv%5Fto%5Frgb" rel="nofollow">colorsys.hsv_to_rgb</a>, which makes the code <em>slightly</em> shorter (it's not quite a drop-in replacement, as my <code>hsv_to_rgb</code> function expects the hue to be in degrees instead of 0-1):</p> <pre><code>#!/usr/bin/env python2.5 from colorsys import hsv_to_rgb from random import randint, uniform for x in range(50): h = uniform(0.25, 0.38) # Select random green'ish hue from hue wheel s = uniform(0.2, 1) v = uniform(0.3, 1) r, g, b = hsv_to_rgb(h, s, v) # Convert to 0-1 range for HTML output r, g, b = [x*255 for x in (r, g, b)] print "&lt;span style='background:rgb(%i, %i, %i)'&gt;&amp;nbsp;&amp;nbsp;&lt;/span&gt;" % (r, g, b) </code></pre> http://stackoverflow.com/questions/1585964/bourne-shell-script-to-convert-a-number-to-telephone-format/1586149#1586149 0 Answer by dbr for Bourne shell script to convert a number to telephone format dbr 2009-10-18T22:01:13Z 2009-10-18T22:01:13Z <p>Shell scripts are basically just a bunch of commands, piped together, you can simply call any scripting language (such as Python/Ruby/Perl) as you would sed/awk/grep.</p> <p>For example, using Ruby:</p> <pre><code>$ echo "Change 1234567890 to 456-7890" | ruby -e 'puts $stdin.read.gsub(/\d{3}(\d{3})(\d{3})/){|x| "#{$1}-#{$2}"}' </code></pre> <p>..which outputs:</p> <pre>Change 456-7890 to 456-7890</pre> <p>There are a few benefit of using (for example) Ruby over sed:</p> <ul> <li>Ruby/etc will be more consistent over multiple platforms than sed/awk/grep, which tend to take different arguments and function slightly differently, depending on the which OS/distribution is being used</li> <li>If the command becomes becomes more complicated, it is trivial to turn this into a "proper" script</li> </ul> http://stackoverflow.com/questions/1586056/using-layers-z-index-without-leaving-empty-space/1586095#1586095 0 Answer by dbr for Using Layers (z-index) without leaving empty space dbr 2009-10-18T21:35:51Z 2009-10-18T21:35:51Z <p>This may not be a problem with your HTML/CSS, but rather something strange with Flash, where it always tries to be on-top.</p> <p><a href="http://archivist.incutio.com/viewlist/css-discuss/66057" rel="nofollow">From this message</a>, the solution is to use pass the <code>wmode="transparent"</code> parameter to the flash file:</p> <pre><code>&lt;param name="wmode" value="transparent" /&gt; &lt;EMBED src="swf.swf" quality=best bgcolor=#FFFFFF wmode="transparent" WIDTH="550" ... </code></pre> http://stackoverflow.com/questions/1569315/setup-py-upload-is-failing-with-upload-failed-401-you-must-be-identified-to 0 "setup.py upload" is failing with "Upload failed (401): You must be identified to edit package information" dbr 2009-10-14T22:15:41Z 2009-10-14T22:19:24Z <p>When running..</p> <pre><code>python setup.py sdist register upload </code></pre> <p>..I get the following output:</p> <pre><code>running register We need to know who you are, so please choose either: 1. use your existing login, 2. register as a new user, 3. have the server generate a new password for you (and email it to you), or 4. quit Your selection [default 1]: 1 Username: example Password: ... Registering mypackage to http://pypi.python.org/pypi Server response (200): OK I can store your PyPI login so future submissions will be faster. (the login will be stored in /Users/dbr/.pypirc) Save your login (y/N)?y running upload Submitting dist/mypackage-1.2.1.tar.gz to http://pypi.python.org/pypi Upload failed (401): You must be identified to edit package information </code></pre> <p>It's prompting to save the login details, despite <code>~/.pypirc</code> already containing this. It then fails to upload files for a package I own, and have full write-access to.</p> http://stackoverflow.com/questions/1569315/setup-py-upload-is-failing-with-upload-failed-401-you-must-be-identified-to/1569331#1569331 1 Answer by dbr for "setup.py upload" is failing with "Upload failed (401): You must be identified to edit package information" dbr 2009-10-14T22:19:24Z 2009-10-14T22:19:24Z <p>Just found <a href="http://www.davidcramer.net/code/python/443/problems-uploading-packages-with-setuptools-on-os-x.html" rel="nofollow">this page</a>, which solves the issue:</p> <blockquote> <p>I also noticed that while it was asking me to save my login information, and I hit Y everytime, it still asked me for the username and password. It turned out that it was saving the information incorrectly as follows:</p> <pre><code>[pypi] username:dcramer password:******* </code></pre> <p>Changing it out to this solved the problems:</p> <pre><code>[server-login] username:dcramer password:******** </code></pre> </blockquote> <p>Ugh.. I think this may be a good time to give <a href="http://pypi.python.org/pypi/distribute" rel="nofollow">distribute</a> a try..</p> http://stackoverflow.com/questions/315911/git-for-beginners-the-definitive-practical-guide/320140#320140 16 Answer by dbr for Git for beginners: The definitive practical guide dbr 2008-11-26T09:26:46Z 2009-10-13T14:23:02Z <h1>How do you create a new project/repository?</h1> <p>A git repository is simply a directory containing a special <code>.git</code> directory.</p> <p>This is different from "centralised" version-control systems (like subversion), where a "repository" is hosted on a remote server, which you <code>checkout</code> into a "working copy" directory. With git, your working copy <em>is</em> the repository.</p> <p>Simply run <code>git init</code> in the directory which contains the files you wish to track.</p> <p>For example,</p> <pre><code>cd ~/code/project001/ git init </code></pre> <p>This creates a <code>.git</code> (hidden) folder in the current directory.</p> <p>To make a new project, you would made a new directory and run <code>git init</code> in this:</p> <pre><code>cd ~/code/ mkdir project002 cd project 002 git init </code></pre> <p>To check if the current current path is within a git repository, simply run <code>git status</code> - if it's not a repository, it will report "fatal: Not a git repository"</p> <p>You could also list the <code>.git</code> directory, and check it contains files/directories similar to the following:</p> <pre><code>$ ls .git HEAD config hooks/ objects/ branches/ description info/ refs/ </code></pre> <p><hr /></p> <p>If for whatever reason you wish to "de-git" a repository (you wish to stop using git to track that project). Simply remove the <code>.git</code> directory at the base level of the repository.</p> <pre><code>cd ~/code/project001/ rm -rf .git/ </code></pre> <p><strong>Caution:</strong> This will destroy <em>all</em> revision history, <em>all</em> your tags, <em>everything</em> git has done. It will not touch the "current" files (the files you can currently see), but previous changes, deleted files and so on will be unrecoverable!</p> http://stackoverflow.com/questions/225598/pretty-continuous-integration-for-python 15 "Pretty" Continuous Integration for Python dbr 2008-10-22T12:49:54Z 2009-10-13T00:58:16Z <p>This is a slightly.. vain question, but BuildBot's output isn't particularly nice to look at..</p> <p>For example, compared to..</p> <ul> <li><a href="http://phpundercontrol.org/about.html" rel="nofollow">phpUnderControl</a></li> <li><a href="http://blogs.sun.com/arungupta/entry/top%5F10%5Ffeatures%5Fof%5Fhudson" rel="nofollow">Hudson</a></li> <li><a href="http://cruisecontrolrb.thoughtworks.com/" rel="nofollow">CruiseControl.rb</a></li> </ul> <p>..and others, <a href="http://www.python.org/dev/buildbot/stable/" rel="nofollow">BuildBot</a> looks rather.. archaic</p> <p>I'm currently playing with Hudson, but it is very Java-centric (although with <a href="http://redsolo.blogspot.com/2007/11/hudson-embraces-python.html" rel="nofollow">this guide</a>, I found it easier to setup than BuildBot, and produced more info)</p> <p>Basically: is there any Continuous Integration systems aimed at python, that produce lots of shiney graphs and the likes?</p> <p><hr /></p> <p><strong>Update:</strong> After trying a few alternatives, I think I'll stick with Hudson. <a href="http://integrityapp.com/" rel="nofollow">Integrity</a> was nice and simple, but quite limited. I think <a href="http://buildbot.net/trac" rel="nofollow">Buildbot</a> is better suited to having numerous build-slaves, rather than everything running on a single machine like I was using it.</p> <p>Setting Hudson up for a Python project was pretty simple:</p> <ul> <li>Download Hudson from <a href="https://hudson.dev.java.net/" rel="nofollow">https://hudson.dev.java.net/</a></li> <li>Run it with <code>java -jar hudson.war</code></li> <li>Open the web interface on the default address of <a href="http://localhost:8080" rel="nofollow">http://localhost:8080</a></li> <li>Go to Manage Hudson, Plugins, click "Update" or similar</li> <li>Install the Git plugin (I had to set the <code>git</code> path in the Hudson global preferences)</li> <li>Create a new project, enter the repository, SCM polling intervals and so on</li> <li>Install <code>nosetests</code> via <code>easy_install</code> if it's not already</li> <li>In the a build step, add <code>nosetests --with-xunit --verbose</code></li> <li>Check "Publish JUnit test result report" and set "Test report XMLs" to <code>**/nosetests.xml</code></li> </ul> <p>That's it. You can setup various notifiers, install the SLOCCount plugin to count lines of code (and graph it!), use the Violations plugin to parse the PyLint output (you can setup warning thresholds, graph the number of violations over each build)</p> http://stackoverflow.com/questions/51971/can-anyone-recommend-a-complete-objc-cocoa-or-cocoa-touch-tutorial 10 Can anyone recommend a complete ObjC/Cocoa or Cocoa-Touch tutorial? dbr 2008-09-09T14:07:50Z 2009-10-11T17:21:27Z <p>I went though "Become an Xcoder", which was very useful, but it ended very abruptly, just as I started to understand about ObjC's syntax, and about Inlets/Outlets and such in Interface Builder.</p> <p>I've looked around, and found a bunch of tutorials that cover writing an application, but these either seem to be "Open Interface Builder, add a text label, change the text and click Run", or "Open IB, add this, this and this, add these inlets/outlets. Now here is a hundred lines of ObjC to copy and paste. Click compile and you're done". There was no middle ground.</p> <p>Basically, I would love a tutorial that actually shows how you arrive at the end code, and shows how to make something beyond "Hello world".</p> <p>Ideally it would be centered around the iPhone Cocoa Touch stuff (but there will be far more Cocoa tutorials around, and the two systems are pretty similar) - either would be incredibly useful!</p> <p>(<em>Please</em> don't discuss the iPhone-SDK NDA. It's <strong>really</strong> not intended to prevent bloggers and such posting tutorials..)</p> <p><em>[Update]</em> I bought the Aaron Hillegass/Cocoa Programming book. It's extremely useful, and is very relevant to iPhone programming - for one, none of the code in the book depends on the ObjC2.0 garbage collection which is the biggest difference between programming for the phone vs regular Cocoa.</p> http://stackoverflow.com/questions/1540835/trace-bpt-trap-with-python-threading-module 0 Trace/BPT trap with Python threading module dbr 2009-10-08T22:21:16Z 2009-10-10T09:06:29Z <p>The following code dies with <code>Trace/BPT trap</code>:</p> <pre><code>from tvdb_api import Tvdb from threading import Thread class GrabStuff(Thread): def run(self): t = Tvdb() def main(): threads = [GrabStuff() for x in range(1)] [x.start() for x in threads] [x.join() for x in threads] if __name__ == '__main__': main() </code></pre> <p>The error occurs due to the <code>Tvdb()</code>, but I have no idea why.</p> <p>I ran the code with <code>python -m pdb thescript.py</code> and stepped through the code, and it dies at after the following lines:</p> <pre><code>&gt; .../threading.py(468)start() -&gt; _active_limbo_lock.acquire() (Pdb) &gt; .../threading.py(469)start() -&gt; _limbo[self] = self (Pdb) &gt; .../threading.py(470)start() -&gt; _active_limbo_lock.release() (Pdb) &gt; .../threading.py(471)start() -&gt; _start_new_thread(self.__bootstrap, ()) (Pdb) &gt; .../threading.py(472)start() -&gt; self.__started.wait() (Pdb) Trace/BPT trap </code></pre> <p>(I replaced the full path to threading.py with <code>...</code>)</p> <p>The same problem occurs with <code>2.6.1</code> and <code>2.5.4</code>. The machine is running on OS X 10.6.1 Snow Leopard. The <code>tvdb_api</code> code can be found on <a href="http://github.com/dbr/tvdb%5Fapi" rel="nofollow">github.com/dbr/tvdb_api</a></p> http://stackoverflow.com/questions/1544350/condense-this-python-statement-without-destroying-readability/1544682#1544682 2 Answer by dbr for Condense this Python statement without destroying readability dbr 2009-10-09T16:01:27Z 2009-10-09T16:31:29Z <p>It sounds as if you want something like..</p> <pre><code>if result = some_function(arg1, arg2): return result </code></pre> <p>This is very deliberately not possible in Python. It's too common a typo to write <code>if a = b</code> instead of <code>if a == b</code>, and allowing this mixes assignment with flow-control. If this is necessary, split it into two lines:</p> <pre><code>x = some_function() if x: print "Function returned True" </code></pre> <p>A more practical example of this is..</p> <pre><code>result = re.match("a", "b") if result: print result.groups() </code></pre> <p>(more correctly, you should do <code>if result is not None:</code> in this case, although the above works)</p> <p>In your specific case ("to verify that my internal functions return successfully"), it sounds like you should use exceptions. If everything is fine, just return whatever you wish. If something goes badly, raise an exception.</p> <p>Exceptions in Python aren't like many other languages - for example, they are used internally flow control (such as the <a href="http://docs.python.org/library/exceptions.html#exceptions.StopIteration" rel="nofollow">StopIteration</a> exception)</p> <p>I'd consider the following <em>far</em> more Pythonic than using return codes:</p> <pre><code>#!/usr/bin/env python2.6 def some_function(arg1, arg2): if arg1 + arg2 &gt; 5: return "some data for you" else: raise ValueError("Could not complete, arg1+arg2 was too small") </code></pre> <p>Then, you can call the function in a single line:</p> <pre><code>return some_function(3, 2) </code></pre> <p>This either returns the value, or raises an exception, which you could handle the exception somewhere sensible:</p> <pre><code>def main(): try: result = some_function(3, 5) except ValueError, errormsg: print errormsg sys.exit(1) else: print "Everything is perfect, the result was {0}".format(result) </code></pre> <p>Or if this case is actually an error, simply let halt the application with a nice stack trace.</p> <p>Yes, it's much longer than one line, but the idea behind Python is brevity, but explicitness and readability.</p> <p>Basically, if the function can no longer continue, raise an exception. Handle this exception either where you can recover from the problem, or present the user with an error message.. <em>unless</em> you are writing a library, in which case leave the exception to run up the stack to the calling code</p> <p>Or, in poem form:</p> <pre>$ python -m this The Zen of Python, by Tim Peters Beautiful is better than ugly. Explicit is better than implicit. Simple is better than complex. Complex is better than complicated. Flat is better than nested. Sparse is better than dense. Readability counts. Special cases aren't special enough to break the rules. Although practicality beats purity. Errors should never pass silently. Unless explicitly silenced. In the face of ambiguity, refuse the temptation to guess. There should be one-- and preferably only one --obvious way to do it. Although that way may not be obvious at first unless you're Dutch. Now is better than never. Although never is often better than *right* now. If the implementation is hard to explain, it's a bad idea. If the implementation is easy to explain, it may be a good idea. Namespaces are one honking great idea -- let's do more of those!</pre> <p>Finally, it might be worth reading over <a href="http://www.python.org/dev/peps/pep-0008/" rel="nofollow">"PEP 8"</a>, the style guide for Python. It may answer some of your questions, such as "Are one-liner if statements 'pythonic'?"</p> <blockquote> <p>Compound statements (multiple statements on the same line) are generally discouraged.</p> <p>Yes:</p> <pre><code>if foo == 'blah': do_blah_thing() do_one() do_two() do_three() </code></pre> <p>Rather not:</p> <pre><code>if foo == 'blah': do_blah_thing() do_one(); do_two(); do_three() </code></pre> </blockquote> http://stackoverflow.com/questions/315911/git-for-beginners-the-definitive-practical-guide/323764#323764 4 Answer by dbr for Git for beginners: The definitive practical guide dbr 2008-11-27T13:25:31Z 2009-10-09T15:07:56Z <h1>How to install git</h1> <h2>On Windows:</h2> <p>Install <a href="http://code.google.com/p/msysgit/" rel="nofollow">msysgit</a></p> <p>This also installs a cygwin bash shell, so you can use the <code>git</code> in a nicer shell (than cmd.exe), and also includes git-gui (accessible via <code>git gui</code> command, or the <code>Start &gt; All Programs &gt; Git</code> menu)</p> <h2>OS X</h2> <p>Use the <a href="http://code.google.com/p/git-osx-installer/" rel="nofollow">git-osx-installer</a>, or you can also install from source</p> <h2>Via a package manager</h2> <p>Install <code>git</code> using your native package manager. For example, on Debian (or Ubuntu):</p> <pre><code>apt-get install git-core </code></pre> <p>Or on OS X, via <a href="http://www.macports.org/" rel="nofollow">MacPorts</a>:</p> <pre><code>sudo port install git-core+bash_completion+doc </code></pre> <p>..or fink:</p> <pre><code>fink install git </code></pre> <p>On Red Hat based distros, such as Fedora:</p> <pre><code>yum install git </code></pre> <p>In Cygwin the git package can be found under the "devel" section</p> <h2>From source (OS X/Linux/BSD/etc)</h2> <p>In OS X, if you have the Developer Tools installed, you can compile git from source very easily. Download the latest version of git as a <code>.tar.bz</code> or <code>.tar.gz</code> from <a href="http://git-scm.com/" rel="nofollow">http://git-scm.com/</a>, and extract it (double click in Finder)</p> <p>On Linux/BSD/etc it should be much the same. For example, in Debian (and Ubuntu), you need to install the <code>build-essential</code> package via <code>apt</code></p> <p>Then in a Terminal, <code>cd</code> to where you extracted the files (Running <code>cd ~/Downloads/git*/</code> should work), and then run..</p> <pre><code>./configure &amp;&amp; make &amp;&amp; sudo make install </code></pre> <p>This will install git into the default place (<code>/usr/local</code> - so <code>git</code> will be in <code>/usr/local/bin/git</code>)</p> <p>It will prompt you to enter your password (for <code>sudo</code>), this is so it can write to the <code>/usr/local/</code> directory, which can only be accessed by the "root" user so sudo is required!</p> <p>If you with to install it somewhere separate (so gits files aren't mixed in with other tools), use <code>--prefix</code> with the configure command:</p> <pre><code>./configure --prefix=/usr/local/gitpath make sudo make install </code></pre> <p>This will install the <code>git</code> binary into <code>/usr/local/bin/gitpath/bin/git</code> - so you don't have to type that every time you, you should add into your <code>$PATH</code> by adding the following line into your <code>~/.profile</code>:</p> <pre><code>export PATH="${PATH}:/usr/local/bin/gitpath/bin/" </code></pre> <p>If you do not have sudo access, you can use <code>--prefix=/Users/myusername/bin</code> and install into your home directory. Remember to add <code>~/bin/</code> to <code>$PATH</code></p> <p>The script <a href="http://www.simplicidade.org/notes/archives/2008/09/updated%5Fxgitupd.html" rel="nofollow"> x-git-update-to-latest-version</a> automates a lot of this:</p> <blockquote> <p>This script updates my local clone of the git repo (localy at <code>~/work/track/git</code>), and then configures, installs (at <code>/usr/local/git</code>-<code>git describe</code>) and updates the <code>/usr/local/git</code> symlink.</p> <p>This way, I can have <code>/usr/local/git/bin</code> in my <code>PATH</code> and I'm always using the latest version.</p> <p>The latest version of this script also installs the man pages. You need to tweak your <code>MANPATH</code> to include the <code>/usr/local/git/share/man</code> directory.</p> </blockquote> http://stackoverflow.com/questions/1540785/independent-iphone-developer-network/1541029#1541029 0 Answer by dbr for Independent iPhone Developer Network dbr 2009-10-08T23:11:22Z 2009-10-08T23:11:22Z <p>IRC sounds like a good place for such discussions. Some iPhone development related channels you may be interested in:</p> <ul> <li>[I don't know any, community wiki'ing this so others can add them]</li> </ul> http://stackoverflow.com/questions/1535327/python-how-to-print-a-class-or-objects-of-class-using-print/1535375#1535375 4 Answer by dbr for Python: How to print a class or objects of class using print()? dbr 2009-10-08T02:55:04Z 2009-10-08T07:17:27Z <p>As Chris Lutz mentioned, this is defined by the <code>__repr__</code> method in your class.</p> <p>From the documentation of <a href="http://docs.python.org/library/functions.html#repr" rel="nofollow"><code>repr()</code></a>:</p> <blockquote> <p>For many types, this function makes an attempt to return a string that would yield an object with the same value when passed to eval(), otherwise the representation is a string enclosed in angle brackets that contains the name of the type of the object together with additional information often including the name and address of the object. A class can control what this function returns for its instances by defining a <strong>repr</strong>() method.</p> </blockquote> <p>Given the following class Test:</p> <pre><code>class Test: def __init__(self, a, b): self.a = a self.b = b def __repr__(self): return "&lt;Test a:%s b:%s&gt;" % (self.a, self.b) def __str__(self): return "From str method of Test: a is %s, b is %s" % (self.a, self.b) </code></pre> <p>..it will act the following way in the Python shell:</p> <pre><code>&gt;&gt;&gt; t = Test(123, 456) &gt;&gt;&gt; t &lt;Test a:123 b:456&gt; &gt;&gt;&gt; print repr(t) &lt;Test a:123 b:456&gt; &gt;&gt;&gt; print t From str method of Test: a is 123, b is 456 &gt;&gt;&gt; print str(t) From str method of Test: a is 123, b is 456 </code></pre> <p>If no <code>__str__</code> method is defined, <code>print t</code> (or <code>print str(t)</code>) will use the result of <code>__repr__</code> instead</p> <p>If no <code>__repr__</code> method is defined then the default is used, which is pretty much equivalent to..</p> <pre><code>def __repr__(self): return "&lt;%s instance at %s&gt;" % (self.__class__.__name__, id(self)) </code></pre> http://stackoverflow.com/questions/1534504/convert-variable-name-to-string/1535029#1535029 2 Answer by dbr for Convert Variable Name to String? dbr 2009-10-08T00:51:42Z 2009-10-08T00:51:42Z <p>What are you trying to achieve? There is absolutely no reason to ever do what you describe, and there is likely a much better solution to the problem you're trying to solve..</p> <p>The most obvious alternative to what you request is a dictionary. For example:</p> <pre><code>&gt;&gt;&gt; my_data = {'var': 'something'} &gt;&gt;&gt; my_data['something_else'] = 'something' &gt;&gt;&gt; print my_data.keys() ['var', 'something_else'] &gt;&gt;&gt; print my_data['var'] something </code></pre> <p>Mostly as a.. challenge, I implemented your desired output. Do not use this code, please!</p> <pre><code>#!/usr/bin/env python2.6 class NewLocals: """Please don't ever use this code..""" def __init__(self, initial_locals): self.prev_locals = list(initial_locals.keys()) def show_new(self, new_locals): output = ", ".join(list(set(new_locals) - set(self.prev_locals))) self.prev_locals = list(new_locals.keys()) return output # Set up eww = None eww = NewLocals(locals()) # "Working" requested code var = {} print eww.show_new(locals()) # Outputs: var something_else = 3 print eww.show_new(locals()) # Outputs: something_else # Further testing another_variable = 4 and_a_final_one = 5 print eww.show_new(locals()) # Outputs: another_variable, and_a_final_one </code></pre> http://stackoverflow.com/questions/333664/simple-long-polling-example-code/333884#333884 9 Answer by dbr for Simple "Long Polling" example code? dbr 2008-12-02T13:15:17Z 2009-10-07T13:35:54Z <p>It's simpler than I initially thought.. Basically you have a page that does nothing, until the data you want to send it available (say, a new message arrives).</p> <p>Here is a really basic example, which sends a simple string after 2-10 seconds. 1 in 3 chance of returning an error 404 (to show error handling in the coming Javascript example)</p> <p><code>msgsrv.php</code></p> <pre><code>&lt;?php if(rand(1,3) == 1){ /* Fake an error */ header("HTTP/1.0 404 Not Found"); die(); } /* Send a string after a random number of seconds (2-10) */ sleep(rand(2,10)); echo("Hi! Have a random number: " . rand(1,10)); ?&gt; </code></pre> <p>Note: With a real site, running this on a regular web-server like Apache will quickly tie up all the "worker threads" and leave it unable to respond to other requests.. There are ways around this, but it is recommended to write a "long-poll server" in something like Python's <a href="http://twistedmatrix.com/trac/" rel="nofollow">twisted</a>, which does not rely on one thread per request. <a href="http://cometdproject.dojotoolkit.org/" rel="nofollow">cometD</a> is an popular one (which is available in several languages), and <a href="http://www.tornadoweb.org/" rel="nofollow">Tornado</a> is a new framework made specifically for such tasks (it was built for FriendFeed's long-polling code)... but as a simple example, Apache is more than adequate! This script could easily be written in any language (I chose Apache/PHP as they are very common, and I happened to be running them locally)</p> <p>Then, in Javascript, you request the above file (<code>msg_srv.php</code>), and wait for a response. When you get one, you act upon the data. Then you request the file and wait again, act upon the data (and repeat)</p> <p>What follows is an example of such a page.. When the page is loaded, it sends the initial request for the <code>msgsrv.php</code> file.. If it succeeds, we append the message to the <code>#messages</code> div, then after 1 second we call the waitForMsg function again, which triggers the wait.</p> <p>The 1 second <code>setTimeout()</code> is a really basic rate-limiter, it works fine without this, but if <code>msgsrv.php</code> <em>always</em> returns instantly (with a syntax error, for example) - you flood the browser and it can quickly freeze up. This would better be done checking if the file contains a valid JSON response, and/or keeping a running total of requests-per-minute/second, and pausing appropriately.</p> <p>If the page errors, it appends the error to the <code>#messages</code> div, waits 15 seconds and then tries again (identical to how we wait 1 second after each message)</p> <p>The nice thing about this approach is it is very resilient. If the clients internet connection dies, it will timeout, then try and reconnect - this is inherent in how long polling works, no complicated error-handling is required</p> <p>Anyway, the <code>long_poller.htm</code> code, using the jQuery framework:</p> <pre><code>&lt;html&gt; &lt;head&gt; &lt;title&gt;BargePoller&lt;/title&gt; &lt;script src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js" type="text/javascript" charset="utf-8"&gt;&lt;/script&gt; &lt;style type="text/css" media="screen"&gt; body{ background:#000;color:#fff;font-size:.9em; } .msg{ background:#aaa;padding:.2em; border-bottom:1px #000 solid} .old{ background-color:#246499;} .new{ background-color:#3B9957;} .error{ background-color:#992E36;} &lt;/style&gt; &lt;script type="text/javascript" charset="utf-8"&gt; function addmsg(type, msg){ /* Simple helper to add a div. type is the name of a CSS class (old/new/error). msg is the contents of the div */ $("#messages").append( "&lt;div class='msg "+ type +"'&gt;"+ msg +"&lt;/div&gt;" ); } function waitForMsg(){ /* This requests the url "msgsrv.php" When it complete (or errors)*/ $.ajax({ type: "GET", url: "msgsrv.php", async: true, /* If set to non-async, browser shows page as "Loading.."*/ cache: false, timeout:50000, /* Timeout in ms */ success: function(data){ /* called when request to barge.php completes */ addmsg("new", data); /* Add response to a .msg div (with the "new" class)*/ setTimeout( 'waitForMsg()', /* Request next message */ 1000 /* ..after 1 seconds */ ); }, error: function(XMLHttpRequest, textStatus, errorThrown){ addmsg("error", textStatus + " (" + errorThrown + ")"); setTimeout( 'waitForMsg()', /* Try again after.. */ "15000"); /* milliseconds (15seconds) */ }, }); }; $(document).ready(function(){ waitForMsg(); /* Start the inital request */ }); &lt;/script&gt; &lt;/head&gt; &lt;body&gt; &lt;div id="messages"&gt; &lt;div class="msg old"&gt; BargePoll message requester! &lt;/div&gt; &lt;/div&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> http://stackoverflow.com/questions/569321/simple-cross-platform-midi-library-for-python/1522859#1522859 0 Answer by dbr for Simple, Cross Platform MIDI Library for Python dbr 2009-10-05T23:08:14Z 2009-10-05T23:36:56Z <p>I was looking for a pure-Python library to generate a MIDI file, <a href="http://www.mxm.dk/products/public/pythonmidi" rel="nofollow">mxm's Python MIDI library</a> is exactly that.</p> <p>From <a href="http://snippets.dzone.com/posts/show/572" rel="nofollow">this dzone snippet</a>, there is a single-file version of the above library, <a href="http://larndham.net/service/pys60/smidi.py" rel="nofollow">smidi.py</a> (<a href="http://gist.github.com/202595" rel="nofollow">gist'd here</a> for posterity)</p> <p>Usage is quite simple:</p> <pre><code>&gt;&gt;&gt; import smidi &gt;&gt;&gt; m = smidi.MidiOutFile('out.mid') &gt;&gt;&gt; m.header() &gt;&gt;&gt; m.start_of_track() &gt;&gt;&gt; m.update_time(0) &gt;&gt;&gt; m.note_on(note=0x40) # single note &gt;&gt;&gt; m.update_time(192) &gt;&gt;&gt; m.note_off(note=0x40) # stop it after 192 &gt;&gt;&gt; m.update_time(0) &gt;&gt;&gt; m.end_of_track() &gt;&gt;&gt; m.eof() </code></pre> <p>Presumably works on Windows (as the original example uses <code>C:\out.mid</code> as the output filename), and I've tested it on OS X</p> http://stackoverflow.com/questions/1515850/how-to-run-both-python-2-6-and-3-0-on-the-same-windows-xp-box/1517110#1517110 1 Answer by dbr for how to run both python 2.6 and 3.0 on the same windows XP box? dbr 2009-10-04T18:55:08Z 2009-10-04T18:55:08Z <blockquote> <p>Interesting, but I want to be able to learn the 3.0 syntax (print()) etc but still need to maintain some 2.5 and 2.6 code..</p> </blockquote> <p>Python has <a href="http://docs.python.org/library/%5F%5Ffuture%5F%5F.html" rel="nofollow"><code>__future__</code> "Future statement definitions"</a>, which make new features available in older versions of Python, the print function is one of them:</p> <pre><code>Python 2.6.1 (r261:67515, Jul 7 2009, 23:51:51) &gt;&gt;&gt; from __future__ import print_function &gt;&gt;&gt; print("Example", end=" Hurray!\n") Example Hurray! </code></pre> <p>Another big Python 3.0 change is the default string becoming Unicode:</p> <pre><code>&gt;&gt;&gt; from __future__ import unicode_literals &gt;&gt;&gt; type('abc') &lt;type 'unicode'&gt; &gt;&gt;&gt; 'a' u'a' </code></pre> <p>Most of the others are now part of Python 2.6, so aren't of interest (like the <code>with_statement</code>). The only one I didn't mention is <code>from __future__ import braces</code> to allow "C like" <code>if(){}</code> braces</p> http://stackoverflow.com/questions/36862/how-do-you-organise-multiple-git-repositories/1771304#1771304 Comment by dbr on How do you organise multiple git repositories? dbr 2009-11-21T16:37:56Z 2009-11-21T16:37:56Z <a href="http://stackoverflow.com/questions/315911/git-for-beginners-the-definitive-practical-guide" rel="nofollow" title="git for beginners the definitive practical guide">stackoverflow.com/questions/315911/&hellip;</a> for one, and a Google search should return thousands of git intro/beginner articles. &quot;Git Magic&quot; and the &quot;Pro Git&quot; book are two of the better ones I can think o f just now http://stackoverflow.com/questions/636383/wpf-ways-to-find-controls/1759923#1759923 Comment by dbr on WPF ways to find controls dbr 2009-11-19T00:39:27Z 2009-11-19T00:39:27Z +1. Good answer, plus you can now comment! http://stackoverflow.com/questions/1730466/how-to-find-where-a-function-was-imported-from-in-python/1731211#1731211 Comment by dbr on How to find where a function was imported from in Python? dbr 2009-11-13T19:11:32Z 2009-11-13T19:11:32Z +1 because this is a valid point, although it may not solve the problem (if the questioner wants to know where the function came from programmatically, having <code>from bar import foo</code> is basically the same) http://stackoverflow.com/questions/1703640/how-to-implement-a-pythonic-equivalent-of-tail-f/1703997#1703997 Comment by dbr on How to implement a pythonic equivalent of tail -F? dbr 2009-11-09T21:58:22Z 2009-11-09T21:58:22Z That's a strange/interesting use of generators.. http://stackoverflow.com/questions/1703640/how-to-implement-a-pythonic-equivalent-of-tail-f Comment by dbr on How to implement a pythonic equivalent of tail -F? dbr 2009-11-09T21:40:56Z 2009-11-09T21:40:56Z Those two questions seem identical, but this one is about constantly monitoring a file for new lines, whereas the other question is about reading the last x lines http://stackoverflow.com/questions/733418/how-can-i-write-a-linux-bash-script-that-tells-me-which-computer-are-on-in-my-la/735691#735691 Comment by dbr on How can I write a linux bash script, that tells me which computer are on in my LAN ? dbr 2009-11-07T13:58:43Z 2009-11-07T13:58:43Z You could run the process in the background the command by doing <code>mycmd &amp;</code>, but that's not really threading, and could become quite complicated if you need the output of several commands.. It would be much simpler to just use Python/Ruby/etc.. http://stackoverflow.com/questions/1094841/reusable-library-to-get-human-readable-version-of-file-size/1094933#1094933 Comment by dbr on Reusable library to get human readable version of file size? dbr 2009-11-03T22:36:46Z 2009-11-03T22:36:46Z Yep - <code>print sizeof&#95;fmt(999&#42;&#42;99)</code> shows <code>None</code> http://stackoverflow.com/questions/1658406/is-there-an-open-source-web-based-self-hosted-revision-control-system Comment by dbr on Is there an open-source, web-based, self-hosted, revision control system? dbr 2009-11-02T19:06:23Z 2009-11-02T19:06:23Z It sounds like could use any regular VCS (judging by your edit) - why does it have to be web-based? Why do you want to check files in/out via the web? http://stackoverflow.com/questions/214881/can-you-add-new-statements-to-pythons-syntax Comment by dbr on Can you add new statements to Python's syntax? dbr 2009-11-02T18:57:46Z 2009-11-02T18:57:46Z @Kilo it might be worth looking at ipython - it has a lot of shell'ish features, for example you can use regular &quot;ls&quot; and &quot;cd&quot; commands, tab-completion, lots of macro-ish features etc http://stackoverflow.com/questions/1607612/python-how-do-i-make-a-subclass-from-a-superclass/1607631#1607631 Comment by dbr on Python: How do I make a subclass from a superclass? dbr 2009-10-22T14:37:15Z 2009-10-22T14:37:15Z You only need to define that <code>&#95;&#95;init&#95;&#95;</code> method if want to add further code to it, otherwise the original init method is used anyway (although it's worth mentioning, and is perfectly valid code) http://stackoverflow.com/questions/1607612/python-how-do-i-make-a-subclass-from-a-superclass/1607633#1607633 Comment by dbr on Python: How do I make a subclass from a superclass? dbr 2009-10-22T14:29:58Z 2009-10-22T14:29:58Z The question is tagged with Python... http://stackoverflow.com/questions/1586648/race-condition-creating-folder-in-python/1586668#1586668 Comment by dbr on Race-condition creating folder in Python dbr 2009-10-19T12:59:06Z 2009-10-19T12:59:06Z Thanks for the ideas. Catching OSError, checking if the dir exists and if so ignoring the error seems to work fine, and will still correctly error if the user has insufficient permissions. I've made the change you suggested to the code, I completely forgot <code>raise</code> will re-raise the caught exception. http://stackoverflow.com/questions/1586648/race-condition-creating-folder-in-python/1586663#1586663 Comment by dbr on Race-condition creating folder in Python dbr 2009-10-19T12:55:12Z 2009-10-19T12:55:12Z This seems to work perfectly, thanks! http://stackoverflow.com/questions/1586648/race-condition-creating-folder-in-python/1586668#1586668 Comment by dbr on Race-condition creating folder in Python dbr 2009-10-19T02:15:00Z 2009-10-19T02:15:00Z Also, I agree with your points about SQLite - I wouldn't have to do much in the way of filtering (pretty much just &quot;has this URL been requested in the last x hours&quot;), but SQLite would remove a lot of the complexity (no constructing cached-file paths and checking file modification times), and I think it should deal with all the locking issues (both for specific bits of cached data, and the sqlite file itself).. Hm... If Pythonic Metaphor's solution doesn't work, I may start this (in fact I may regardless, a nice SQLite backed urllib2 cache module would be useful) http://stackoverflow.com/questions/1586648/race-condition-creating-folder-in-python/1586668#1586668 Comment by dbr on Race-condition creating folder in Python dbr 2009-10-19T02:09:45Z 2009-10-19T02:09:45Z For many cases, ignoring the error would be Pythonic, but in this case it could cause other problems, as I addressed in the question - &quot;I don't want to simply discard the error, as the same error Errno 17 error is raised if the folder name exists as a file (a different error)&quot; - discarding the exception would mean the temp directory either doesn't exist (say, a permission denied error), or is a useless file (and would cause errors further down the path)