User Aaron Maenpaa - Stack Overflow most recent 30 from stackoverflow.com 2009-11-25T16:02:53Z http://stackoverflow.com/feeds/user/2603 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/38239/practices-for-programming-in-a-scientific-environment/38284#38284 2 Answer by Aaron Maenpaa for Practices for programming in a scientific environment? Aaron Maenpaa 2008-09-01T18:53:06Z 2009-10-18T11:28:33Z <blockquote> <p>What languages/environments have you used for developing scientific software, esp. data analysis? What libraries? (E.g., what do you use for plotting?)</p> </blockquote> <p>Python, <a href="http://en.wikipedia.org/wiki/NumPy" rel="nofollow">NumPy</a> and pylab (plotting).</p> <blockquote> <p>Was there any training for people without any significant background in programming?</p> </blockquote> <p>No, but I was working in a multimedia research lab, so almost everybody had a computer science background.</p> <blockquote> <p>Did you have anything like version control, bug tracking?</p> </blockquote> <p>Yes, <a href="http://en.wikipedia.org/wiki/Subversion%5F%28software%29" rel="nofollow">Subversion</a> for version control, <a href="http://en.wikipedia.org/wiki/Trac" rel="nofollow">Trac</a> for bug tracing and wiki. You can get free bug tracker/version control hosting from <a href="http://www.assembla.com/" rel="nofollow">http://www.assembla.com/</a> if their <a href="http://en.wikipedia.org/wiki/Terms%5Fof%5Fservice" rel="nofollow">TOS</a> fits your project.</p> <blockquote> <p>How would you go about trying to create a decent environment for programming, without getting too much in the way of the individual scientists (esp. physicists are stubborn people!).</p> </blockquote> <p>Make sure the infrastructure is set up and well maintained and try to sell the benefits of source control.</p> http://stackoverflow.com/questions/34968/cheapest-ssl-certificates 21 Cheapest SSL certificates Aaron Maenpaa 2008-08-29T18:35:42Z 2009-10-13T10:50:17Z <p>I'm looking for cheap SSL certs for running a personal website over https without triggering Firefox's "you may be facing a man-in-the-middle-attack" response that self signed certs provoke. Nothing particularly fancy, no EV, etc. Any recommendations/where do you get your certificates from?</p> http://stackoverflow.com/questions/478570/recursion-or-iteration/478578#478578 9 Answer by Aaron Maenpaa for Recursion or iteration? Aaron Maenpaa 2009-01-26T00:13:10Z 2009-10-12T09:41:12Z <blockquote> <p>Are they more expensive than iterations?</p> </blockquote> <p>Yes they are. Recursion requires creating a new stack frame along with a call and return whereas iteration generally only requires a compare and branch making it substantially faster; however, compilers can perform tail-call optimization on certain recursive calls (namely tail calls) which allow them to reuse the stack frame making the recursive call much less expensive and effectively turning them into iteration. Scheme actually requires that scheme compilers implement tail-call optimization.</p> http://stackoverflow.com/questions/44533/your-favorite-code-kata 18 Your Favorite Code Kata Aaron Maenpaa 2008-09-04T19:17:51Z 2009-10-08T16:07:17Z <p>What are your favorite code <a href="http://codekata.pragprog.com/" rel="nofollow">kata</a>?</p> <ul> <li>What do you do to practice software development? </li> <li>Where do you go to find new small projects to practice?</li> </ul> <p>We already know <a href="http://www.codinghorror.com/blog/archives/001138.html" rel="nofollow">Jeff's answers</a>.</p> http://stackoverflow.com/questions/1463029/linq-submittingchanges-after-assigning-new-object/1463041#1463041 0 Answer by Aaron Maenpaa for Linq SubmittingChanges after assigning new object Aaron Maenpaa 2009-09-22T22:46:04Z 2009-09-22T22:46:04Z <p>Because you are not changing the object, you are assigning a new object to the variable.</p> <p>You need to assign to fields one by one, (or InsertOnSubmit... but that will create a new object in the database and it does not sound like that is what you want to do).</p> <p>This approach will sort of work if you we assigning the newly created object to a field of an object that LINQ to SQL knows about, but once again, that would be creating a new object rather than changing the one that field previously pointed to (which could result in a bunch of garbage rows in your database if you never get rid of them).</p> http://stackoverflow.com/questions/104983/what-is-thread-local-storage-in-python-and-why-do-i-need-it/106560#106560 3 Answer by Aaron Maenpaa for What is "thread local storage" in Python, and why do I need it? Aaron Maenpaa 2008-09-20T00:31:24Z 2009-09-11T01:17:12Z <p>You can create thread local storage using <code>threading.local()</code>.</p> <pre><code>&gt;&gt;&gt; tls = threading.local() &gt;&gt;&gt; tls.x = 4 &gt;&gt;&gt; tls.x 4 </code></pre> <p>Data stored to the tls will be unique to each thread which will help ensure that unintentional sharing does not occur.</p> http://stackoverflow.com/questions/49716/what-is-static-code-analysis/49731#49731 7 Answer by Aaron Maenpaa for What is static code analysis? Aaron Maenpaa 2008-09-08T13:42:23Z 2009-09-01T16:53:58Z <blockquote> <p>What is static analysis?</p> </blockquote> <p>Analyzing code without executing it. Generally used to find bugs or ensure conformance to coding guidelines. The classic example is a compiler which finds lexical, syntactic and even some semantic mistakes.</p> <blockquote> <p>When should you use it, and when shouldn't it be used?</p> </blockquote> <p>Static analysis tools should be used when they help maintain code quality. If they're used, they should be integrated into the build process, otherwise they will be ignored.</p> <blockquote> <p>What are potential gotchas regarding proper and improper usage/application of static analysis?</p> </blockquote> <p>Two common pathologies occur when using static analysis tools:</p> <ol> <li><p>The tools produces spurious warnings/errors that the developers cannot silence. Eventually, most of the warnings are spurious and the developers stop paying attention to the output. This is why many teams require that code compile cleanly. If developers feel comfortable ignoring compiler warnings, the compile phase will eventually be filled with warning nobody ever pays attention to, even though they may be bugs.</p></li> <li><p>The tools take too long to run and developers never bother to run them.</p></li> </ol> <blockquote> <p>Any languages that don't have a good static analysis tool, and what do you do when you don't have an option for automated analysis?</p> </blockquote> <p>For a number of reasons, many of the dynamic languages (ruby, python, perl) don't have static analysis tools that are as strong as those available in static languages. The standard method of finding bugs and making sure the code is working in dynamic languages are unit tests which help build confidence that the code actually works (hat-tip: Chris Conway).</p> http://stackoverflow.com/questions/1327362/code-refactoring-with-python-decorators/1327564#1327564 2 Answer by Aaron Maenpaa for Code refactoring with python decorators? Aaron Maenpaa 2009-08-25T11:09:06Z 2009-08-25T11:09:06Z <p>What you are describing is a situation where you have some boilerplate, some behaviour, followed by some boiler plate. Essentially a situation where you could use a <a href="http://en.wikipedia.org/wiki/Higher-order%5Ffunction" rel="nofollow">Higher Order Function</a> (like map, reduce or filter).</p> <p>You could do what Ned suggests (though, I'd use <a href="http://docs.python.org/library/functools.html#functools.partial" rel="nofollow">functools.partial</a> rather than defining fooA/fooB longhand):</p> <pre><code>import functools ... fooA = functools.partial(call_one, _fooA) fooB = functools.partial(call_one, _fooB) </code></pre> <p>... but that effectively gets you back to the same place as with your decorator, introducing some clutter into the namespace along the way.</p> <p>You could rewrite your decorator to allow functions that only take one parameter, but return functions that take two:</p> <pre><code>def refactorMe(func): def wrapper(parm1, parm2): if parm1: code_chunk_1 func(parm1) if parm2[-1]: code_chunk_2 return wrapper </code></pre> <p>Getting rid of the star magic is an improvement as this decorator is not general to all functions so we should be explicit about it. I like the fact that we change the number of parameters less as anyone looking at the code could easily be confused by the fact that when we call the function we are adding an extra parameter. Furthermore it just feels like decorators that change the signature of the function they decorate <em>should</em> be bad form.</p> <p>In summary:</p> <p>Decorators are higher order functions, and templating behaviour is <em>precisely</em> what they're for.</p> <p>I would embrace the fact that this code is specific to your fooXXX functions, by making the decorator internal and having it take precisely the number of arguments needed (because foo(*args, **kwargs) signatures makes introspection a pain).</p> <pre><code>def _refactorMe(func): @functools.wraps(func) #the wraps decorator propagates name/docsting def wrapper(parm1, parm2): if parm1: code_chunk_1 func(parm1, parm2) if parm2: code_chunk_2 return wrapper </code></pre> <p>I'd leave the calls taking two parameters, even though one is unused just so that the decorator doesn't change the signature. This isn't strictly necessary as if you document the functions as they look after decoration and you are restricting the use of the decorator to this small set of functions then the fact that the signature changes shouldn't be that big a deal.</p> <pre><code>@_refactorMe def fooB(param1, param2): fooB_code #uses only param1 @_refactorMe def fooB(param1, param2): fooB_code #uses only param1 </code></pre> http://stackoverflow.com/questions/1327369/python-extract-contents-of-regex/1327394#1327394 2 Answer by Aaron Maenpaa for python extract contents of regex Aaron Maenpaa 2009-08-25T10:30:02Z 2009-08-25T10:30:02Z <p>Try using capturing groups:</p> <pre><code>title = re.search('&lt;title&gt;(.*)&lt;/title&gt;', html, re.IGNORECASE).group(1) </code></pre> http://stackoverflow.com/questions/1314078/sms-how-to-avoid-bankruptcy/1322227#1322227 1 Answer by Aaron Maenpaa for SMS - How to avoid Bankruptcy? Aaron Maenpaa 2009-08-24T12:54:11Z 2009-08-24T12:54:11Z <p>You could do what Twitter does, which is have the user text you the token (rather than you texting it to them). </p> <p>This will require you to find a provider that let's you receive texts for free (or close to it), but that might be easier.</p> http://stackoverflow.com/questions/1149759/what-does-class-libraries-on-the-classpath-mean/1149786#1149786 2 Answer by Aaron Maenpaa for what does "class libraries on the classpath" mean? Aaron Maenpaa 2009-07-19T12:18:34Z 2009-07-19T12:18:34Z <p>The <code>classpath</code> is a list of locations where the JVM should look to find classes. By default, this has things like <code>rt.jar</code> and <code>vm.jar</code> on it which contain the classes like <code>java.lang.String</code>. You can append directories and jars to the classpath to allow the VM to find classes beyond those installed by default.</p> <p>A <code>class library</code> is a collection of classes packaged to be used by applications. For all practical purposes, it is a jar with useful classes in it like <code>junit.jar</code>.</p> <p>What the message is saying is: If you want to use a library class (like something from log4j), it needs to be on the classpath, in WEB-INF/classes or WEB-INF/lib.</p> http://stackoverflow.com/questions/1148902/version-control-taking-on-a-project-without-any/1148936#1148936 2 Answer by Aaron Maenpaa for Version Control: Taking on a project without any Aaron Maenpaa 2009-07-19T00:13:24Z 2009-07-19T00:13:24Z <p>Step 1: Download <a href="http://mercurial.selenic.com/wiki/" rel="nofollow">Mercurial</a>.</p> <p>Step 2: In your favorite command line, go to the root of your source directory and type <code>hg init</code>.</p> <p>Step 3: Do a <code>make clean</code> or equivalent (ie. all you want is source, no generated files).</p> <p>Step 4: Type <code>hg addremove</code>.</p> <p>Step 5: Type <code>hg commit</code>.</p> <p>From this point on you can: </p> <ul> <li>Examine the changes between your most recent commit and now: <code>hg diff</code> or <code>hg status</code>.</li> <li>Make checkpoints in your code: <code>hg commit</code>.</li> <li>Return to previous checkpoints: <code>hg update -C -r 0</code></li> </ul> <p>Congratulations, you are now using version control: It's really not that hard, and it's very, very useful (if for no other reason than you can look at the changes you've made to see if they make sense).</p> <p>At some point you'll probably want to learn about branching (if only so that you have a backup copy of your repository on another machine) at which point you can turn to the documentation or the <a href="http://hgbook.red-bean.com/" rel="nofollow">book</a>.</p> http://stackoverflow.com/questions/1147982/best-way-to-move-files-from-dev-to-live-site-django/1148009#1148009 6 Answer by Aaron Maenpaa for Best way to move files from Dev to Live site (django) Aaron Maenpaa 2009-07-18T16:56:56Z 2009-07-18T16:56:56Z <p>I generally run directly from an svn checkout. Log in to the production server, update to the revision or tag that's been deemed worthy, restart the server and you're good to go.</p> <p>This has the advantage that it forces you to make sure that <em>everything</em> is kept under version control because the production site comes straight out of the repository. You could obviously automate the deployment using something like <a href="http://www.nongnu.org/fab/" rel="nofollow">Fabric</a> if you wanted to.</p> http://stackoverflow.com/questions/1147408/use-company-laptop-for-personal-project/1147412#1147412 7 Answer by Aaron Maenpaa for Use company laptop for personal project Aaron Maenpaa 2009-07-18T12:21:57Z 2009-07-18T12:35:33Z <p>It all depends on the employment contract you signed, but: "Everything you develop using company resources is ours." is a pretty common clause. Such a clause would mean that anything developed using your company's laptop and your company's Visual Studio license would be owned by your company which means that if you want ownership of your personal project you would need to develop it with your stuff, on your time. </p> <p>There's a better discussion of this kind of thing at the end of <a href="http://blog.stackoverflow.com/2009/07/podcast-60/" rel="nofollow">podcast 60</a>.</p> <p>So, read your employment agreement: Make sure your personal project does not fall within the bounds of the stuff your employer owns. The last thing you want is your employer to validly assert ownership after you have customers or have submitted large contributions to Ruby on Rails (or something) and you have to rip out everything they have a claim to.</p> http://stackoverflow.com/questions/1145352/need-help-removing-strange-characters-from-string/1145407#1145407 4 Answer by Aaron Maenpaa for Need help removing strange characters from string Aaron Maenpaa 2009-07-17T20:04:34Z 2009-07-18T11:38:36Z <p>The odd characters are there because cryptographic signatures produce bytes rather than strings. Consequently if you want a printable representation you should <a href="http://en.wikipedia.org/wiki/Base64" rel="nofollow">Base64 encode it</a> (<a href="http://iharder.sourceforge.net/current/java/base64/" rel="nofollow">here's a public domain implementation for Java</a>). </p> <p>Stripping the non-printing characters from a cryptographic signature will render it useless as you will be unable to use it for verification.</p> <p>Update:</p> <blockquote> <p>[B@15356d5</p> </blockquote> <p>This is the result of toString called on a byte array. "[" means array, "B" means byte and "15356d5" is the address of the array. You should be passing the array you get out of decode to <a href="http://java.sun.com/j2se/1.4.2/docs/api/java/security/Signature.html#verify%28byte%5B%5D)" rel="nofollow">Signature.verify</a>.</p> <p>Something like:</p> <pre><code>Signature sig = new Signature("dsa"); sig.initVerify(key); sig.verify(Base64.decode(base64)); // &lt;-- bytes go here </code></pre> http://stackoverflow.com/questions/1143012/what-algorithm-can-i-use-to-find-the-shortest-path-between-specified-node-types-i/1143103#1143103 3 Answer by Aaron Maenpaa for What algorithm can I use to find the shortest path between specified node types in a graph? Aaron Maenpaa 2009-07-17T12:58:32Z 2009-07-17T12:58:32Z <p>As Jan mentioned, you just need a normal boring shortest path algorithm (like Dijkstra's or <a href="http://en.wikipedia.org/wiki/Floyd%E2%80%93Warshall%5Falgorithm" rel="nofollow">Floyd's</a> algorithm); however, you need to transform your input graph so that the output path will respect your path constraint. </p> <p>Given a path constraint of: A - B - A</p> <p>Create a new graph <code>G</code> and insert all of the vertexes from <code>A</code> into <code>G</code> with new labels like a_01. Then insert all the vertexes from <code>B</code> into <code>G</code> and connect the <code>A</code> vertexes with the <code>B</code> vertexes (edges should be directed towards the newly inserted nodes) copying the costs from the original graph. You then repeat this step with <code>A</code> (and any other path components) connecting the newly inserted vertexes to those in <code>B</code>. Thus, you create a graph where only the paths that exist satisfy the path constraint. You can then use normal shortest path algorithms.</p> <p>The key insight is that when you revisit a class you are actually visiting a distinct set of nodes and that you only want edges that connect adjacent classes of nodes.</p> http://stackoverflow.com/questions/49906/best-tools-for-code-reviews/1140851#1140851 1 Answer by Aaron Maenpaa for Best tools for code reviews Aaron Maenpaa 2009-07-16T23:42:09Z 2009-07-16T23:42:09Z <p>You could checkout <a href="http://code.google.com/p/rietveld/" rel="nofollow">Reitveld</a> which was developed by Guido van Rossum as a substantial example application for Google app engine. There's even and <a href="http://codereview.appspot.com/" rel="nofollow">instance running on GAE</a>.</p> http://stackoverflow.com/questions/1120542/what-is-the-best-plotting-library-for-python/1122765#1122765 2 Answer by Aaron Maenpaa for What is the best plotting library for Python? Aaron Maenpaa 2009-07-13T23:59:43Z 2009-07-13T23:59:43Z <p><a href="https://launchpad.net/cairoplot" rel="nofollow">CairoPlot</a> produces very pretty plots (it uses gradients and pleasing colours by default), but it's not a full featured as matplotlib. So if you're looking for features, matplotlib is probably the way to go, but if you're looking for pretty charts (for UIs, etc.), I'd take a look at CairoPlot as see if it has what you need.</p> http://stackoverflow.com/questions/1118835/which-are-good-python-django-hosting-solutions/1118883#1118883 8 Answer by Aaron Maenpaa for Which are good Python - Django hosting solutions? Aaron Maenpaa 2009-07-13T11:10:52Z 2009-07-13T11:10:52Z <p>I've been using <a href="http://www.webfaction.com/" rel="nofollow">webfaction</a> for close to a year and have been really happy with it.</p> http://stackoverflow.com/questions/1097870/handling-close-to-impossible-collisions-on-should-be-unique-values/1100103#1100103 2 Answer by Aaron Maenpaa for Handling close-to-impossible collisions on should-be-unique values Aaron Maenpaa 2009-07-08T19:32:40Z 2009-07-08T19:32:40Z <p>Given a good 128 bit hash, the probably of colliding with a specific hash value given a random input is:</p> <p><code>1 / 2 ** 128</code> which is approximately equal to <code>3 * 10 ** -39</code>. </p> <p>The probability of seeing no collisions (<code>p</code>) given <code>n</code> samples can be computed using the logic used to explain the <a href="http://en.wikipedia.org/wiki/Birthday%5Fproblem" rel="nofollow">birthday problem</a>.</p> <pre><code>p = (2 ** 128)! / (2 ** (128 * n) * (2 ** 128 - n)!) </code></pre> <p>where <code>!</code>denotes the factorial function. We can then plot the probability of no collisions as the number of samples increases:</p> <p><img src="http://img21.imageshack.us/img21/9186/sha1collision.png" alt="Probability of a random SHA-1 collision as the number of samples increases." /></p> <p>Between <code>10**17</code> and <code>10**18</code> hashes we begin to see non-trivial possibilities of collision from 0.001% to 0.14% and finally 13% with <code>10**19</code> hashes. So in a system with a million, billion, records counting on uniqueness is probably unwise (and such systems are conceivable), but in the vast majority of systems the probability of a collision is so small that you can rely on the uniqueness of your hashes for all practical purposes.</p> <p>Now, theory aside, it is far more likely that collisions could be introduced into your system either through bugs or someone attacking your system and so onebyone's answer provides good reasons to check for collisions even though the probability of an accidental collision are vanishingly small (that is to say the probability of bugs or malice is much higher than an accidental collision).</p> http://stackoverflow.com/questions/185697/the-most-efficient-way-to-find-top-k-frequent-words-in-a-big-word-sequence/185705#185705 4 Answer by Aaron Maenpaa for The Most Efficient Way To Find Top K Frequent Words In A Big Word Sequence Aaron Maenpaa 2008-10-09T02:26:35Z 2009-07-07T11:56:38Z <p>If your "big word list" is big enough, you can simply sample and get estimates. Otherwise, I like hash aggregation.</p> <p><em>Edit</em>:</p> <p>By sample I mean choose some subset of pages and calculate the most frequent word in those pages. Provided you select the pages in a reasonable way and select a statistically significant sample, your estimates of the most frequent words should be reasonable.</p> <p>This approach is really only reasonable if you have so much data that processing it all is just kind of silly. If you only have a few megs, you should be able to tear through the data and calculate an exact answer without breaking a sweat rather than bothering to calculate an estimate.</p> http://stackoverflow.com/questions/1089307/financial-charts-graphs-in-ruby-or-python/1089512#1089512 8 Answer by Aaron Maenpaa for Financial Charts / Graphs in Ruby or Python Aaron Maenpaa 2009-07-06T22:32:49Z 2009-07-07T00:01:19Z <p>You can use <a href="http://matplotlib.sourceforge.net/" rel="nofollow">matplotlib</a> and the the optional <code>bottom</code> parameter of <a href="http://matplotlib.sourceforge.net/api/pyplot%5Fapi.html#matplotlib.pyplot.bar" rel="nofollow">matplotlib.pyplot.bar</a>. You can then use line <code>plot</code> to indicate the opening and closing prices:</p> <p>For example:</p> <pre><code>#!/usr/bin/env python import numpy as np import matplotlib.pyplot as plt from matplotlib import lines import random deltas = [4, 6, 13, 18, 15, 14, 10, 13, 9, 6, 15, 9, 6, 1, 1, 2, 4, 4, 4, 4, 10, 11, 16, 17, 12, 10, 12, 15, 17, 16, 11, 10, 9, 9, 7, 10, 7, 16, 8, 12, 10, 14, 10, 15, 15, 16, 12, 8, 15, 16] bases = [46, 49, 45, 45, 44, 49, 51, 52, 56, 58, 53, 57, 62, 63, 68, 66, 65, 66, 63, 63, 62, 61, 61, 57, 61, 64, 63, 58, 56, 56, 56, 60, 59, 54, 57, 54, 54, 50, 53, 51, 48, 43, 42, 38, 37, 39, 44, 49, 47, 43] def rand_pt(bases, deltas): return [random.randint(base, base + delta) for base, delta in zip(bases, deltas)] # randomly assign opening and closing prices openings = rand_pt(bases, deltas) closings = rand_pt(bases, deltas) # First we draw the bars which show the high and low prices # bottom holds the low price while deltas holds the difference # between high and low. width = 0 ax = plt.axes() rects1 = ax.bar(np.arange(50), deltas, width, color='r', bottom=bases) # Now draw the ticks indicating the opening and closing price for opening, closing, bar in zip(openings, closings, rects1): x, w = bar.get_x(), 0.2 args = { } ax.plot((x - w, x), (opening, opening), **args) ax.plot((x, x + w), (closing, closing), **args) plt.show() </code></pre> <p>creates a plot like this:</p> <p><img src="http://static.crimzon.ath.cx/open-close.png" alt="http://static.crimzon.ath.cx/open-close.png" /></p> <p>Obviously, you'd want to package this up in a function that drew the plot using <code>(open, close, min, max)</code> tuples (and you probably wouldn't want to randomly assign your opening and closing prices).</p> http://stackoverflow.com/questions/1063876/what-makes-javascript-dangerous-what-uses-that-javascript-can-be-used-as/1063904#1063904 5 Answer by Aaron Maenpaa for What makes javascript dangerous? What uses that javascript can be used as? Aaron Maenpaa 2009-06-30T14:10:08Z 2009-06-30T14:20:03Z <p><a href="http://javascript.crockford.com/" rel="nofollow">Douglas Crockford</a> has a series of lectures that point you at the good parts of JavaScript and what to stay away from:</p> <ul> <li><a href="http://www.youtube.com/watch?v=hQVTIJBZook" rel="nofollow">JavaScript: the Good Parts</a></li> <li><a href="http://www.yuiblog.com/blog/2007/01/24/video-crockford-tjpl/" rel="nofollow">The JavaScript Programming Language</a></li> </ul> <p>So some things that make JavaScript a good language include:</p> <ul> <li>It's strongly influenced by Lisp and has closures and other first class function goodness.</li> <li>It has literal object and list notation, making it very easy to specify data structures declaratively. </li> <li>It is available in basically every browser without any kind of plug-in.</li> <li>Duck typing.</li> <li>Prototypical inheritance.</li> </ul> <p>Some of the bad things include:</p> <ul> <li>Optional semi-colons for statement termination which leads to hard to find bugs.</li> <li>Automatic type coercion that leads to hard to find bugs.</li> <li>A single global namespace shared by all of the scripts running for a page which can make reuse and maintenance a nightmare.</li> <li>Automatically creating/effecting names in the singular global namespace when local variables are improperly declared.</li> <li>A screwy way to use prototypical inheritance which can lead to weird bugs when you forget to use <code>new</code>.</li> <li>Incompatibilities among the leading implementations.</li> </ul> <p>... but there <a href="http://www.yuiblog.com/blog/2007/06/12/module-pattern/" rel="nofollow">patterns</a> that can help with the namespace issues, there are <a href="http://www.jslint.com/" rel="nofollow">compilers</a> that will help you avoid some of the bug encouraging stuff and <a href="http://jquery.com/" rel="nofollow">frameworks</a> that will help you avoid the incompatible stuff. </p> <p><strong>With care, you can stick to the parts of JavaScript that make it a powerful and pleasurable language.</strong></p> http://stackoverflow.com/questions/1060564/unable-to-keep-my-git-clean-and-public-at-home/1060578#1060578 1 Answer by Aaron Maenpaa for Unable to keep my Git clean and public at Home Aaron Maenpaa 2009-06-29T21:11:24Z 2009-06-29T21:11:24Z <p>You want to add them to your <a href="http://www.kernel.org/pub/software/scm/git/docs/gitignore.html" rel="nofollow">gitignore</a> file.</p> <p>For example, you could create a file named <code>.gitignore</code> in your home directory and list the files that you don't want tracked (like: <code>.bashrc</code>).</p> http://stackoverflow.com/questions/1046502/markdown-net-incorrectly-does-not-escape-html-tags/1046526#1046526 1 Answer by Aaron Maenpaa for Markdown.NET incorrectly does not escape HTML-Tags Aaron Maenpaa 2009-06-25T22:20:34Z 2009-06-25T22:20:34Z <p>Markdown <a href="http://daringfireball.net/projects/markdown/syntax#html" rel="nofollow">explicitly allows HTML markup</a> so: "... incorrectly does not escape ..." is not quite right.</p> <p>Which means that you're on the hook for sanitizing it yourself. You could even use <a href="http://refactormycode.com/codes/333-sanitize-html" rel="nofollow">Stack Overflow's HTML sanitizer</a> if you wanted to.</p> http://stackoverflow.com/questions/1038824/python-strip-a-string/1038873#1038873 0 Answer by Aaron Maenpaa for Python strip a string.. Aaron Maenpaa 2009-06-24T14:53:03Z 2009-06-24T14:53:03Z <p>This is a perfect use for regular expressions:</p> <pre><code>&gt;&gt;&gt; import re &gt;&gt;&gt; re.match(r"(.*)\.com", "hello.com").group(1) 'hello' </code></pre> http://stackoverflow.com/questions/1038007/why-should-wait-always-be-called-inside-a-loop/1038033#1038033 3 Answer by Aaron Maenpaa for Why should wait() always be called inside a loop Aaron Maenpaa 2009-06-24T12:23:01Z 2009-06-24T12:23:01Z <p>Because wait and notify are used to implement <a href="http://en.wikipedia.org/wiki/Monitor%5F%28synchronization)#Blocking%5Fcondition%5Fvariables" rel="nofollow">condition variables</a> and so you need to check whether the specific predicate you're waiting on is true before continuing.</p> http://stackoverflow.com/questions/1018079/save-me-from-my-svn-self/1018222#1018222 -3 Answer by Aaron Maenpaa for Save me from my SVN self Aaron Maenpaa 2009-06-19T14:24:04Z 2009-06-19T14:24:04Z <p>Switch to <a href="http://www.selenic.com/mercurial/wiki/" rel="nofollow">Mercurial</a> (... or git or bazaar or whatever. I'm actually kind of serious).</p> <pre><code>&gt; hg addremove #adds files you added, removes the ones you've deleted. </code></pre> <p>... and .hgignore is so much easier to manage than a bunch of frigging svn ignore properties.</p> <p>SVN is not the only free version control system out there, you might want to consider switching. (<a href="http://openjdk.java.net/" rel="nofollow">All</a> <a href="http://www.python.org/" rel="nofollow">the</a> <a href="http://www.mozilla.org/" rel="nofollow">cool</a> <a href="http://www.gnome.org/" rel="nofollow">kids</a> <a href="http://rubyonrails.org/" rel="nofollow">are</a> <a href="http://www.ubuntu.com/" rel="nofollow">doing</a> <a href="http://kernel.org/" rel="nofollow">it</a>.)</p> http://stackoverflow.com/questions/1008850/is-there-any-difference-between-these-two-statements/1008864#1008864 3 Answer by Aaron Maenpaa for Is there any difference between these two statements? Aaron Maenpaa 2009-06-17T18:40:59Z 2009-06-17T18:40:59Z <p>Yes. The first declares a variable of the primitive type <code>float</code> and initializes it to 1.2.</p> <p>While the second declares a variable of the reference type <code>Float</code>, creates an object of type <code>Float</code> and then assigns a reference to the variable.</p> http://stackoverflow.com/questions/1008189/programmers-notepad/1008201#1008201 3 Answer by Aaron Maenpaa for Programmer's notepad Aaron Maenpaa 2009-06-17T16:32:25Z 2009-06-17T16:32:25Z <p><a href="http://www.vim.org/" rel="nofollow">gvim</a></p> http://stackoverflow.com/questions/1442226/how-to-change-behavior-of-a-hrefsomewhere-html-idlink-with-jquery/1442239#1442239 Comment by Aaron Maenpaa on How to change behavior of <a href="somewhere.html" id="link"> with jQuery? Aaron Maenpaa 2009-09-18T01:50:18Z 2009-09-18T01:50:18Z OnClick is a function, no point in wrapping it in a thunk. http://stackoverflow.com/questions/1383752/is-it-possible-to-have-a-data-structure-that-is-able-to-store-different-types/1383759#1383759 Comment by Aaron Maenpaa on Is it possible to have a data structure that is able to store different types? Aaron Maenpaa 2009-09-05T17:25:24Z 2009-09-05T17:25:24Z The compiler complains if you use the bare type and useing List&lt;Object&gt; keeps it happy. http://stackoverflow.com/questions/1327583/how-would-you-parse-the-integer-out-of-this-xml-response-in-obj-c Comment by Aaron Maenpaa on How would you parse the integer out of this XML response in Obj C? Aaron Maenpaa 2009-08-25T11:20:07Z 2009-08-25T11:20:07Z Yes you do. Treating XML as &quot;just a string&quot; is a sure way to introduce bugs, because in XML there are many ways to serialize semantically equivalent documents. If the producer of the document adds a namespace reference, as schema reference or even a content-encoding, the above method will break. I'd find a good XML library, select the node with XPath/XQuery and then parse the text content. http://stackoverflow.com/questions/1178488/on-the-complexity-of-current-java-applications Comment by Aaron Maenpaa on On the complexity of current java applications Aaron Maenpaa 2009-07-24T15:52:33Z 2009-07-24T15:52:33Z @pianoman Well nothing proves your mench like figuring out that the problem with your binary search is that you should have been shifting to the right instead of dividing by two (to protect from overflow). You just don't get that rush when you use code that's already been debugged ;) http://stackoverflow.com/questions/1177515/how-to-explain-differences-between-analog-and-digital-to-my-mother/1177541#1177541 Comment by Aaron Maenpaa on How to explain differences between analog and digital to my mother. Aaron Maenpaa 2009-07-24T14:09:03Z 2009-07-24T14:09:03Z @Adam ... and then confuse her again by pointing out that at an even lower level, the entire universe is digital (discrete). http://stackoverflow.com/questions/1156898/is-python-mainly-used-to-create-web-or-desktop-applications/1156914#1156914 Comment by Aaron Maenpaa on Is Python mainly used to create web or desktop applications? Aaron Maenpaa 2009-07-21T02:00:26Z 2009-07-21T02:00:26Z ... also a British comedy troupe! <a href="http://www.youtube.com/watch?v=4vuW6tQ0218" rel="nofollow">youtube.com/watch?v=4vuW6tQ0218</a> http://stackoverflow.com/questions/1156898/is-python-mainly-used-to-create-web-or-desktop-applications Comment by Aaron Maenpaa on Is Python mainly used to create web or desktop applications? Aaron Maenpaa 2009-07-21T01:57:42Z 2009-07-21T01:57:42Z @mhawke ... also a British comedy troupe from the 70s. Funny chaps. http://stackoverflow.com/questions/1148902/version-control-taking-on-a-project-without-any/1148936#1148936 Comment by Aaron Maenpaa on Version Control: Taking on a project without any Aaron Maenpaa 2009-07-19T11:36:20Z 2009-07-19T11:36:20Z I would argue that distributed version control systems are <i>strictly</i> better than centralized VCSes, and there are smart people that agree with me: <a href="http://www.youtube.com/watch?v=4XpnKHJAok8" rel="nofollow">youtube.com/watch?v=4XpnKHJAok8</a> . So why, with the tools available these days, would anyone recommend getting started with SVN rather than git/mercurial/bazaar I have no idea. And out of git/mercurial/bazaar they are all &quot;good enough&quot; so just pick one. The important thing about version control is that you just start using it (right now, don't right another line of code until you are!), not agonizing about which system is &quot;the best&quot;. http://stackoverflow.com/questions/1148631/looking-for-a-functional-language Comment by Aaron Maenpaa on Looking for a functional language Aaron Maenpaa 2009-07-18T21:52:12Z 2009-07-18T21:52:12Z What precisely does a VM have to do with GUIs. JVMs will run on machines that don't even have screens. http://stackoverflow.com/questions/1148636/c-c-an-int-value-that-isnt-a-number Comment by Aaron Maenpaa on C/C++ an int value that isn't a number ?! Aaron Maenpaa 2009-07-18T21:48:59Z 2009-07-18T21:48:59Z Put a break point on the line and inspect the value of nr. http://stackoverflow.com/questions/1147982/best-way-to-move-files-from-dev-to-live-site-django/1148009#1148009 Comment by Aaron Maenpaa on Best way to move files from Dev to Live site (django) Aaron Maenpaa 2009-07-18T17:45:36Z 2009-07-18T17:45:36Z I disagree. I find the fact that it's a live checkout is useful for audit purposes. You want to know what version is on the server: svn log. You want to know if anyone has changed anything: svn status or svn diff. You might be concerned about confidentiality issues of having the .svn directories lying around, but if someone can read them they can read all your code anyway. So I wouldn't delete them just for the sake of &quot;neatness&quot;. http://stackoverflow.com/questions/1147527/how-to-judge-the-commitment-of-a-person-before-its-too-late Comment by Aaron Maenpaa on How to judge the commitment of a person before its too late? Aaron Maenpaa 2009-07-18T13:37:13Z 2009-07-18T13:37:13Z Maybe the problem isn't with them, but with the 80 hour work weeks, hmm? http://stackoverflow.com/questions/1147408/use-company-laptop-for-personal-project/1147412#1147412 Comment by Aaron Maenpaa on Use company laptop for personal project Aaron Maenpaa 2009-07-18T13:29:18Z 2009-07-18T13:29:18Z @Sorskoot In the strictest legal sense yes, that could very much be the case. On the other hand, it is unlikely that any employer would attempt to assert such a claim. http://stackoverflow.com/questions/1097870/handling-close-to-impossible-collisions-on-should-be-unique-values/1097965#1097965 Comment by Aaron Maenpaa on Handling close-to-impossible collisions on should-be-unique values Aaron Maenpaa 2009-07-08T19:38:39Z 2009-07-08T19:38:39Z +1 In the vast majority of cases a collision on a 128 bit hash is far more likely to be a bug or attack than an accidental collision. http://stackoverflow.com/questions/1089307/financial-charts-graphs-in-ruby-or-python/1089512#1089512 Comment by Aaron Maenpaa on Financial Charts / Graphs in Ruby or Python Aaron Maenpaa 2009-07-07T00:03:08Z 2009-07-07T00:03:08Z @Eric I added code to draw the ticks for the opening and closing prices. I didn't see them when I looked at the chart on the wikipedia page (... and had no idea they were supposed to be there because I'm not a financial guy :).