User Jarred McCaffrey - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T07:53:32Zhttp://stackoverflow.com/feeds/user/45410http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/397148/why-doesnt-python-have-multline-comments/397159#39715911Answer by Jarred McCaffrey for Why doesn't Python have multline comments?Jarred McCaffrey2008-12-29T05:04:11Z2008-12-29T05:04:11Z<p>This likely goes back to the core concept that there should be one obvious way to do a task. Additional comment styles add unnecessary complications and could decrease readability.</p>
http://stackoverflow.com/questions/397034/confusing-list-in-python-what-is-it/397047#3970472Answer by Jarred McCaffrey for Confusing [...] List in Python: What is it?Jarred McCaffrey2008-12-29T02:56:36Z2008-12-29T03:13:18Z<p>EDIT: As mentioned above, this isn't the Ellipsis object, but the result of a looped list. I jumped the gun here. Knowing about the Ellipsis object is a good bit of back shelf knowledge should you find an Ellipsis in some actual code, rather than the output.</p>
<p><hr /></p>
<p>The Ellipsis object in Python is used for extended slice notation. It's not used in current Python core libraries, but is available for developers to define in their own libraries. For example, NumPy (or SciPy) use this as part of their array object. You'll need to look at the documentation for tree() to know exactly how Ellipsis behaves in this object.</p>
<p>From <a href="http://www.python.org/doc/2.5.2/lib/bltin-ellipsis-object.html" rel="nofollow">Python documentation</a>:</p>
<blockquote>
<p>3.11.8 The Ellipsis Object</p>
<p>This object is used by extended slice
notation (see the Python Reference
Manual). It supports no special
operations. There is exactly one
ellipsis object, named Ellipsis (a
built-in name).</p>
<p>It is written as Ellipsis.</p>
</blockquote>
http://stackoverflow.com/questions/390289/what-types-of-coding-anti-patterns-do-you-always-refactor-when-you-cross-them/390382#3903823Answer by Jarred McCaffrey for What types of coding anti-patterns do you always refactor when you cross them? Jarred McCaffrey2008-12-23T23:32:39Z2008-12-23T23:32:39Z<p>This is a great situation to show off the benefits of unit tests.</p>
<p>If unit tests are in place, developers can bravely and aggressively refactor oddly written code they might come across. If it passes the unit tests and you've increased readability, then you've done your good deed for the day and can move on.</p>
<p>Without unit tests, simplifying complex code that's filled with voodoo presents a great risk of breaking the code and not even knowing you've introduced a new bug! So most developers will take the cautious route and move on.</p>
http://stackoverflow.com/questions/386311/calculate-longitute-latitude/386335#3863353Answer by Jarred McCaffrey for Calculate longitute/latitudeJarred McCaffrey2008-12-22T14:14:56Z2008-12-22T14:27:16Z<p>This sounds like a basic latitude-longitude triangulation question. The common approaches are outlined in a Yahoo! Answers topic <a href="http://answers.yahoo.com/question/index?qid=20080613183749AAfjbPr" rel="nofollow">here</a>. There are likely libraries to do this in many languages. A google search for "latitude longitude triangulation" plus your language of choice will likely reveal some existing code to use. "Geocoding" is another common task rolled into similar libraries, so that may be another useful keyword.</p>
<p>Edit: As others have mentioned, "trilateration" seems to be the best term. However, depending on your data and requirements, there are simpler approximation solutions that may satisfy your requirements.</p>
<p>The Yahoo! Answers post is quoted below for convenience:</p>
<blockquote>
<p>"For larger distances, spherical
geometry. For relatively small ones,
treat the earth as flat, and the
coordinates as xy coordinates. For the
distances to work with the degrees of
the coordinates, you will have to use
the cosine function to convert from
one to the other. (While degrees of
latitude are about 69 miles all over
the earth, degrees of longitude vary
from the same at the equator to 0 at
the poles.)</p>
<p>You have the center points of three
circles and the radius of those
circles. They are supposed to
intersect at one point, so you can
treat them in pairs to find the
intersection points of each and throw
out the ones that don't match
<a href="http://mathworld.wolfram.com/Circle-CircleIntersection.html" rel="nofollow">http://mathworld.wolfram.com/Circle-CircleIntersection.html</a>."
(<a href="http://answers.yahoo.com/my/profile;_ylt=AlkukbjBaS6S7pvcVoxSIFD.xQt.;_ylv=3?show=9adfd40573a5f8454356f9c074106d83aa" rel="nofollow">mike1942f</a>)</p>
</blockquote>
http://stackoverflow.com/questions/378118/whats-the-most-efficient-way-to-instantiate-worker-variables/378170#3781700Answer by Jarred McCaffrey for Whats The Most Efficient Way To Instantiate Worker VariablesJarred McCaffrey2008-12-18T15:23:37Z2008-12-18T15:23:37Z<p>Write your code with the reader as the first thing in your mind. A surprisingly small portion of code should be optimized.</p>
<p>There is often a tradeoff between optimization and readability. Since most of the manpower is spent revising and editing existing code, it is usually the right decision to lean toward readability over optimization.</p>
<p>The 80/20 rule is often applied here.</p>
http://stackoverflow.com/questions/374239/why-doesnt-python-have-a-switch-statement/375732#3757320Answer by Jarred McCaffrey for Why doesn't Python have a switch statement?Jarred McCaffrey2008-12-17T19:28:18Z2008-12-17T20:00:50Z<p><a href="http://www.python.org/dev/peps/pep-0020/" rel="nofollow">"The Zen of Python"</a>, pasted below, leads you to the answer.</p>
<p>Read lines 13 and 14. After seeing examples of dicts used for switch functionality, it starts to click that this <em>is</em> the Pythonic way of doing a switch statement in a less error-prone, more human readable form.</p>
<pre><code>The Zen of Python, by Tim Peters
Beautiful is better than ugly.
Explicit is better than implicit.
Simple is better than complex.
Complex is better than complicated.
Flat is better than nested.
Sparse is better than dense.
Readability counts.
Special cases aren't special enough to break the rules.
Although practicality beats purity.
Errors should never pass silently.
Unless explicitly silenced.
In the face of ambiguity, refuse the temptation to guess.
There should be one-- and preferably only one --obvious way to do it. <-- 13
Although that way may not be obvious at first unless you're Dutch. <-- 14
Now is better than never.
Although never is often better than *right* now.
If the implementation is hard to explain, it's a bad idea.
If the implementation is easy to explain, it may be a good idea.
Namespaces are one honking great idea -- let's do more of those!
</code></pre>
<p>And, as others have mentioned, more verbose answers can be found in:</p>
<ul>
<li>the <a href="http://www.python.org/doc/faq/general/#why-isn-t-there-a-switch-or-case-statement-in-python" rel="nofollow">Python FAQ</a> for a summary</li>
<li><a href="http://www.python.org/dev/peps/pep-3103/" rel="nofollow">PEP 3103</a> for all the gory details</li>
</ul>
<p>And here at stackoverflow there is a thread of proposed switch/case alternatives:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/60208/replacements-for-switch-statement-in-python">"Replacements for switch statement in python?"</a></li>
</ul>
http://stackoverflow.com/questions/375263/when-should-you-leave-your-day-job-to-open-a-start-up/375519#3755192Answer by Jarred McCaffrey for When should you leave your day job to open a start-up?Jarred McCaffrey2008-12-17T18:21:36Z2008-12-17T18:21:36Z<p>One often overlooked point is that within a company there exists an entire infrastructure to support the talent--to support support you in whatever guru role you are in. Building the software that people need is one component, getting the software into the hands of the people that need it is another, and convincing people that they need your automated sprocket widgetizer may be yet another large component of the whole package.</p>
<p>Joel Spolsky explores these concepts quite well in <a href="http://www.joelonsoftware.com/articles/DevelopmentAbstraction.html" rel="nofollow">"The Development Abstraction Layer"</a>.</p>
<p>It's hard to say whether/when one should go it alone, but it should be done with open eyes and lots of determination. Many sources cite determination as a primary factor in freelance success--the kind of determination where you won't let anything stand in your way (even a current full time job) and you feel that determination confidently going in.</p>
<p>Best of luck in whatever your decision is.</p>
http://stackoverflow.com/questions/211234/best-time-of-day-to-code/375367#3753673Answer by Jarred McCaffrey for Best Time of Day to CodeJarred McCaffrey2008-12-17T17:38:52Z2008-12-17T17:38:52Z<p>I would hypothesize that that last minute is statistically the most productive timeframe, with productivity generally increasing as one approaches the eleventh hour, shortly followed by peak productivity during the last minute.</p>
<p>That said, the recommended best practice is to actually produce as much as possible during the comparatively underutilized run-up to the aforementioned eleventh hour and last minute. It is considered to be a form of load management.</p>
http://stackoverflow.com/questions/375317/time-of-day-best-code-is-written/375359#3753590Answer by Jarred McCaffrey for Time of day best code is writtenJarred McCaffrey2008-12-17T17:36:53Z2008-12-17T17:36:53Z<p>I would hypothesize that that last minute is statistically the most productive timeframe, with productivity generally increasing as one approaches the eleventh hour, shortly followed by peak productivity during the last minute.</p>
<p>That said, the recommended best practice is to actually produce as much as possible during the comparatively underutilized run-up to the aforementioned eleventh hour and last minute. It is considered to be a form of load management.</p>
http://stackoverflow.com/questions/370189/eclipse-keyboard-shortcuts-broken-in-osx-10-5-6/375285#3752850Answer by Jarred McCaffrey for Eclipse keyboard shortcuts broken in OSX 10.5.6Jarred McCaffrey2008-12-17T17:12:54Z2008-12-17T17:12:54Z<p>There is a witty comment to be made here about discrimination against Dvorak typists and the Dvorak layout being left out of someone's unit test--unfortunately I won't be the one to craft such a witty statement to its full potential.</p>
<p>I too can report this issue after upgrading from OS X 10.5.5 to 10.5.6.</p>
http://stackoverflow.com/questions/366588/what-does-a-good-programmers-code-look-like/366591#3665919Answer by Jarred McCaffrey for What does a good programmer's code look like?Jarred McCaffrey2008-12-14T14:39:06Z2008-12-14T15:20:34Z<p>Code is poetry.</p>
<p>Start from this point of logic and you can derive many of the desirable qualities of code. Most importantly, observe that code is read far more than it is written, hence write code for the reader. Rewrite, rename, edit, and refactor for the reader.</p>
<p>A follow on corollary:</p>
<p>The reader will be you at time n from the code creation date. The payoff of writing code for the reader is a monotonically increasing function of n. A reader looking at your code for the first time is indicated by n == infinity.</p>
<p>In other words, the larger the gap of time from when you wrote the code to when you revisit the code, the more you will appreciate your efforts to write for the reader. Also, anyone you hand your code off to will gain great benefit from code written with the reader as the foremost consideration.</p>
<p>A second corollary:</p>
<p>Code written without consideration for the reader can be unnecessarily difficult to understand or use. When the consideration for the reader drops below a certain threshold, the reader derives less value from the code than the value gained by rewriting the code. When this occurs the previous code is thrown away and, tragically, much work is repeated during the rewrite.</p>
<p>A third corollary:</p>
<p>Corollary two has been known to repeat itself multiple times in a vicious cycle of poorly documented code followed by forced rewrites.</p>
http://stackoverflow.com/questions/418160/benefits-of-programming-doing-versus-reading-blogs-thinking/418258#418258Comment by Jarred McCaffrey on Benefits of programming (doing) versus reading blogs (thinking?)Jarred McCaffrey2009-01-07T13:50:19Z2009-01-07T13:50:19ZPants--sage advice.http://stackoverflow.com/questions/397034/confusing-list-in-python-what-is-itComment by Jarred McCaffrey on Confusing [...] List in Python: What is it?Jarred McCaffrey2008-12-29T02:57:59Z2008-12-29T02:57:59ZYou'll want to edit this. I think the core of your question revolves around the Ellipsis object, which is hard to know about if you haven't seen it before (and tricky to find the docs even when you do know about it).http://stackoverflow.com/questions/390289/what-types-of-coding-anti-patterns-do-you-always-refactor-when-you-cross-them/390382#390382Comment by Jarred McCaffrey on What types of coding anti-patterns do you always refactor when you cross them? Jarred McCaffrey2008-12-24T14:33:59Z2008-12-24T14:33:59ZYou are right, Robert. Ideally a unit test would be a detailed contract that code must live up to, but in reality unit tests may not cover the intended design of the code.http://stackoverflow.com/questions/349931/how-do-i-print-one-bitComment by Jarred McCaffrey on How do I print one bit?Jarred McCaffrey2008-12-18T15:35:36Z2008-12-18T15:35:36ZThis is a good question that needs rephrasing, but I don't have edit privileges yet....http://stackoverflow.com/questions/378060/should-we-solve-project-euler-problems-in-soComment by Jarred McCaffrey on should we solve project Euler problems in SO?Jarred McCaffrey2008-12-18T15:31:14Z2008-12-18T15:31:14ZCould this be rephrased as a question and opened for discussion? Clearly there's a bit of dialogue right here around the "question".http://stackoverflow.com/questions/370189/eclipse-keyboard-shortcuts-broken-in-osx-10-5-6/372232#372232Comment by Jarred McCaffrey on Eclipse keyboard shortcuts broken in OSX 10.5.6Jarred McCaffrey2008-12-17T20:38:41Z2008-12-17T20:38:41ZHmmm... adding 'option' doesn't work for me. For my setup this gives characters from the expanded character set such as the British pound symbol, copyright symbol, trademark symbol, accented characters, etc.http://stackoverflow.com/questions/370189/eclipse-keyboard-shortcuts-broken-in-osx-10-5-6Comment by Jarred McCaffrey on Eclipse keyboard shortcuts broken in OSX 10.5.6Jarred McCaffrey2008-12-17T17:08:45Z2008-12-17T17:08:45ZIn this case it would be that your OS needs 'not' updating, since the problem did not exist in 10.5.5.http://stackoverflow.com/questions/373262/how-do-you-implement-xor-usingComment by Jarred McCaffrey on How do you implement XOR using +-*/ ?Jarred McCaffrey2008-12-17T01:03:51Z2008-12-17T01:03:51ZSounds like a homework problem. I've always considered it a best practice to cite any external references, but it would be pretty brazen to cite your own question on stackoverflow. What an ethical dilemma.