User Dave - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T11:26:10Z http://stackoverflow.com/feeds/user/4072 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/50568/django-sessions 12 Django Sessions Dave 2008-09-08T20:16:16Z 2008-11-28T15:34:56Z <p>I'm looking at sessions in Django, and by default they are stored in the database. What are the benefits of filesystem and cache sessions and when should I use them?</p> http://stackoverflow.com/questions/220642/language-agnostic-properly-tabbing-code-editors-for-linux/220650#220650 1 Answer by Dave for Language-agnostic properly-tabbing code editors for Linux? Dave 2008-10-21T03:10:58Z 2008-10-21T03:10:58Z <p>Have you tried scite?</p> <p><a href="http://www.scintilla.org/SciTE.html" rel="nofollow">http://www.scintilla.org/SciTE.html</a></p> <p>Your distro might already have a package for it. </p> <p>I believe there was a plugin that could add projects, but I can't remember it off the top of my head. I'm not sure about being able to double-click on errors to jump to the line.</p> http://stackoverflow.com/questions/101268/hidden-features-of-python/117116#117116 71 Answer by Dave for Hidden features of Python Dave 2008-09-22T19:51:20Z 2008-09-22T19:51:20Z <p><strong>enumerate</strong></p> <p>Wrap an iterable with enumerate and it will yield the item along with it's index.</p> <p>For example:</p> <pre><code> &gt;&gt;&gt; a = ['a', 'b', 'c', 'd', 'e'] &gt;&gt;&gt; for index, item in enumerate(a): print index, item ... 0 a 1 b 2 c 3 d 4 e &gt;&gt;&gt; </code></pre> http://stackoverflow.com/questions/67875/good-ways-to-learn-cocoa/67893#67893 4 Answer by Dave for Good ways to Learn Cocoa? Dave 2008-09-15T23:19:42Z 2008-09-15T23:19:42Z <p>Cocoa Programming for Mac OS X, by Aaron Hillegass.</p> http://stackoverflow.com/questions/4689/recommended-fonts-for-programming/38122#38122 0 Answer by Dave for Recommended Fonts for Programming? Dave 2008-09-01T16:28:18Z 2008-09-01T16:28:18Z <p>I'm digging the DejaVu Sans Mono (it's supposed to be the same as Panic Sans) on my Mac.</p>