User peter hoffmann - Stack Overflow most recent 30 from stackoverflow.com 2009-07-04T07:21:17Z http://stackoverflow.com/feeds/user/720 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/117986/debug-monitor-middleware-for-python-wsgi-applications 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> 4 http://stackoverflow.com/questions/35691/posting-new-stackoverflow-questions-on-twitter-and-identi-ca-useful-or-useless Posting new stackoverflow questions on twitter and identi.ca, useful or useless? Peter Hoffmann 2008-08-30T05:05:30Z 2009-05-28T09:57:35Z <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> 6 http://stackoverflow.com/questions/822260/i-need-a-regex-for-the-href-attribute-for-an-mp3-file-url-in-python/822416#822416 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 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 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> 3 http://stackoverflow.com/questions/756550/multiple-tuple-to-two-pair-tuple-in-python/756580#756580 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 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" rel="nofollow">here</a>. It might contain an answer that you are looking for.</p> 4 http://stackoverflow.com/questions/427472/line-completion-with-custom-commands/427910#427910 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 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 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 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> 7 http://stackoverflow.com/questions/237432/python-properties-and-inheritance 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> 5 http://stackoverflow.com/questions/35753/is-python-good-for-big-software-projects-not-web-based/35757#35757 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 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 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 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 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 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 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 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> 7 http://stackoverflow.com/questions/200020/python-get-last-answer/200045#200045 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/195626/how-to-avoid-computation-every-time-a-python-module-is-reloaded/195702#195702 Answer by Peter Hoffmann for How to avoid computation every time a python module is reloaded Peter Hoffmann 2008-10-12T17:04:20Z 2008-10-12T17:04:20Z <p>You can use a <a href="http://www.python.org/doc/2.5.2/lib/module-shelve.html" rel="nofollow">shelve</a> to store your data on disc instead of loading the whole data into memory. So startup time will be very fast, but the trade-off will be slower access time. </p> <p>Shelve will pickle the dict values too, but will do the (un)pickle not at startup for all the items, but only at access time for each item itself.</p> http://stackoverflow.com/questions/184742/what-is-a-good-cms-written-in-python-and-not-plone/185002#185002 Answer by Peter Hoffmann for What is a good CMS written in Python (and not Plone)? Peter Hoffmann 2008-10-08T21:25:57Z 2008-10-08T21:25:57Z <p>The <strong><a href="http://pinaxproject.com/" rel="nofollow">pinax</a></strong> project is a kind of <strong>django</strong> bundle with some modules to build community sites. It is a good start to build your cms on it. There is a <a href="http://jtauber.com/blog/2008/09/16/my_talk_on_pinax_at_djangocon/" rel="nofollow">video</a> available presenting it a djangoconf.</p> <p>Feature List:</p> <ul> <li>openid support</li> <li>email verification</li> <li>password management</li> <li>site announcements</li> <li>a notification framework</li> <li>user-to-user messaging</li> <li>friend invitation (both internal and external to the site)</li> <li>a basic twitter clone</li> <li>oembed support</li> <li>gravatar support</li> <li>interest groups (called tribes)</li> <li>projects with basic task and issue management</li> <li>threaded discussions</li> <li>wikis with multiple markup support</li> <li>blogging</li> <li>bookmarks</li> <li>tagging</li> <li>contact import (from vCard, Google or Yahoo)</li> <li>photo management</li> </ul> <p>(from their website)</p> http://stackoverflow.com/questions/40177/notification-api-for-windows Notification API for windows Peter Hoffmann 2008-09-02T18:05:42Z 2008-10-08T03:58:40Z <p>Linux has libnotify and OS X has growl. Is there some kind of Notification API for Windows too? </p> <p>It should be accessible via .Net languages.</p> <p>Clarification:</p> <p>Yes I'm looking for an way to send notification to the user, but it won't harm if one can subscribe to certain events with programs too. The linux libnotify uses a system wide D-Bus messaging system, which can handle all kind of events.</p> 4 http://stackoverflow.com/questions/172092/what-are-some-good-resources-for-learning-data-mining/172101#172101 Answer by Peter Hoffmann for What are some good resources for learning data mining? Peter Hoffmann 2008-10-05T14:59:02Z 2008-10-05T14:59:02Z <p>I can recommend the book <strong>Programming Collective Intelligence</strong> from Toby Segaran. </p> <p>You can have a look inside the book at <a href="http://books.google.de/books?q=programming+collective+intelligence" rel="nofollow">google books</a>.</p> http://stackoverflow.com/questions/169511/how-do-i-iterate-over-a-range-of-numbers-in-bash/169515#169515 Answer by Peter Hoffmann for How do I iterate over a range of numbers in bash? Peter Hoffmann 2008-10-04T01:41:23Z 2008-10-04T01:41:23Z <p>You can use</p> <pre><code>for i in $(seq $END); do echo $i; done </code></pre> http://stackoverflow.com/questions/168886/obfuscate-mask-scramble-personal-information/168898#168898 Answer by Peter Hoffmann for Obfuscate / Mask / Scramble personal information Peter Hoffmann 2008-10-03T21:04:41Z 2008-10-03T21:04:41Z <p>I use <a href="http://www.generatedata.com/" rel="nofollow">generatedata</a>. It is an open source php script which can generate all sorts of dummy data. </p> http://stackoverflow.com/questions/168559/python-how-do-i-convert-an-os-level-handle-to-an-open-file-to-a-file-object/168584#168584 Answer by Peter Hoffmann for Python - How do I convert "an OS-level handle to an open file" to a file object? Peter Hoffmann 2008-10-03T19:47:17Z 2008-10-03T20:06:53Z <p>You can use </p> <pre><code>os.write(tup[0], "foo\n") </code></pre> <p>to write to the handle.</p> <p>If you want to open the handle for writing you need to add the <strong>"w"</strong> mode</p> <pre><code>f = os.fdopen(tup[0], "w") f.write("foo") </code></pre> http://stackoverflow.com/questions/162656/interface-to-versioned-dictionary Interface to versioned dictionary Peter Hoffmann 2008-10-02T14:38:43Z 2008-10-02T14:46:31Z <p>I have an versioned document store which I want to access through an dict like interface. Common usage is to access the latest revision (get, set, del), but one should be able to access specific revisions too (keys are always str/unicode or int).</p> <pre><code>from UserDict import DictMixin class VDict(DictMixin): def __getitem__(self, key): if isinstance(key, tuple): docid, rev = key else: docid = key rev = None # set to tip rev print docid, rev # return ... In [1]: d = VDict() In [2]: d[2] 2 None In [3]: d[2, 1] 2 1 </code></pre> <p>This solution is a little bit tricky and I'm not sure if it is a clean, understandable interface. Should I provide a function </p> <pre><code>def getrev(self, docid, rev): ... </code></pre> <p>instead?</p> 1 http://stackoverflow.com/questions/137392/password-composition-algorithm Password composition algorithm Peter Hoffmann 2008-09-26T02:22:30Z 2008-09-26T03:59:29Z <p>I'm sick of remembering all the passwords for different logins. Lately I found the interesting tool <a href="http://www.xs4all.nl/~jlpoutre/BoT/Javascript/PasswordComposer/" rel="nofollow">password composer</a> which lets you generate passwords base on the <strong>hostname</strong> and a secret <strong>master password</strong>. But I don't want to use a website or installing software to generate my passwords.</p> <p>So I'm looking for a simple one way hashing alogorithm which I can execute without computer aid to generate my passwords. Something in the spirit of the <a href="http://en.wikipedia.org/wiki/Solitaire_(cipher)" rel="nofollow">solitare cipher</a> without the need for cards.</p> <p>Using a PW store is not an option.</p> 4 http://stackoverflow.com/questions/818077/pickle-a-dictionary-of-arrays/818086#818086 Comment by Peter Hoffmann Peter Hoffmann 2009-05-03T22:56:48Z 2009-05-03T22:56:48Z If you want to save space use gzipped json, see http://blog.metaoptimize.com/2009/03/22/fast-deserialization-in-python/ 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 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 http://twitter.com/help/request_whitelisting 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 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 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 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 "Dreaming in Code" gives a good insight. http://stackoverflow.com/questions/237432/python-properties-and-inheritance/237461#237461 Comment by Peter Hoffmann Peter Hoffmann 2008-10-26T04:00:01Z 2008-10-26T04:00:01Z for the record a full implementation with set, get and del: http://infinitesque.net/articles/2005/enhancing 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 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 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 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 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 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... http://stackoverflow.com/questions/127454/contributing-to-python/127651#127651 Comment by Peter Hoffmann Peter Hoffmann 2008-09-24T16:16:36Z 2008-09-24T16:16:36Z You can use your website and a code repository like google.code, github, sourceforge or bitbucket. Make steady releases and submit them to the pypi.python.org so that others can find and easy install them. http://stackoverflow.com/questions/117986/debug-monitor-middleware-for-python-wsgi-applications/118037#118037 Comment by Peter Hoffmann Peter Hoffmann 2008-09-22T22:44:01Z 2008-09-22T22:44:01Z OK, that's the incoming side, but I like to do the same for the outgoing response too. http://stackoverflow.com/questions/74108/visualize-friend-of-a-friend-foaf-graph/74395#74395 Comment by Peter Hoffmann Peter Hoffmann 2008-09-16T16:51:38Z 2008-09-16T16:51:38Z Converting the graph is not the big problem, but I really need to be able to use the tools interactively, eg. select a nod and see all its neighbours highlighted. For staic generation graphviz does the job really well. http://stackoverflow.com/questions/58622/can-i-document-python-code-with-doxygen-and-does-it-make-sense/59955#59955 Comment by Peter Hoffmann Peter Hoffmann 2008-09-13T07:22:16Z 2008-09-13T07:22:16Z It is true, that sphinx uses docs written independently from source code as a base, but using the autodoc extension one can easily include docstrings from python modules. Because of its dynamic nature I find hand written documentation for python modules more useful than generated api docs.