User Dave - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T11:26:10Zhttp://stackoverflow.com/feeds/user/4072http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/50568/django-sessions12Django SessionsDave2008-09-08T20:16:16Z2008-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#2206501Answer by Dave for Language-agnostic properly-tabbing code editors for Linux?Dave2008-10-21T03:10:58Z2008-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#11711671Answer by Dave for Hidden features of PythonDave2008-09-22T19:51:20Z2008-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>
>>> a = ['a', 'b', 'c', 'd', 'e']
>>> for index, item in enumerate(a): print index, item
...
0 a
1 b
2 c
3 d
4 e
>>>
</code></pre>
http://stackoverflow.com/questions/67875/good-ways-to-learn-cocoa/67893#678934Answer by Dave for Good ways to Learn Cocoa?Dave2008-09-15T23:19:42Z2008-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#381220Answer by Dave for Recommended Fonts for Programming?Dave2008-09-01T16:28:18Z2008-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>