User Dan - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T01:14:44Z http://stackoverflow.com/feeds/user/444 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1691229/how-does-im-remember-password-securely/1691236#1691236 0 Answer by Dan for how does IM remember password securely? Dan 2009-11-06T23:33:16Z 2009-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#1638666 2 Answer by Dan for Web development: Should I learn PHP? Dan 2009-10-28T17:08:12Z 2009-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-java 3 Regex Named Groups in Java Dan 2009-01-06T05:45:36Z 2009-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#1039846 2 Answer by Dan for Clojure Vector of Refs Dan 2009-06-24T17:42:45Z 2009-06-24T17:42:45Z <p>Ok, this is pretty gross, but it works:</p> <pre><code>user=&gt; (map (fn [_] (ref nil)) (range 5)) (#&lt;Ref@27147d: nil&gt; #&lt;Ref@b248c8: nil&gt; #&lt;Ref@c86116: nil&gt; #&lt;Ref@5e06ef: nil&gt; #&lt;Ref@19719f: nil&gt;) </code></pre> <p>That returns a LazySeq, so if you want/need a Vector, then just use:</p> <pre><code>user=&gt; (vec (map (fn [_] (ref nil)) (range 5))) [#&lt;Ref@5bf9cf: nil&gt; #&lt;Ref@6dbfb0: nil&gt; #&lt;Ref@43f787: nil&gt; #&lt;Ref@2fe9bf: nil&gt; #&lt;Ref@9b1e15: nil&gt;] </code></pre> http://stackoverflow.com/questions/912412/class-attributes-with-a-calculated-name/912790#912790 2 Answer by Dan for Class attributes with a "calculated" name Dan 2009-05-26T21:13:02Z 2009-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#516107 6 Answer by Dan for Clojure 'if' never evaluating its third argument. Dan 2009-02-05T14:26:40Z 2009-02-05T14:26:40Z <p>Untested:</p> <pre><code>(if (&gt; 0 (. astr (indexOf (int \.)))) </code></pre> http://stackoverflow.com/questions/311621/accidental-overwrite-of-osx-python-system-framework/311658#311658 0 Answer by Dan for Accidental overwrite of OSX Python system framework Dan 2008-11-22T19:14:15Z 2008-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#255199 11 Answer by Dan for How do I keep Python print from adding spaces ? Dan 2008-10-31T22:53:52Z 2008-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 &lt;whatevers&gt; 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#252496 2 Answer by Dan for In django, how do I sort a model on a field and then get the last item? Dan 2008-10-31T03:01:01Z 2008-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#217081 0 Answer by Dan for In Python, what does it mean if an object is subscriptable or not? Dan 2008-10-19T22:39:47Z 2008-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#154099 0 Answer by Dan for Why won't Django auto-escape my <script> tags? Dan 2008-09-30T17:27:38Z 2008-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#95775 6 Answer by Dan for While coding, how many columns do you format for? Dan 2008-09-18T19:04:50Z 2008-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#35475 1 Answer by Dan for Are there any static analysis tools for Python? Dan 2008-08-29T23:51:27Z 2008-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#35089 2 Answer by Dan for Django ImageField core=False in newforms admin Dan 2008-08-29T19:20:47Z 2008-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#32901 0 Answer by Dan for How do i get today's date in C# in 8/28/2008 format? Dan 2008-08-28T17:49:50Z 2008-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 &amp; 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#32838 0 Answer by Dan for How do i get today's date in C# in 8/28/2008 format? Dan 2008-08-28T17:14:13Z 2008-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#30768 11 Answer by Dan for Good Git repository viewer for Mac Dan 2008-08-27T18:13:49Z 2008-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#11693 1 Answer by Dan for How can I get Unicode characters to display properly for the tooltip for the IMG ALT in IE7? Dan 2008-08-14T20:56:08Z 2008-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#4716 23 Answer by Dan for Recommended Fonts for Programming? Dan 2008-08-07T13:40:17Z 2008-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#2784 1 Answer by Dan for Is it better to create Model classes, or just stick with generic database utility class? Dan 2008-08-05T20:13:32Z 2008-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#2735 8 Answer by Dan for What Hosting Service is best for Django applications? Dan 2008-08-05T19:31:46Z 2008-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#1638628 Comment by Dan on Web development: Should I learn PHP? Dan 2009-10-28T17:05:19Z 2009-10-28T17:05:19Z This is completely biased- there are a lot of way to make a living as a programmer that do not involve the ms stack http://stackoverflow.com/questions/912412/class-attributes-with-a-calculated-name/912790#912790 Comment by Dan on Class attributes with a "calculated" name Dan 2009-05-26T21:41:14Z 2009-05-26T21:41:14Z Ned's answer is better :) http://stackoverflow.com/questions/29761/good-git-repository-viewer-for-mac/30878#30878 Comment by Dan on Good Git repository viewer for Mac Dan 2009-03-05T23:52:21Z 2009-03-05T23:52:21Z I 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-type Comment by Dan on Discovering memory type Dan 2009-02-19T22:15:53Z 2009-02-19T22:15:53Z Ummmmm what is a windows class? http://stackoverflow.com/questions/430079/how-to-split-strings-into-text-and-number/430102#430102 Comment by Dan on How to split strings into text and number? Dan 2009-01-09T23:22:04Z 2009-01-09T23:22:04Z you probably want \w instead of [a-z] and \d instead of [0-9] http://stackoverflow.com/questions/415580/regex-named-groups-in-java/415635#415635 Comment by Dan on Regex Named Groups in Java Dan 2009-01-06T08:08:13Z 2009-01-06T08:08:13Z I agree -- thanks VonC http://stackoverflow.com/questions/330756/what-programming-tools-have-you-built-for-yourself/330763#330763 Comment by Dan on What programming tools have you built for yourself? Dan 2008-12-01T16:10:40Z 2008-12-01T16:10:40Z Waaaay back 5 years ago? http://stackoverflow.com/questions/241141/python-lazy-list/241169#241169 Comment by Dan on Python lazy list Dan 2008-10-28T03:41:49Z 2008-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#235077 Comment by Dan on Do modern compilers optimize the x * 2 operation to x << 1? Dan 2008-10-25T02:30:01Z 2008-10-25T02:30:01Z @Maxim, I see you what did there... http://stackoverflow.com/questions/233673/lexical-closures-in-python Comment by Dan on Lexical closures in Python Dan 2008-10-25T02:10:32Z 2008-10-25T02:10:32Z wtf, why is your function named kkk?! http://stackoverflow.com/questions/185781/finding-the-lcm-of-a-range-of-numbers/193572#193572 Comment by Dan on Finding the LCM of a range of numbers Dan 2008-10-11T04:35:45Z 2008-10-11T04:35:45Z I think you've over engineered it http://stackoverflow.com/questions/159720/what-is-the-naming-convention-in-python-for-variable-and-function-names/159745#159745 Comment by Dan on What is the naming convention in Python for variable and function names? Dan 2008-10-02T03:27:24Z 2008-10-02T03:27:24Z upvoted for an informative answer but then downvoted for preferring an ugly naming convention :-D http://stackoverflow.com/questions/137038/how-do-you-get-assembler-output-from-c-c-source-in-gcc/137044#137044 Comment by Dan on How do you get assembler output from C/C++ source in gcc? Dan 2008-09-26T00:40:27Z 2008-09-26T00:40:27Z asked and answered within a minute of posting? srsly? http://stackoverflow.com/questions/80655/exchange-drop-support-for-smtp/80719#80719 Comment by Dan on Exchange drop support for SMTP? Dan 2008-09-18T22:47:54Z 2008-09-18T22:47:54Z Can't take downvotes personally, I've learned. Voting here is so uninformed and cliquey