User Dan - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T01:14:44Zhttp://stackoverflow.com/feeds/user/444http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1691229/how-does-im-remember-password-securely/1691236#16912360Answer by Dan for how does IM remember password securely?Dan2009-11-06T23:33:16Z2009-11-07T18:44:08Z<p>They either save it unencrypted or with symmetric encryption, or they save it hashed and send it to the server the same way, not caring what the actual password is.</p>
<p><strong>edit</strong>: The comments on this answer are correct, of course. Storing and sending the hash is surely not how it's done. Thanks for the correction.</p>
http://stackoverflow.com/questions/1638602/web-development-should-i-learn-php/1638666#16386662Answer by Dan for Web development: Should I learn PHP?Dan2009-10-28T17:08:12Z2009-10-28T17:08:12Z<p>I think you should put emphasis on learning, rather than the tools you use to learn. If you're a smart dude then you won't only know PHP, you'll be a language polyglot.</p>
<p>Gotta start somewhere though, and if PHP is the easiest road, then I suggest you take it. Just don't get bogged down and think that the PHP way is the One True Way.</p>
http://stackoverflow.com/questions/415580/regex-named-groups-in-java3Regex Named Groups in JavaDan2009-01-06T05:45:36Z2009-07-08T01:41:19Z
<p>It is my understanding that the <code>java.regex</code> package does not have support for named groups (<a href="http://www.regular-expressions.info/named.html" rel="nofollow">http://www.regular-expressions.info/named.html</a>) so can anyone point me towards a third-party library that does?</p>
<p>I've looked at <a href="http://jregex.sourceforge.net/" rel="nofollow">jregex</a> but its last release was in 2002 and it didn't work for me (admittedly I only tried briefly) under java5.</p>
http://stackoverflow.com/questions/1039800/clojure-vector-of-refs/1039846#10398462Answer by Dan for Clojure Vector of RefsDan2009-06-24T17:42:45Z2009-06-24T17:42:45Z<p>Ok, this is pretty gross, but it works:</p>
<pre><code>user=> (map (fn [_] (ref nil)) (range 5))
(#<Ref@27147d: nil> #<Ref@b248c8: nil> #<Ref@c86116: nil> #<Ref@5e06ef: nil> #<Ref@19719f: nil>)
</code></pre>
<p>That returns a LazySeq, so if you want/need a Vector, then just use:</p>
<pre><code>user=> (vec (map (fn [_] (ref nil)) (range 5)))
[#<Ref@5bf9cf: nil> #<Ref@6dbfb0: nil> #<Ref@43f787: nil> #<Ref@2fe9bf: nil> #<Ref@9b1e15: nil>]
</code></pre>
http://stackoverflow.com/questions/912412/class-attributes-with-a-calculated-name/912790#9127902Answer by Dan for Class attributes with a "calculated" nameDan2009-05-26T21:13:02Z2009-05-26T21:13:02Z<pre><code>class C (object):
pass
c = C()
c.__dict__['foo'] = 42
c.foo # returns 42
</code></pre>
http://stackoverflow.com/questions/516082/clojure-if-never-evaluating-its-third-argument/516107#5161076Answer by Dan for Clojure 'if' never evaluating its third argument.Dan2009-02-05T14:26:40Z2009-02-05T14:26:40Z<p>Untested:</p>
<pre><code>(if (> 0 (. astr (indexOf (int \.))))
</code></pre>
http://stackoverflow.com/questions/311621/accidental-overwrite-of-osx-python-system-framework/311658#3116580Answer by Dan for Accidental overwrite of OSX Python system frameworkDan2008-11-22T19:14:15Z2008-11-22T19:14:15Z<p>This seems like a question for an Apple support group; it has nothing to do with python or programming.</p>
http://stackoverflow.com/questions/255147/how-do-i-keep-python-print-from-adding-spaces/255199#25519911Answer by Dan for How do I keep Python print from adding spaces ?Dan2008-10-31T22:53:52Z2008-10-31T22:53:52Z<p>Greg is right-- you can use sys.stdout.write</p>
<p>Perhaps, though, you should consider refactoring your algorithm to accumulate a list of <whatevers> and then</p>
<pre><code>lst = ['h', 'm']
print "".join(lst)
</code></pre>
http://stackoverflow.com/questions/252242/in-django-how-do-i-sort-a-model-on-a-field-and-then-get-the-last-item/252496#2524962Answer by Dan for In django, how do I sort a model on a field and then get the last item?Dan2008-10-31T03:01:01Z2008-10-31T03:01:01Z<p><strong>Note:</strong></p>
<p>Normal python lists accept negative indexes, which signify an offset from the end of the list, rather than the beginning like a positive number. However, QuerySet objects will raise <pre>AssertionError: Negative indexing is not supported.</pre> if you use a negative index, which is why you have to do what insin said: reverse the ordering and grab the <code>0th</code> element.</p>
http://stackoverflow.com/questions/216972/in-python-what-does-it-mean-if-an-object-is-subscriptable-or-not/217081#2170810Answer by Dan for In Python, what does it mean if an object is subscriptable or not?Dan2008-10-19T22:39:47Z2008-10-19T22:44:51Z<p>Off the top of my head, the following are the only built-ins that are subscriptable:</p>
<pre><code>string: "foobar"[3] == "b"
tuple: (1,2,3,4)[3] == 4
list: [1,2,3,4][3] == 4
dict: {"a":1, "b":2, "c":3}["c"] == 3
</code></pre>
<p>But mipadi's answer is correct; any class that implements __getitem__ is subscriptable</p>
http://stackoverflow.com/questions/154013/why-wont-django-auto-escape-my-script-tags/154099#1540990Answer by Dan for Why won't Django auto-escape my <script> tags?Dan2008-09-30T17:27:38Z2008-09-30T17:27:38Z<p>is person_form a form? or a Person instance?</p>
<p><strong>edit:</strong> Nevermind, you've solved it</p>
http://stackoverflow.com/questions/95575/while-coding-how-many-columns-do-you-format-for/95775#957756Answer by Dan for While coding, how many columns do you format for?Dan2008-09-18T19:04:50Z2008-09-18T19:04:50Z<p>I see a lot of people saying they format for 80 columns. While it <em>may</em> be true that narrower code is easier for some people to grok (personally I let my lines run as long as they need) I don't see the need for an 80 column limit.</p>
<p>I understand the legacy reasons for picking 80 columns, but are they relevant today? Does anyone <strong>actually</strong> code in an environment where they can't configure their editor to show more than 80 columns at a time?</p>
<p>So why not use 60 columns? 100 columns? 80 seems so arbitrary to me... it's based on a legacy technological limitation that we've long since overcome. Why not figure out what the optimal line-length actually is?</p>
http://stackoverflow.com/questions/35470/are-there-any-static-analysis-tools-for-python/35475#354751Answer by Dan for Are there any static analysis tools for Python?Dan2008-08-29T23:51:27Z2008-08-29T23:51:27Z<p>There's</p>
<ul>
<li><a href="http://www.logilab.org/857" rel="nofollow">pylint</a></li>
<li><a href="http://pychecker.sourceforge.net/" rel="nofollow">pychecker</a></li>
<li><a href="http://divmod.org/trac/wiki/DivmodPyflakes" rel="nofollow">pyflakes</a></li>
</ul>
<p>And probably others, too.</p>
http://stackoverflow.com/questions/34209/django-imagefield-corefalse-in-newforms-admin/35089#350892Answer by Dan for Django ImageField core=False in newforms adminDan2008-08-29T19:20:47Z2008-08-29T19:20:47Z<p>The <strong>core</strong> attribute isn't used anymore.</p>
<p>From <a href="http://oebfare.com/blog/2008/jul/20/newforms-admin-migration-and-screencast/" rel="nofollow">Brian Rosner's Blog</a>:</p>
<blockquote>
<p>You can safely just remove any and all core arguments. They are no longer used. newforms-admin now provides a nice delete checkbox for exisiting instances in inlines.</p>
</blockquote>
http://stackoverflow.com/questions/32747/how-do-i-get-todays-date-in-c-in-8-28-2008-format/32901#329010Answer by Dan for How do i get today's date in C# in 8/28/2008 format?Dan2008-08-28T17:49:50Z2008-08-28T17:49:50Z<p>@Ken</p>
<ol>
<li><p>It only costs you a point per down vote so unless you're super concerned about your e-cred I wouldn't let it keep you from down voting me if you feel it's justified.</p></li>
<li><p>Yes I do think there are questions that can't be answered by google:</p>
<ul>
<li>Questions that take more than a few words to ask,</li>
<li>Questions that deal with lesser-used tools, or a combination of tools,</li>
<li>Questions that are plain old hard to google for (ie. barenaked ladies)</li>
</ul></li>
<li><p>Shouldn't we use stackoverflow in the way that makes the most sense, and not the way that will make Jeff & Joel the most money? Jeff wants google to point to SO for every programming question because it'll bring him ad revenue. I want google to point to SO for interesting/difficult questions because that'll actually be a useful resource.</p></li>
<li><p>And finally, I'm not here to gain SO-points. I'm here to participate in an interesting idea. I will not censor myself to make your recursive back-patting easier. If that makes my "life at SO" more difficult then so be it :-/</p></li>
</ol>
<p>Basically my point is that I don't think SO is the right place to ask questions like "how do I format a date in C#" or "how do I get the size of a file in C/C++". Those are trivially answered questions and it seems like me that people only ask them to get more points and not actually out of genuine want.</p>
<p><strong>edit</strong>: s/are want/want</p>
http://stackoverflow.com/questions/32747/how-do-i-get-todays-date-in-c-in-8-28-2008-format/32838#328380Answer by Dan for How do i get today's date in C# in 8/28/2008 format?Dan2008-08-28T17:14:13Z2008-08-28T17:14:13Z<p>I'm sure I'll be downvoted for saying this, but why didn't you just consult your documentation... or google?</p>
<ul>
<li><p><a href="http://www.google.com/search?q=C%23+format+date" rel="nofollow">Google results for "C# format date"</a></p></li>
<li><p><a href="http://www.dotnetspider.com/resources/266-Formatting-Date-Time-using-e-DateTime-object.aspx" rel="nofollow">First link on google results</a></p></li>
</ul>
http://stackoverflow.com/questions/29761/good-git-repository-viewer-for-mac/30768#3076811Answer by Dan for Good Git repository viewer for MacDan2008-08-27T18:13:49Z2008-08-27T18:13:49Z<p>There's also <a href="http://github.com/pieter/gitx/tree/master" rel="nofollow">gitx</a>, it's progressing well and under active development (multiple commits per day).</p>
http://stackoverflow.com/questions/11690/how-can-i-get-unicode-characters-to-display-properly-for-the-tooltip-for-the-img/11693#116931Answer by Dan for How can I get Unicode characters to display properly for the tooltip for the IMG ALT in IE7?Dan2008-08-14T20:56:08Z2008-08-14T20:56:08Z<p>I'm not sure about the unicode issue but if you want the tooltip effect you should be using the title attribute, not alt.</p>
<p>Alt is for text you want screenreaders to speak, and it's what gets displayed if an image can't be loaded.</p>
http://stackoverflow.com/questions/4689/recommended-fonts-for-programming/4716#471623Answer by Dan for Recommended Fonts for Programming?Dan2008-08-07T13:40:17Z2008-08-07T13:40:17Z<p>+1 for Monaco, although <a href="http://thinkingdigitally.com/archive/ditching-monaco/" rel="nofollow">this blog post</a> is making me think about switching to <a href="http://www.levien.com/type/myfonts/inconsolata.html" rel="nofollow">Inconsolata</a>.</p>
<p>I'm curious as to what point size y'all use, I use the <a href="http://macromates.com/" rel="nofollow">TextMate</a> default size of 12pt.</p>http://stackoverflow.com/questions/2778/is-it-better-to-create-model-classes-or-just-stick-with-generic-database-utility/2784#27841Answer by Dan for Is it better to create Model classes, or just stick with generic database utility class?Dan2008-08-05T20:13:32Z2008-08-05T20:13:32Z<p>By no means is MVC the only design pattern for the web, but it is a useful one.</p>
<p>Adopting just the 'M' will pay dividends, in my opinion, even if you can't/won't adopt the 'V' or 'C'.</p>http://stackoverflow.com/questions/2729/what-hosting-service-is-best-for-django-applications/2735#27358Answer by Dan for What Hosting Service is best for Django applications?Dan2008-08-05T19:31:46Z2008-08-05T19:31:46Z<p>I really, really like <a href="http://www.webfaction.com/" rel="nofollow">Webfaction</a> and I think you'll find a lot of others that do too.</p>
<p>In my year with webfaction so far here are the positive things:</p>
<ul>
<li>Great django support out of the box. They have support people familiar with django and ready to help you out at all times. It's easy to install release versions or to run off SVN Trunk since you have access to your own python site-packages directory.</li>
<li>Very reliable (0% downtime on my server [that I noticed, anyway)]</li>
<li>Amazing support on the forums</li>
<li>Willing to install custom software, etc.</li>
<li>Cheap! ($8.50/mo with 1 year pre-pay)</li>
</ul>
<p>And the negatives:</p>
<ul>
<li>Shared hosting means no root access :'(</li>
<li>Shared hosting means someone <em>else</em> can mess up <strong>my</strong> server processes</li>
</ul>
<p>Those aren't really negatives specific to webfaction, though, so take them for what they're worth.</p>
<p>Overall I'm very happy with them.</p>http://stackoverflow.com/questions/1638602/web-development-should-i-learn-php/1638628#1638628Comment by Dan on Web development: Should I learn PHP?Dan2009-10-28T17:05:19Z2009-10-28T17:05:19ZThis is completely biased- there are a lot of way to make a living as a programmer that do not involve the ms stackhttp://stackoverflow.com/questions/912412/class-attributes-with-a-calculated-name/912790#912790Comment by Dan on Class attributes with a "calculated" nameDan2009-05-26T21:41:14Z2009-05-26T21:41:14ZNed's answer is better :)http://stackoverflow.com/questions/29761/good-git-repository-viewer-for-mac/30878#30878Comment by Dan on Good Git repository viewer for MacDan2009-03-05T23:52:21Z2009-03-05T23:52:21ZI nullified the downvote with my upvote because, like Sergio said, SO didn't have comments at the time this was posted.http://stackoverflow.com/questions/567454/discovering-memory-typeComment by Dan on Discovering memory typeDan2009-02-19T22:15:53Z2009-02-19T22:15:53ZUmmmmm what is a windows class?http://stackoverflow.com/questions/430079/how-to-split-strings-into-text-and-number/430102#430102Comment by Dan on How to split strings into text and number?Dan2009-01-09T23:22:04Z2009-01-09T23:22:04Zyou probably want \w instead of [a-z] and \d instead of [0-9]http://stackoverflow.com/questions/415580/regex-named-groups-in-java/415635#415635Comment by Dan on Regex Named Groups in JavaDan2009-01-06T08:08:13Z2009-01-06T08:08:13ZI agree -- thanks VonChttp://stackoverflow.com/questions/330756/what-programming-tools-have-you-built-for-yourself/330763#330763Comment by Dan on What programming tools have you built for yourself?Dan2008-12-01T16:10:40Z2008-12-01T16:10:40ZWaaaay back 5 years ago?http://stackoverflow.com/questions/241141/python-lazy-list/241169#241169Comment by Dan on Python lazy listDan2008-10-28T03:41:49Z2008-10-28T03:41:49Z@Glyph that code you pasted would work if you defined <b>getitem</b>http://stackoverflow.com/questions/235072/do-modern-compilers-optimize-the-x-2-operation-to-x-1/235077#235077Comment by Dan on Do modern compilers optimize the x * 2 operation to x << 1?Dan2008-10-25T02:30:01Z2008-10-25T02:30:01Z@Maxim, I see you what did there...http://stackoverflow.com/questions/233673/lexical-closures-in-pythonComment by Dan on Lexical closures in PythonDan2008-10-25T02:10:32Z2008-10-25T02:10:32Zwtf, why is your function named kkk?!http://stackoverflow.com/questions/185781/finding-the-lcm-of-a-range-of-numbers/193572#193572Comment by Dan on Finding the LCM of a range of numbersDan2008-10-11T04:35:45Z2008-10-11T04:35:45ZI think you've over engineered ithttp://stackoverflow.com/questions/159720/what-is-the-naming-convention-in-python-for-variable-and-function-names/159745#159745Comment by Dan on What is the naming convention in Python for variable and function names?Dan2008-10-02T03:27:24Z2008-10-02T03:27:24Zupvoted for an informative answer but then downvoted for preferring an ugly naming convention :-Dhttp://stackoverflow.com/questions/137038/how-do-you-get-assembler-output-from-c-c-source-in-gcc/137044#137044Comment by Dan on How do you get assembler output from C/C++ source in gcc?Dan2008-09-26T00:40:27Z2008-09-26T00:40:27Zasked and answered within a minute of posting? srsly?http://stackoverflow.com/questions/80655/exchange-drop-support-for-smtp/80719#80719Comment by Dan on Exchange drop support for SMTP?Dan2008-09-18T22:47:54Z2008-09-18T22:47:54ZCan't take downvotes personally, I've learned. Voting here is so uninformed and cliquey