User Peter Hoffmann - Stack Overflow most recent 30 from stackoverflow.com 2009-11-09T10:25:45Z http://stackoverflow.com/feeds/user/720 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1629755/python-string-formatting-special-characters/1629861#1629861 5 Answer by Peter Hoffmann for Python string formatting special characters. Peter Hoffmann 2009-10-27T10:19:23Z 2009-10-27T10:19:23Z <p>An alternative is to use the new <a href="http://www.python.org/dev/peps/pep-3101/" rel="nofollow">Advanced String Formatting</a></p> <pre><code>&gt;&gt;&gt; example = "%{test}%".format(test="name") &gt;&gt;&gt; print example %name% </code></pre> http://stackoverflow.com/questions/1572574/java-fast-data-storage-retrieval/1572876#1572876 0 Answer by Peter Hoffmann for Java Fast Data Storage & Retrieval Peter Hoffmann 2009-10-15T14:48:00Z 2009-10-15T14:53:53Z <p>If you are looking for a simple key-value store and don't need complex sql querying, <a href="http://www.oracle.com/technology/products/berkeley-db/je/index.html" rel="nofollow">Berkeley DB</a> might be worth a look.</p> <p>Another alternative is <a href="http://1978th.net/tokyocabinet/" rel="nofollow">Tokyo Cabinet</a>, a modern DBM implementation.</p> http://stackoverflow.com/questions/1569076/pythons-libxml2-cant-parse-unicode-strings/1569140#1569140 6 Answer by Peter Hoffmann for Python's libxml2 can't parse unicode strings Peter Hoffmann 2009-10-14T21:35:10Z 2009-10-14T21:49:58Z <p>It should be</p> <pre><code># -*- coding: utf-8 -*- import libxml2 DOC = u"""&lt;?xml version="1.0" encoding="UTF-8"?&gt; &lt;data&gt; &lt;something&gt;Bäääh!&lt;/something&gt; &lt;/data&gt; """.encode("UTF-8") xml_doc = libxml2.parseDoc(DOC) </code></pre> <p>The .encode("UTF-8") is needed to get the binary representation of the unicode string with the utf8 encoding.</p> http://stackoverflow.com/questions/1553511/extracting-info-from-html-using-phpxpath-php-pythonregexp-or-pythonxpath/1554489#1554489 2 Answer by Peter Hoffmann for Extracting info from html using PHP(XPath), PHP/Python(Regexp) or Python(XPath) Peter Hoffmann 2009-10-12T13:10:43Z 2009-10-12T13:26:25Z <p>If speed is a requirement have a look at <a href="http://codespeak.net/lxml/" rel="nofollow">lxml</a>. lxml is a pythonic binding for the <a href="http://xmlsoft.org/" rel="nofollow">libxml2</a> and <a href="http://xmlsoft.org/XSLT/" rel="nofollow">libxslt</a> C libraries. Using the C libraries is much faster than any pure php or python version.</p> <p>There are some impressive <a href="http://blog.ianbicking.org/2008/03/30/python-html-parser-performance/" rel="nofollow">benchmarks</a> from Ian Bicking:</p> <blockquote> <p><strong>In Conclusion</strong></p> <p>I knew lxml was fast before I started these benchmarks, but I didn’t expect it to be quite this fast.</p> </blockquote> <p>Parsing Results:</p> <p><img src="http://1.2.3.9/bmi/blog.ianbicking.org/wp-content/uploads/images/parsing-results.png" alt="Parsing Resutls" /></p> http://stackoverflow.com/questions/1546089/web-scraping-a-problem-site/1546280#1546280 1 Answer by Peter Hoffmann for web scraping a problem site Peter Hoffmann 2009-10-09T22:00:26Z 2009-10-09T22:00:26Z <p>The website loads the data via ajax. <a href="http://getfirebug.com" rel="nofollow">Firebug</a> shows the ajax calls. For the given page, the data is loaded from <a href="https://personal.vanguard.com/us/JSP/Funds/VGITab/VGIFundOverviewTabContent.jsf?FundIntExt=INT&amp;FundId=0542" rel="nofollow">https://personal.vanguard.com/us/JSP/Funds/VGITab/VGIFundOverviewTabContent.jsf?FundIntExt=INT&amp;FundId=0542</a></p> <p>See the corresponding javascript code on the original page:</p> <pre><code>&lt;script&gt;populator = new Populator({parentId: "profileForm:vanguardFundTabBox:tab0",execOnLoad:true, populatorUrl:"/us/JSP/Funds/VGITab/VGIFundOverviewTabContent.jsf?FundIntExt=INT&amp;FundId=0542", inline:fals e,type:"once"}); &lt;/script&gt; </code></pre> http://stackoverflow.com/questions/1545178/is-there-a-way-to-get-the-function-a-decorator-has-wrapped/1546057#1546057 0 Answer by Peter Hoffmann for Is there a way to get the function a decorator has wrapped? Peter Hoffmann 2009-10-09T21:10:01Z 2009-10-09T21:10:01Z <p>You can attach the wrapped function to the inner function</p> <pre><code>In [1]: def wrapper(f): ...: def inner(): ...: print "inner" ...: inner._orig = f ...: return inner ...: In [2]: @wrapper ...: def foo(): ...: print "foo" ...: ...: In [3]: foo() inner In [4]: foo._orig() foo </code></pre> http://stackoverflow.com/questions/53513/python-what-is-the-best-way-to-check-if-a-list-is-empty/53525#53525 2 Answer by Peter Hoffmann for Python: What is the best way to check if a list is empty? Peter Hoffmann 2008-09-10T06:31:22Z 2009-09-30T03:32:40Z <p>An empty list is itself considered false in true value testing (see <a href="http://docs.python.org/lib/truth.html" rel="nofollow">python documentation</a>):</p> <pre><code>a = [] if a: print "not empty" </code></pre> <p>@Daren Thomas</p> <blockquote> <p>EDIT: Another point against testing the empty list as False: What about polymorphism? You shouldn't depend on a list being a list. It should just quack like a duck - how are you going to get your duckCollection to quack ''False'' when it has no elements?</p> </blockquote> <p>Your duckCollection should implement <code>__nonzero__</code> or <code>__len__</code> so the if a: will work without problems.</p> http://stackoverflow.com/questions/35691/posting-new-stackoverflow-questions-on-twitter-and-identi-ca-useful-or-useless 5 Posting new stackoverflow questions on twitter and identi.ca, useful or useless? [closed] Peter Hoffmann 2008-08-30T05:05:30Z 2009-09-04T20:52:18Z <p>I registered the accounts <a href="http://twitter.com/stack_overflow" rel="nofollow">http://twitter.com/stack_overflow</a> and <a href="http://identi.ca/stackoverflow" rel="nofollow">http://identi.ca/stackoverflow</a> and wrote a script to post new questions to these accounts.</p> <p>Is this service useful or useless?</p> <pre><code>import sys import urllib import time from datetime import datetime import feedparser # http://www.feedparser.org/ import twitter # http://code.google.com/p/python-twitter/ import identi # http://commandline.org.uk/python/2008/jul/23/using-new-social-networking-service-identica-command-line/ #IDENTICA_USER = "" #IDENTICA_PASS = "" #TWITTERUSER = "" #TWITTERPASS = "" def shorten(url): u = urllib.urlopen("http://tinyurl.com/api-create.php?url="+url) return u.read() def post(message, url): if len(message+" "+url) &gt;=140: url = shorten(url) if len(message+" "+url) &gt;=140: max = 139-len(url) message = message[:max] message = message +" "+url #post_identica(message) post_twitter(message) def post_twitter(message): api = twitter.Api(username=TWITTERUSER, password=TWITTERPASS) api.PostUpdate(message) def post_identica(message): myid = identi.IdentiCA(username=IDENTICA_USER, password=IDENTICA_PASS) myid.login() myid.put_message(message) def get_feed(): feedurl = "http://beta.stackoverflow.com/feeds" feed = feedparser.parse(feedurl) new_questions = [] for entry in feed["entries"]: # feed has new and updated items, we are only interested in new questions if entry["published_parsed"] == entry["updated_parsed"]: tags = [t["term"] for t in entry.tags] tags = " ".join(["#"+x for x in tags]) msg = "%s %s " %(entry.title, tags) new_questions.append((msg, entry.link)) return new_questions def main(argv=None): if argv is None: argv = sys.argv known_questions = {} #do a dry run to prevent questions to be posted twice for msg, link in get_feed(): known_questions[link] = msg print "First Run, skip: "+link while True: time.sleep(300) print "%s download feed" %(datetime.now().isoformat()) for msg, link in get_feed(): if link in known_questions: continue known_questions[link] = msg print "post: "+link post(msg, link) if __name__ == '__main__': main() </code></pre> <p>If someone "official" from stackoverflow wants to provide this service, I will give them over the account information.</p> <p>I just talked to some guys from identi.ca on irc and they have ambivalent feelings about posting (flooding??) their service with links to a closed beta service. So I disabled identi.ca for the moment and just sent updates to twitter.</p> http://stackoverflow.com/questions/1345448/command-line-arg-parsing-through-introspection/1346756#1346756 0 Answer by Peter Hoffmann for command line arg parsing through introspection Peter Hoffmann 2009-08-28T12:37:48Z 2009-08-28T12:37:48Z <p>The WSGI library werkzeug provides <strong><a href="http://werkzeug.pocoo.org/documentation/dev/script.html" rel="nofollow">Management Script Utilities</a></strong> which may do what you want, or at least give you a hint how to do the introspection yourself.</p> <pre><code>from werkzeug import script # actions go here def action_test(): "sample with no args" pass def action_foo(name=2, value="test"): "do some foo" pass if __name__ == '__main__': script.run() </code></pre> <p>Which will generate the following help message:</p> <pre><code>$ python /tmp/test.py --help usage: test.py &lt;action&gt; [&lt;options&gt;] test.py --help actions: foo: do some foo --name integer 2 --value string test test: sample with no args </code></pre> <p>An action is a function in the same module starting with "action_" which takes a number of arguments where every argument has a default. The type of the default value specifies the type of the argument.</p> <p>Arguments can then be passed by position or using --name=value from the shell.</p> http://stackoverflow.com/questions/1252316/python-and-web-tags-regex/1254768#1254768 0 Answer by Peter Hoffmann for Python and web-tags regex Peter Hoffmann 2009-08-10T13:06:44Z 2009-08-10T13:06:44Z <p>While it is ok to use rexex for quick and dirty html processing a much better and cleaner way is to use a html parser like <a href="http://codespeak.net/lxml" rel="nofollow">lxml.html</a> and to query the parsed tree with <a href="http://codespeak.net/lxml/xpathxslt.html" rel="nofollow">XPath</a> or <a href="http://codespeak.net/lxml/cssselect.html" rel="nofollow">CSS Selectors</a>.</p> <pre><code>html = """&lt;html&gt;&lt;body&gt;&lt;div class="deg"&gt;DATA1&lt;/div&gt;&lt;div class="deg"&gt;DATA2&lt;/div&gt;&lt;/body&gt;&lt;/html&gt;""" import lxml.html page = lxml.html.fromstring(html) #page = lxml.html.parse(url) for element in page.findall('.//div[@class="deg"]'): print element.text #using css selectors from lxml.cssselect import CSSSelector sel = CSSSelector("div.deg") for element in sel(page): print element.text </code></pre> http://stackoverflow.com/questions/117986/debug-monitor-middleware-for-python-wsgi-applications 1 Debug/Monitor middleware for python wsgi applications Peter Hoffmann 2008-09-22T22:22:18Z 2009-06-25T01:53:10Z <p>I'm searching a wsgi middleware which I can warp around a wsgi applications and which lets me monitor incoming and outgoing http requests and header fields.</p> <p>Something like firefox live headers, but for the server side.</p> http://stackoverflow.com/questions/822260/i-need-a-regex-for-the-href-attribute-for-an-mp3-file-url-in-python/822416#822416 1 Answer by Peter Hoffmann for I need a regex for the href attribute for an mp3 file url in python Peter Hoffmann 2009-05-04T22:31:59Z 2009-05-04T22:31:59Z <p>As always I suggest using a html parser like <a href="http://codespeak.net/lxml/lxmlhtml.html" rel="nofollow">lxml.html</a> instead of regular expressions to extract informations from html files:</p> <pre><code>import lxml.html tree = lxml.html.fromstring(htmlcode) for link in tree.findall(".//a"): url = link.get("href") if url.endswith(".mp3"): print url </code></pre> http://stackoverflow.com/questions/816118/whats-a-good-way-to-mix-rss-feeds-using-python/817637#817637 1 Answer by Peter Hoffmann for What's a good way to mix RSS feeds using Python? Peter Hoffmann 2009-05-03T18:08:20Z 2009-05-03T18:08:20Z <p><strong><a href="http://atomisator.ziade.org/" rel="nofollow">Atomisator</a></strong> is a data aggregator framework. Its purpose is to provide an engine to build any kind of data by merging several sources of data. It was developed as an example application in the book Expert Python Programming. You can use different In- and Output Formats. An RSS aggregartor is part of the examples.</p> http://stackoverflow.com/questions/32899/how-to-generate-dynamic-unit-tests-in-python 3 How to generate dynamic unit tests in python? Peter Hoffmann 2008-08-28T17:49:02Z 2009-05-01T03:59:06Z <p>I have some kind of test data and want to create an unit test for each item. My first idea was to do it like this:</p> <pre><code>import unittest l = [["foo", "a", "a",], ["bar", "a", "b"], ["lee", "b", "b"]] class TestSequence(unittest.TestCase): def testsample(self): for name, a,b in l: print "test", name self.assertEqual(a,b) if __name__ == '__main__': unittest.main() </code></pre> <p>The downside of this is that it handles all data in one test. I would like to generate one test for each item on the fly. Any suggestions?</p> http://stackoverflow.com/questions/756550/multiple-tuple-to-two-pair-tuple-in-python/756580#756580 12 Answer by Peter Hoffmann for Multiple Tuple to Two-Pair Tuple in Python? Peter Hoffmann 2009-04-16T15:07:24Z 2009-04-16T15:07:24Z <pre><code>[(tuple[a], tuple[a+1]) for a in range(0,len(tuple),2)] </code></pre> http://stackoverflow.com/questions/41207/javascript-interactive-shell-with-completion 4 JavaScript interactive shell with completion Peter Hoffmann 2008-09-03T05:27:19Z 2009-04-14T11:03:50Z <p>For debugging and testing I'm searching for a JavaScript shell with auto completion and if possible object introspection (like ipython). The online <a href="http://www.squarefree.com/shell/" rel="nofollow">JavaScript Shell</a> is really nice, but I'm looking for something local, without the need for an browser.</p> <p>So far I have tested the standalone JavaScript interpreter rhino, spidermonkey and google V8. But neither of them has completion. At least Rhino with jline and spidermonkey have some kind of command history via key up/down, but nothing more.</p> <p>Any suggestions?</p> <p>This question was asked again <a href="http://stackoverflow.com/questions/260787/javascript-shell">here</a>. It might contain an answer that you are looking for.</p> http://stackoverflow.com/questions/427472/line-completion-with-custom-commands/427910#427910 2 Answer by Peter Hoffmann for Line completion with custom commands Peter Hoffmann 2009-01-09T12:36:32Z 2009-01-09T12:36:32Z <p>There is the module <strong><a href="http://furius.ca/optcomplete/" rel="nofollow">optcomplete</a></strong> which allows you to write the completion for bash autocompletion in your python program. This is very useful in combination with optparse. You only define your arguments once, add the following to your .bashrc</p> <pre><code>complete -F _optcomplete &lt;program&gt; </code></pre> <p>and all your options will be autocompleted.</p> http://stackoverflow.com/questions/418497/how-do-i-convert-xml-to-nested-objects/419232#419232 4 Answer by Peter Hoffmann for How do I convert XML to nested objects. Peter Hoffmann 2009-01-07T04:51:26Z 2009-01-07T05:16:01Z <p>It's worth to have a look at <a href="http://codespeak.net/lxml/objectify.html" rel="nofollow">http://codespeak.net/lxml/objectify.html</a> </p> <pre><code>&gt;&gt;&gt; xml = """&lt;main&gt; ... &lt;object1 attr="name"&gt;content&lt;/object1&gt; ... &lt;object1 attr="foo"&gt;contenbar&lt;/object1&gt; ... &lt;test&gt;me&lt;/test&gt; ... &lt;/main&gt;""" &gt;&gt;&gt; from lxml import objectify &gt;&gt;&gt; main = objectify.fromstring(xml) &gt;&gt;&gt; main.object1[0] 'content' &gt;&gt;&gt; main.object1[1] 'contenbar' &gt;&gt;&gt; main.object1[0].get("attr") 'name' &gt;&gt;&gt; main.test 'me' </code></pre> <p>Or the other way around to build xml structures:</p> <pre><code>&gt;&gt;&gt; item = objectify.Element("item") &gt;&gt;&gt; item.title = "Best of python" &gt;&gt;&gt; item.price = 17.98 &gt;&gt;&gt; item.price.set("currency", "EUR") &gt;&gt;&gt; order = objectify.Element("order") &gt;&gt;&gt; order.append(item) &gt;&gt;&gt; order.item.quantity = 3 &gt;&gt;&gt; order.price = sum(item.price * item.quantity ... for item in order.item) &gt;&gt;&gt; import lxml.etree &gt;&gt;&gt; print lxml.etree.tostring(order, pretty_print=True) &lt;order&gt; &lt;item&gt; &lt;title&gt;Best of python&lt;/title&gt; &lt;price currency="EUR"&gt;17.98&lt;/price&gt; &lt;quantity&gt;3&lt;/quantity&gt; &lt;/item&gt; &lt;price&gt;53.94&lt;/price&gt; &lt;/order&gt; </code></pre> http://stackoverflow.com/questions/415192/best-way-to-create-a-simple-python-web-service/415338#415338 5 Answer by Peter Hoffmann for Best way to create a simple python web service Peter Hoffmann 2009-01-06T03:18:24Z 2009-01-06T03:18:24Z <p>Have a look at <a href="http://werkzeug.pocoo.org/" rel="nofollow">werkzeug</a>. Werkzeug started as a simple collection of various utilities for WSGI applications and has become one of the most advanced WSGI utility modules. It includes a powerful debugger, full featured request and response objects, HTTP utilities to handle entity tags, cache control headers, HTTP dates, cookie handling, file uploads, a powerful URL routing system and a bunch of community contributed addon modules.</p> <p>It includes lots of cool tools to work with http and has the advantage that you can use it with wsgi in different environments (cgi, fcgi, apache/mod_wsgi or with a plain simple python server for debugging). </p> http://stackoverflow.com/questions/34476/what-is-in-your-javascript-development-toolbox 5 What is in your JavaScript development toolbox? Peter Hoffmann 2008-08-29T15:41:45Z 2008-12-31T09:55:35Z <p>I have to do some JavaScript in the future, so it is time to update my toolbox. Right now I use Firefox with some addons:</p> <ul> <li>JavaScript Shell from https://www.squarefree.com/bookmarklets/webdevel.html</li> <li>Firefox Dom Inspector</li> <li>Firebug</li> <li>Greasemonkey</li> <li>Stylish</li> </ul> <p>I plan to use <a href="http://www.hacksrus.com/~ginda/venkman/" rel="nofollow">Venkman Javascript debugger</a> as well as <a href="http://www.jsunit.net/" rel="nofollow">jsunit</a> and <a href="http://www.crockford.com/javascript/lint.html" rel="nofollow">js-lint</a>.</p> <p>For programming I'm stick with vim.</p> <p>So what other tools do you use when developing JavaScript?</p> http://stackoverflow.com/questions/237432/python-properties-and-inheritance 6 python properties and inheritance Peter Hoffmann 2008-10-26T02:49:09Z 2008-11-14T22:52:52Z <p>I have a base class with a property which (the get method) I want to overwrite in the subclass. My first thought was something like:</p> <pre><code>class Foo(object): def _get_age(self): return 11 age = property(_get_age) class Bar(Foo): def _get_age(self): return 44 </code></pre> <p>This does not work (subclass bar.age returns 11). I found a solution with an lambda expression which works:</p> <pre><code>age = property(lambda self: self._get_age()) </code></pre> <p>So is this the right solution for using properties and overwrite them in a subclass, or are there other preferred ways to do this?</p> http://stackoverflow.com/questions/35753/is-python-good-for-big-software-projects-not-web-based/35757#35757 13 Answer by Peter Hoffmann for Is Python good for big software projects (not web based)? Peter Hoffmann 2008-08-30T07:19:40Z 2008-11-13T07:29:54Z <p>In my opinion python is more than ready for developing complex applications. I see pythons strength more on the server site than writing graphical clients. But have a look at <a href="http://www.resolversystems.com/" rel="nofollow">http://www.resolversystems.com/</a>. They develop a whole spreadsheet in python using the .net ironpython port.</p> <p>If you are familiar with eclipse have a look at <a href="http://pydev.sourceforge.net/" rel="nofollow">pydev</a> which provides auto-completion and debugging support for python with all the other eclipse goodies like svn support. The guy developing it has just been bought by <a href="http://aptana.com/blog/pcolton/pydev_news" rel="nofollow">aptana</a>, so this will be solid choice for the future.</p> <p>@Marcin</p> <blockquote> <p>Cons: as a dynamic language, has way worse IDE support (proper syntax completion requires static typing, whether explicit in Java or inferred in SML),</p> </blockquote> <p>You are right, that static analysis may not provide full syntax completion for dynamic languages, but I thing pydev gets the job done very well. Further more I have a different development style when programming python. I have always an ipython session open and with one F5 I do not only get the perfect completion from ipython, but object introspection and manipulation as well.</p> <blockquote> <p>But if you want to write second Google or Yahoo, you will be much better with C# or Java.</p> </blockquote> <p><a href="http://www.jaiku.com/blog/2008/08/18/from-the-dev-corner-an-under-the-hood-preview-of-our-new-engine/" rel="nofollow">Google just rewrote jaiku</a> to work ontop of appeninge, all in python. And as far as I know they use a lot of python inside google too.</p> http://stackoverflow.com/questions/258119/python-wrapping-method-invocations-with-pre-and-post-methods/258179#258179 0 Answer by Peter Hoffmann for Python: wrapping method invocations with pre and post methods Peter Hoffmann 2008-11-03T09:06:35Z 2008-11-03T10:23:08Z <p>You could just modify the A instance and replace the p1 function with a wrapper function:</p> <pre><code>def wrapped(pre, post, f): def wrapper(*args, **kwargs): pre() retval = f(*args, **kwargs) post() return retval return wrapper class Y: def __init__(self): self.a=A() self.a.p1 = wrapped(self.pre, self.post, self.a.p1) def pre(self): print 'X.pre' def post(self): print 'X.post' </code></pre> http://stackoverflow.com/questions/250271/python-regex-use-how-to-get-positions-of-matches/250303#250303 5 Answer by Peter Hoffmann for Python Regex Use - How to Get Positions of Matches Peter Hoffmann 2008-10-30T14:15:39Z 2008-10-30T14:15:39Z <pre><code>import re p = re.compile("[a-z]") for m in p.finditer('a1b2c3d4'): print m.start(), m.group() </code></pre> http://stackoverflow.com/questions/246725/how-do-i-add-tab-completion-to-the-python-shell/246774#246774 9 Answer by Peter Hoffmann for How do I add tab completion to the Python shell? Peter Hoffmann 2008-10-29T13:21:43Z 2008-10-29T13:21:43Z <p>I think django does something like <a href="http://www.python.org/doc/2.5.2/lib/module-rlcompleter.html" rel="nofollow">http://www.python.org/doc/2.5.2/lib/module-rlcompleter.html</a> </p> <p>If you want to have a really good interactive interpreter have a look at <a href="http://ipython.scipy.org/" rel="nofollow">http://ipython.scipy.org/</a>.</p> http://stackoverflow.com/questions/243836/how-to-copy-all-properties-of-an-object-to-another-object-in-python/244116#244116 2 Answer by Peter Hoffmann for How to copy all properties of an object to another object, in Python? Peter Hoffmann 2008-10-28T17:16:27Z 2008-10-28T17:16:27Z <p>If your class does not modify _ _ getitem _ _ or _ _ setitem _ _ for special attribute access all your attributes are stored in _ _ dict _ _ so you can do:</p> <pre><code> nobj.__dict__ = oobj.__dict__.copy() # just a shallow copy </code></pre> <p>If you use python properties you should look at <code>inspect.getmembers()</code> and filter out the ones you want to copy.</p> http://stackoverflow.com/questions/239912/python-file-interface-for-strings/239929#239929 12 Answer by Peter Hoffmann for Python file interface for strings Peter Hoffmann 2008-10-27T13:48:02Z 2008-10-27T13:48:02Z <p>Yes, there is StringIO:</p> <pre><code>import StringIO import sys sys.stdout = StringIO.StringIO() print "foo", "bar", "baz" s = sys.stdout.getvalue() </code></pre> http://stackoverflow.com/questions/235714/hard-disk-repair-software/235717#235717 3 Answer by Peter Hoffmann for Hard disk repair software Peter Hoffmann 2008-10-25T01:01:36Z 2008-10-25T01:01:36Z <p><a href="http://www.grc.com/sr/spinrite.htm" rel="nofollow">SpinRite</a> from Security Guru Steve Gibson</p> http://stackoverflow.com/questions/169272/what-coding-projects-are-used-to-create-art-and-beauty 4 What coding projects are used to create art and beauty? Peter Hoffmann 2008-10-03T23:15:46Z 2008-10-23T06:56:36Z <p>Today the blinkenlights <a href="http://blinkenlights.net/stereoscope" rel="nofollow">stereoscope</a> project starts as part of the <a href="http://www.scotiabanknuitblanche.ca/" rel="nofollow">nuit blanche</a> art event in Toronto. The Toronto city hall is transferred into a giant matrix display. There are <a href="http://blinkenlights.net/stereoscope/create" rel="nofollow">tools</a> to create custom animations and an <a href="http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=291807780&amp;mt=8" rel="nofollow">iphone application</a> to view the live stream. </p> <p><img src="http://static.flickr.com/3232/2909334414_331d1aff43.jpg" alt="blinkenlights" /></p> <p>I think this is a great example of using technology for art and beauty. What other coding/programming projects are out there for the sake of art and beauty?</p> <p>Update: Youtube Video of blinkenlights in action: <a href="http://www.youtube.com/watch?v=jTZosieGhIQ" rel="nofollow">http://www.youtube.com/watch?v=jTZosieGhIQ</a></p> http://stackoverflow.com/questions/200020/python-get-last-answer/200045#200045 14 Answer by Peter Hoffmann for Python; get last answer Peter Hoffmann 2008-10-14T04:53:38Z 2008-10-14T04:53:38Z <p>Just for the record, ipython takes this one step further and you can access every result with _ and its numeric value</p> <pre><code>In [1]: 10 Out[1]: 10 In [2]: 32 Out[2]: 32 In [3]: _ Out[3]: 32 In [4]: _1 Out[4]: 10 In [5]: _2 Out[5]: 32 In [6]: _1 + _2 Out[6]: 42 In [7]: _6 Out[7]: 42 </code></pre> <p>And it is possible to edit ranges of lines with the %ed macro too:</p> <pre><code>In [1]: def foo(): ...: print "bar" ...: ...: In [2]: foo() bar In [3]: %ed 1-2 </code></pre> http://stackoverflow.com/questions/1643377/grouping-data-on-year/1643525#1643525 Comment by Peter Hoffmann on Grouping data on year Peter Hoffmann 2009-10-29T13:33:42Z 2009-10-29T13:33:42Z Nice solution. I would replace the key=lambda x: x.get('year') with the (imho better) key=operator.itemgetter(&quot;year&quot;) http://stackoverflow.com/questions/1605750/how-to-modify-the-python-default-dictionary-so-that-it-always-returns-a-default/1605802#1605802 Comment by Peter Hoffmann on How to modify the Python 'default' dictionary so that it always returns a default value Peter Hoffmann 2009-10-22T10:11:13Z 2009-10-22T10:11:13Z There is a defaultdict backport <a href="http://code.activestate.com/recipes/523034/" rel="nofollow">code.activestate.com/recipes/523034</a> http://stackoverflow.com/questions/1587839/polymorphism-not-broken-with-visitor-pattern-in-c-and-new-instead-of-override Comment by Peter Hoffmann on Polymorphism (not) broken with visitor pattern in C# (and new instead of override) Peter Hoffmann 2009-10-19T10:23:12Z 2009-10-19T10:23:12Z Hmm. I only hava a Mono C# Compiler at hand, but on my box the correct Accept(VisitorApecial v) is choosen. http://stackoverflow.com/questions/1569917/how-do-i-parse-html-using-regular-expressions-in-c/1570085#1570085 Comment by Peter Hoffmann on How do I parse HTML using regular expressions in C#? Peter Hoffmann 2009-10-15T23:44:05Z 2009-10-15T23:44:05Z If not: now you've got two problems. http://stackoverflow.com/questions/818077/pickle-a-dictionary-of-arrays/818086#818086 Comment by Peter Hoffmann on pickle a dictionary of arrays Peter Hoffmann 2009-05-03T22:56:48Z 2009-05-03T22:56:48Z If you want to save space use gzipped json, see <a href="http://blog.metaoptimize.com/2009/03/22/fast-deserialization-in-python/" rel="nofollow">blog.metaoptimize.com/2009/03/&hellip;</a> for some speed comparisons. http://stackoverflow.com/questions/430226/best-way-to-poll-a-web-service-eg-for-a-twitter-app Comment by Peter Hoffmann on Best way to poll a web service (eg, for a twitter app) Peter Hoffmann 2009-01-10T02:55:45Z 2009-01-10T02:55:45Z I wanted to do some scientific data analysis, put a request with a decent description to <a href="http://twitter.com/help/request_whitelisting" rel="nofollow">twitter.com/help/request_whitelisting</a> and got whitelisted within a week. So just tell them what you want to do and wait, I won't hurt if you just try. http://stackoverflow.com/questions/418497/how-do-i-convert-xml-to-nested-objects/419232#419232 Comment by Peter Hoffmann on How do I convert XML to nested objects. Peter Hoffmann 2009-01-08T12:03:12Z 2009-01-08T12:03:12Z you can use lxml.etree.cleanup_namespaces(order) http://stackoverflow.com/questions/258119/python-wrapping-method-invocations-with-pre-and-post-methods/258259#258259 Comment by Peter Hoffmann on Python: wrapping method invocations with pre and post methods Peter Hoffmann 2008-11-03T10:11:39Z 2008-11-03T10:11:39Z Instead of patching the Class just patch the Instance: self.a.p1 = precall(self.pre)(postcall(self.post)(self.a.p1)) http://stackoverflow.com/questions/190612/where-can-i-find-real-world-examples-of-applications-written-in-python/190637#190637 Comment by Peter Hoffmann on Where can I find real-world examples of applications written in python? Peter Hoffmann 2008-10-29T11:36:13Z 2008-10-29T11:36:13Z I think only parts of chandler are good examples for python programming. A lot of code is written with java in mind and the whole chandler project isn't exactly a success story. The book &quot;Dreaming in Code&quot; gives a good insight. http://stackoverflow.com/questions/237432/python-properties-and-inheritance/237461#237461 Comment by Peter Hoffmann on python properties and inheritance Peter Hoffmann 2008-10-26T04:00:01Z 2008-10-26T04:00:01Z for the record a full implementation with set, get and del: <a href="http://infinitesque.net/articles/2005/enhancing" rel="nofollow">infinitesque.net/articles/2005/enhancing</a> Python's property.xhtml http://stackoverflow.com/questions/168409/how-do-you-get-a-directory-listing-sorted-by-creation-date-in-python/168424#168424 Comment by Peter Hoffmann on How do you get a directory listing sorted by creation date in python? Peter Hoffmann 2008-10-04T02:56:11Z 2008-10-04T02:56:11Z Your os.listdir solution is missing the os.path.join: files.sort(lambda x,y: cmp(os.path.getmtime(os.path.join(search_dir,x)), os.path.getmtime(os.path.join(search_dir,y)))) http://stackoverflow.com/questions/169272/what-coding-projects-are-used-to-create-art-and-beauty/169525#169525 Comment by Peter Hoffmann on What coding projects are used to create art and beauty? Peter Hoffmann 2008-10-04T02:01:28Z 2008-10-04T02:01:28Z I think you don't have to strech the definition to call the demo scene art. But the difference is imho that it seldom does the step to broad audience like the blinkenlights project. http://stackoverflow.com/questions/169272/what-coding-projects-are-used-to-create-art-and-beauty/169445#169445 Comment by Peter Hoffmann on What coding projects are used to create art and beauty? Peter Hoffmann 2008-10-04T00:58:43Z 2008-10-04T00:58:43Z Of course this counts! I found it very impressing to see python evolve over the time and to see how long some known contributors have been onboard. http://stackoverflow.com/questions/137392/password-composition-algorithm/137421#137421 Comment by Peter Hoffmann on Password composition algorithm Peter Hoffmann 2008-09-26T02:53:10Z 2008-09-26T02:53:10Z Lets say for entering a boot password, or using the password for some kind of fancy security system. http://stackoverflow.com/questions/137392/password-composition-algorithm/137421#137421 Comment by Peter Hoffmann on Password composition algorithm Peter Hoffmann 2008-09-26T02:35:28Z 2008-09-26T02:35:28Z Let's say I'm somewhere where I have no access to a computer and want to remember/recalculate the password. Doing md5 in my head is a little too much...