User Tom Dunham - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T15:57:08Z http://stackoverflow.com/feeds/user/6402 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1517136/meta-and-in-a-uk-mac-terminal 1 Meta and # in a UK mac terminal Tom Dunham 2009-10-04T19:05:01Z 2009-10-05T12:27:17Z <p>In the mac terminal application there is a setting (preferences -> keyboard) that lets you set "use option as meta key". This is useful as a lot of unix boxes use <code>bash</code> as default shell and that has emacs keybindings <code>M-f</code> and <code>M-b</code> that let you skip words. </p> <p>Problem is that on a Mac with a UK keyboard the <code>#</code> symbol is tricky to get to - normally it can be typed with <code>alt-3</code>, but not if you are in a terminal and alt=meta. </p> <p>Anyone have a nice way round this?</p> http://stackoverflow.com/questions/10564/how-can-i-set-up-an-editor-to-work-with-git-on-windows/1380109#1380109 1 Answer by Tom Dunham for How can I set up an editor to work with Git on Windows? Tom Dunham 2009-09-04T15:55:51Z 2009-09-04T15:55:51Z <p>I've just had the same problem and found a different solution. I was getting </p> <pre><code>error: There was a problem with the editor 'ec' </code></pre> <p>I've got <code>VISUAL=ec</code>, and a batch file called <code>ec.bat</code> on my path that contains one line:</p> <pre><code>c:\emacs\emacs-23.1\bin\emacsclient.exe %* </code></pre> <p>This lets me edit files from the command line with <code>ec &lt;filename&gt;</code>, and having visual set means most unixy programs pick it up too. Git seems to search the path differently to my other commands though - when I looked at a <code>git commit</code> in <a href="http://technet.microsoft.com/en-us/sysinternals/bb896645.aspx" rel="nofollow">ProcMon</a> I saw it look in every folder on the path for <code>ec</code> and for <code>ec.exe</code>, but not for <code>ec.bat</code>. I added another environment variable (<code>GIT_EDITOR=ec.bat</code>) and all was fine.</p> http://stackoverflow.com/questions/1259963/python-assert-that-variable-is-instance-method/1260997#1260997 6 Answer by Tom Dunham for Python : Assert that variable is instance method? Tom Dunham 2009-08-11T15:10:56Z 2009-08-11T15:10:56Z <p><a href="http://docs.python.org/library/inspect.html#inspect.ismethod" rel="nofollow"><code>inspect.ismethod</code></a> is what you want to find out if you defiantly have a method, rather than just something you can call.</p> <pre><code>import inspect def foo(): pass class Test(object): def method(self): pass print inspect.ismethod(foo) # False print inspect.ismethod(Test) # False print inspect.ismethod(Test.method) # True print inspect.ismethod(Test().method) # True print callable(foo) # True print callable(Test) # True print callable(Test.method) # True print callable(Test().method) # True </code></pre> <p><code>callable</code> is true if the argument if the argument is a method, or a function (including <code>lambda</code>s) or an instance with <code>__call__</code> or a class. Methods have different properties than functions (like <code>im_class</code> and <code>im_self</code>). So you want</p> <pre><code>assert inspect.ismethod(Test().method) </code></pre> http://stackoverflow.com/questions/1241148/copy-constructor-in-python/1241170#1241170 5 Answer by Tom Dunham for Copy constructor in python Tom Dunham 2009-08-06T20:21:34Z 2009-08-06T20:21:34Z <p>I think you want the <a href="http://docs.python.org/library/copy.html" rel="nofollow">copy module</a></p> <pre><code>import copy x = copy.copy(y) # make a shallow copy of y x = copy.deepcopy(y) # make a deep copy of y </code></pre> <p>you can control copying in much the same way as you control <a href="http://docs.python.org/library/pickle.html#module-pickle" rel="nofollow">pickle</a>.</p> http://stackoverflow.com/questions/530530/python-2-x-gotchas-and-landmines/532256#532256 7 Answer by Tom Dunham for Python 2.x gotcha's and landmines Tom Dunham 2009-02-10T13:10:19Z 2009-07-28T16:22:30Z <p>There was a lot of discussion on hidden language features a while back: <a href="http://stackoverflow.com/questions/101268/hidden-features-of-python">hidden-features-of-python</a>. Where some pitfalls were mentioned (and some of the good stuff too). </p> <p>Also you might want to check out <a href="http://wiki.python.org/moin/PythonWarts" rel="nofollow">Python Warts</a>.</p> <p>But for me, integer division's a gotcha:</p> <pre><code>&gt;&gt;&gt; 5/2 2 </code></pre> <p>You probably wanted:</p> <pre><code>&gt;&gt;&gt; 5*1.0/2 2.5 </code></pre> <p>If you really want this (C-like) behaviour, you should write:</p> <pre><code>&gt;&gt;&gt; 5//2 2 </code></pre> <p>As that will work with floats too (and it will work when you eventually go to <a href="http://docs.python.org/dev/3.0/whatsnew/3.0.html#integers" rel="nofollow">Python 3</a>):</p> <pre><code>&gt;&gt;&gt; 5*1.0//2 2.0 </code></pre> <p>GvR explains how integer division came to work how it does on <a href="http://python-history.blogspot.com/2009/03/problem-with-integer-division.html" rel="nofollow">the history of Python</a>.</p> http://stackoverflow.com/questions/1095768/what-next-after-dive-into-python/1098152#1098152 0 Answer by Tom Dunham for what next after 'dive into python' Tom Dunham 2009-07-08T13:41:27Z 2009-07-08T13:41:27Z <p>Others have said it but I'll repeat: work on something you are interested in or it won't be fun. </p> <p>If you do decide that a crawler would be fun, take a look at <a href="http://code.google.com/p/google-kongulo/" rel="nofollow"><code>google-kongulo</code></a>, web spider plugin for Google desktop search. The code is quite short and well-written, so this might make a good base for when you decide what you want to crawl. </p> http://stackoverflow.com/questions/852554/learning-python/854459#854459 2 Answer by Tom Dunham for Learning Python Tom Dunham 2009-05-12T19:32:33Z 2009-05-12T19:32:33Z <p>For the webhost, take a look at <a href="http://www.webfaction.com/" rel="nofollow">Webfaction</a>. You get a shell accout, and Postgres (or MySQL), and Django are available as one-click installs. </p> http://stackoverflow.com/questions/649029/where-can-i-find-good-python-twisted-framework-documentation-blog-entries-artic/650272#650272 1 Answer by Tom Dunham for Where can I find good python Twisted framework documentation, blog entries, articles, etc? Tom Dunham 2009-03-16T12:42:06Z 2009-03-16T12:42:06Z <p>There's an overview here: <a href="http://www.python.org/workshops/2002-02/papers/09/index.htm" rel="nofollow">The Twisted Network Framework</a>.</p> <p>Bruce Eckel wrote a nice article that points out some of the weird names Twisted uses: <a href="http://www.artima.com/weblogs/viewpost.jsp?thread=156396" rel="nofollow">Grokking Twisted</a>. According to that article, there are some good examples in <em>The Python Cookbook</em>, 2nd Ed (O'Reilly). </p> http://stackoverflow.com/questions/598398/searching-a-list-of-objects-in-python/598427#598427 2 Answer by Tom Dunham for Searching a list of objects in Python Tom Dunham 2009-02-28T18:23:29Z 2009-03-01T09:06:53Z <p>You can use <code>in</code> to look for an item in a collection, and a list comprehension to extract the field you are interested in. This (works for lists, sets, tuples, and anything that defines <code>__contains__</code> or <code>__getitem__</code>). </p> <pre><code>if 5 in [data.n for data in myList]: print "Found it" </code></pre> <p>See also:</p> <ul> <li><a href="http://docs.python.org/reference/datamodel.html#object.%5F%5Fcontains%5F%5F" rel="nofollow">Contains Method</a></li> <li><a href="http://docs.python.org/reference/expressions.html#in" rel="nofollow">In operation</a></li> </ul> http://stackoverflow.com/questions/430564/what-are-the-best-books-for-mysql/598452#598452 1 Answer by Tom Dunham for What are the best books for MySQL? Tom Dunham 2009-02-28T18:38:50Z 2009-02-28T18:38:50Z <p>Paul DuBois, MySQL (The Definitive Guide). <a href="http://rads.stackoverflow.com/amzn/click/0672329387" rel="nofollow">At Amazon</a></p> <p>It's onto the 4th edition now, I have the 3rd and it's excellent.</p> http://stackoverflow.com/questions/531861/great-british-developers-where-are-you/531952#531952 1 Answer by Tom Dunham for Great British Developers - where are you? Tom Dunham 2009-02-10T11:36:34Z 2009-02-10T11:36:34Z <p><a href="http://simonwillison.net/" rel="nofollow">Simon Willison</a>, he of Django and OpenID fame</p> http://stackoverflow.com/questions/525773/accept-cookies-in-python/526695#526695 6 Answer by Tom Dunham for Accept Cookies in Python Tom Dunham 2009-02-08T23:49:44Z 2009-02-08T23:49:44Z <p>Try this:</p> <pre><code>import urllib2 import cookielib jar = cookielib.FileCookieJar("cookies") opener = urllib2.build_opener(urllib2.HTTPCookieProcessor(jar)) print "Currently have %d cookies" % len(jar) print "Getting page" response = opener.open("http://google.com") print response.headers print "Got page" print "Currently have %d cookies" % len(jar) print jar </code></pre> <p>It should print</p> <pre><code>Currently have 0 cookies ... Currently have 2 cookies </code></pre> <p>(Google always sets a cookie). You don't really need this much unless you want to save your cookies to disk and use them later. You should find that</p> <pre><code>urllib2.build_opener(HTTPCookieProcessor).open(url) </code></pre> <p>Takes care of most of what you want.</p> <p>More info here:</p> <ul> <li><a href="http://docs.python.org/library/urllib2.html#urllib2.HTTPCookieProcessor" rel="nofollow">HTTPCookieProcessor</a></li> <li><a href="http://docs.python.org/library/urllib2.html#urllib2.urlopen" rel="nofollow">build_opener</a></li> <li><a href="http://docs.python.org/library/cookielib.html#cookielib.FileCookieJar" rel="nofollow">FileCookieJar</a></li> <li><a href="http://www.voidspace.org.uk/python/articles/urllib2.shtml" rel="nofollow">Urllib2 - the missing maual</a></li> </ul> http://stackoverflow.com/questions/34155/looking-for-examples-of-real-uses-of-continuations/499490#499490 1 Answer by Tom Dunham for Looking for examples of "real" uses of continuations Tom Dunham 2009-01-31T20:28:08Z 2009-01-31T20:28:08Z <p>How about the <a href="http://code.google.com/apis/maps/documentation/mapplets/guide.html" rel="nofollow">Google Mapplets API</a>? There are a bunch of functions (all ending in <code>Async</code>) to which you pass a callback. The API function does an async request, gets it's result, then passes that result to your callback (as the "next thing to do"). Sounds a lot like <a href="http://en.wikipedia.org/wiki/Continuation-passing_style" rel="nofollow">continuation passing style</a> to me.</p> <p>This <a href="http://code.google.com/apis/maps/documentation/mapplets/guide.html#Asynchronous" rel="nofollow">example</a> shows a very simple case.</p> <pre><code>map.getZoomAsync(function(zoom) { alert("Current zoom level is " + zoom); // this is the continuation }); alert("This might happen before or after you see the zoom level message"); </code></pre> <p>As this is Javascript there's no <a href="http://en.wikipedia.org/wiki/Tail_call_optimization" rel="nofollow">tail call optimization</a>, so the stack will grow with every call into a continuation, and you'll eventually return the thread of control to the browser. All the same, I think it's a nice abstraction. </p> http://stackoverflow.com/questions/485120/will-emacs-make-me-a-better-programmer/499404#499404 1 Answer by Tom Dunham for Will emacs make me a better programmer? Tom Dunham 2009-01-31T19:36:47Z 2009-01-31T19:36:47Z <p>I know you didn't ask this, but one thing learning emacs (unexpectedly) improved for me was manipulating a command line. Before I learned emacs keybindings I used to move the cursor and navigate history using the cursor keys because I didn't know any better. It was something of a lightbulb moment when I realised I could use <code>backward-word</code>, <code>move-beginning-of-line</code> and <code>backward-kill-word</code> (which I have always bound to <code>C-w</code>, <a href="http://steve.yegge.googlepages.com/effective-emacs" rel="nofollow">as Stevey suggests</a>) in <code>bash</code> (<code>M-t</code> is often useful too, and most impressive to those who've never seen it before).</p> <p>I do quite a lot of work on Solaris, where the root shell is "the posix shell", and does not have emacs bindings by default. I find that my fingers now type <code>exec bash</code> of their own accord, every time I log in, so much faster do I feel with the now-familiar editing commands under my fingers.</p> <p>Must admit though, I still find Knuth's books hard going (though worth it) - so I don't think it's magically improved my programming.</p> http://stackoverflow.com/questions/499206/emacs-mode-multiline-comments/499224#499224 6 Answer by Tom Dunham for Emacs mode multiline comments Tom Dunham 2009-01-31T17:42:01Z 2009-01-31T18:03:47Z <p>It's like this:</p> <pre><code>(define-derived-mode my-mode awk-mode "my" "My mode" (setq comment-multi-line nil) ; maybe (setq comment-start "/* ") (setq comment-end "*/")) </code></pre> <p>But there are subtleties; maybe you want</p> <pre><code>/* line one */ /* line two */ /* line three */ </code></pre> <p>or maybe you want</p> <pre><code>/* line one line two line three */ </code></pre> <p>This is affected by your <code>comment-style</code>, which you can customize (<code>M-x customize-variable comment-style</code>). For something like the first example choose <code>indent</code>, for the second example, <code>extra-line</code>. </p> <p>It's all defined in <code>newcomment.el</code>, which you can read about if you <code>M-x describe-variable comment-start</code>. </p> http://stackoverflow.com/questions/438684/how-to-convert-a-list-of-longs-into-a-comma-separated-string-in-python/438726#438726 1 Answer by Tom Dunham for How to convert a list of longs into a comma separated string in python Tom Dunham 2009-01-13T11:46:55Z 2009-01-13T11:46:55Z <p>Just for the sake of it, you can also use string formatting:</p> <pre><code>",".join("%s" % i for i in list_of_things) </code></pre> http://stackoverflow.com/questions/433194/starting-any-emacs-buffer-with-a-c-extension-with-a-template/433234#433234 9 Answer by Tom Dunham for Starting any Emacs buffer with a .c extension with a template Tom Dunham 2009-01-11T17:14:49Z 2009-01-11T17:32:41Z <p>Put somthing like this in <code>.emacs</code></p> <pre><code>(define-skeleton c-throwaway "Throwaway C skeleton" "#include &lt;stdio.h&gt;\n" "#include &lt;stdlib.h&gt;\n" "\n" "int main(void){\n" "\n" "}\n") </code></pre> <p>And eval (<code>C-x C-e</code>) it. That'll give you a function (<code>c-throwaway</code>) that inserts your template.</p> <p>To get this inserting automaticly you'll need to activate <code>auto-insert-mode</code>. Once you do this you can <code>describe-variable auto-mode-alist</code> and read up on how emacs does some of its open file magic. Then define <code>auto-insert-alist</code> to apply it when you find a new file.</p> <p>Maybe something like this</p> <pre><code>(define-auto-insert "\\.\\([Cc]\\|cc\\|cpp\\)\\'" 'c-throwaway) </code></pre> <p>More detail:</p> <ul> <li><p><a href="http://www.emacswiki.org/emacs/AutoInsertMode" rel="nofollow">Auto Insert Mode</a></p></li> <li><p><a href="http://www.gnu.org/software/emacs/manual/html_node/autotype/Autoinserting.html" rel="nofollow">Autotype</a></p></li> </ul> http://stackoverflow.com/questions/340548/is-there-any-way-to-use-diag-from-testmore-without-planning 2 Is there any way to use diag() from Test::More without planning? Tom Dunham 2008-12-04T13:18:40Z 2008-12-04T22:17:59Z <p>I'm writing some tests in Perl which have a fair amount of set up. This setup all lives in a module that the test scripts <code>use</code>. I want to be able to print some diagnostics from the module, and intended to use the <code>diag</code> function from <code>Test::More</code>. Problem is, when you <code>use Test::More</code>, it writes the plan so I get </p> <blockquote> <p>You tried to plan twice at lib/MyTest.pm line 15.</p> </blockquote> <p>Is there any way I can use <code>diag</code> (or is there an equivalent), or am I stuck with <code>print STDERR</code>?</p> http://stackoverflow.com/questions/253314/exceptions-or-error-codes/253393#253393 9 Answer by Tom Dunham for Exceptions or error codes Tom Dunham 2008-10-31T13:03:17Z 2008-10-31T13:03:17Z <p>In high-level stuff, exceptions; in low-level stuff, error codes.</p> <p>The default behaviour of an exception is to unwind the stack and stop the program, if I'm writing a script an and I go for a key that's not in a dictionary it's probably an error, and I want the program to halt and let me know all about that. </p> <p>If, however, I'm writing a piece of code which I <em>must know</em> the behaviour of in every possible situation, then I want error codes. Otherwise I have to know every exception that can be thrown by every line in my function to know what it will do (Read <a href="http://rads.stackoverflow.com/amzn/click/0978739213" rel="nofollow">The Exception That Grounded an Airline</a> to get an idea of how tricky this is). It's tedious and hard to write code that reacts appropriately to every situation (including the unhappy ones), but that's because writing error-free code is tedious and hard, not because you're passing error codes.</p> <p>Both <a href="http://blogs.msdn.com/oldnewthing/archive/2005/01/14/352949.aspx" rel="nofollow">Raymond Chen</a> <a href="http://www.joelonsoftware.com/items/2003/10/13.html" rel="nofollow">and</a> <a href="http://www.joelonsoftware.com/articles/Wrong.html" rel="nofollow">Joel</a> have made some eloquent arguments against using exceptions for everything. </p> http://stackoverflow.com/questions/92971/how-do-i-set-the-size-of-emacs-window 15 How do I set the size of emacs' window? Tom Dunham 2008-09-18T14:20:29Z 2008-09-18T16:44:39Z <p>I'm trying to detect the size of the screen I'm starting emacs on, and adjust the size and position the window it is starting in (I guess that's the frame in emacs-speak) accordingly. I'm trying to set up my .emacs so that I always get a "reasonably-big" window with it's top-left corner near the top-left of my screen.</p> <p>I guess this is a <em>big</em> ask for the general case, so to narrow things down a bit I'm most interested in GNU Emacs 22 on Windows and (Debian) Linux.</p> http://stackoverflow.com/questions/93710/whats-the-easiest-non-memory-intensive-way-to-output-xml-from-python/94114#94114 1 Answer by Tom Dunham for What's the easiest non-memory intensive way to output XML from Python? Tom Dunham 2008-09-18T16:22:28Z 2008-09-18T16:22:28Z <p>I think you'll find XMLGenerator from xml.sax.saxutils is the closest thing to what you want.</p> <pre> import time from xml.sax.saxutils import XMLGenerator from xml.sax.xmlreader import AttributesNSImpl LOG_LEVELS = ['DEBUG', 'WARNING', 'ERROR'] class xml_logger: def __init__(self, output, encoding): """ Set up a logger object, which takes SAX events and outputs an XML log file """ logger = XMLGenerator(output, encoding) logger.startDocument() attrs = AttributesNSImpl({}, {}) logger.startElementNS((None, u'log'), u'log', attrs) self._logger = logger self._output = output self._encoding = encoding return def write_entry(self, level, msg): """ Write a log entry to the logger level - the level of the entry msg - the text of the entry. Must be a Unicode object """ #Note: in a real application, I would use ISO 8601 for the date #asctime used here for simplicity now = time.asctime(time.localtime()) attr_vals = { (None, u'date'): now, (None, u'level'): LOG_LEVELS[level], } attr_qnames = { (None, u'date'): u'date', (None, u'level'): u'level', } attrs = AttributesNSImpl(attr_vals, attr_qnames) self._logger.startElementNS((None, u'entry'), u'entry', attrs) self._logger.characters(msg) self._logger.endElementNS((None, u'entry'), u'entry') return def close(self): """ Clean up the logger object """ self._logger.endElementNS((None, u'log'), u'log') self._logger.endDocument() return if __name__ == "__main__": #Test it out import sys xl = xml_logger(sys.stdout, 'utf-8') xl.write_entry(2, u"Vanilla log entry") xl.close() </pre> <p>You'll probably want to look at the rest of the article I got that from at <a href="http://www.xml.com/pub/a/2003/03/12/py-xml.html" rel="nofollow">http://www.xml.com/pub/a/2003/03/12/py-xml.html</a>.</p> http://stackoverflow.com/questions/1267869/how-can-i-force-division-to-be-floating-point-in-python/1267883#1267883 Comment by Tom Dunham on how can I force division to be floating point in Python? Tom Dunham 2009-08-13T13:42:48Z 2009-08-13T13:42:48Z whoops - yes I did mean 1.0; thanks Brian. http://stackoverflow.com/questions/1267869/how-can-i-force-division-to-be-floating-point-in-python/1267883#1267883 Comment by Tom Dunham on how can I force division to be floating point in Python? Tom Dunham 2009-08-12T18:57:56Z 2009-08-12T18:57:56Z float(b) is not better if b == 1j (or some other complex number). In that case float(b) would raise a TypeError. The question does say a and b are integers so it won't matter in this case - but the correct workaround in the general case is to multiply one of the arguments by 0.1, see pep 238 - <a href="http://www.python.org/dev/peps/pep-0238/" rel="nofollow">python.org/dev/peps/pep-0238</a>. http://stackoverflow.com/questions/530530/python-2-x-gotchas-and-landmines/532256#532256 Comment by Tom Dunham on Python 2.x gotcha's and landmines Tom Dunham 2009-07-28T16:15:39Z 2009-07-28T16:15:39Z &quot;The correct work-around is subtle: casting an argument to float() is wrong if it could be a complex number; adding 0.0 to an argument doesn't preserve the sign of the argument if it was minus zero. The only solution without either downside is multiplying an argument (typically the first) by 1.0. This leaves the value and sign unchanged for float and complex, and turns int and long into a float with the corresponding value.&quot; (PEP 238 - <a href="http://www.python.org/dev/peps/pep-0238/" rel="nofollow">python.org/dev/peps/pep-0238</a>) http://stackoverflow.com/questions/60784/poll-which-python-ide-editor-is-the-best Comment by Tom Dunham on Poll: Which Python IDE/editor is the best? Tom Dunham 2009-02-10T13:14:12Z 2009-02-10T13:14:12Z This covers much the same ground: <a href="http://stackoverflow.com/questions/81584/what-ide-to-use-for-python" rel="nofollow" title="what ide to use for python">stackoverflow.com/questions/81584/&hellip;</a> http://stackoverflow.com/questions/203303/how-do-you-beat-rsi/203324#203324 Comment by Tom Dunham on How do you beat RSI? Tom Dunham 2009-01-19T17:49:07Z 2009-01-19T17:49:07Z But don't hurt your back carrying that around! http://stackoverflow.com/questions/203303/how-do-you-beat-rsi/203324#203324 Comment by Tom Dunham on How do you beat RSI? Tom Dunham 2009-01-19T17:48:22Z 2009-01-19T17:48:22Z Kinesis do a portable keyboard called Freestyle. It's the two halves of a keyboard joined with a cable. Fold them together and put that in your laptop bag. Look at the VIP kit (so you can get some tenting) and a stand (so the laptop screen isn't a mile from your nose). http://stackoverflow.com/questions/340548/is-there-any-way-to-use-diag-from-testmore-without-planning/340653#340653 Comment by Tom Dunham on Is there any way to use diag() from Test::More without planning? Tom Dunham 2008-12-18T12:31:42Z 2008-12-18T12:31:42Z Yup, that works. I was doing use Test::More qw(diag); Which (along with jumping to conclusions) is what got me confused. Thanks.