User Antti Rasinen - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T15:52:02Zhttp://stackoverflow.com/feeds/user/8570http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/938041/how-to-fool-git-svn-to-recognize-merges-made-with-svn3How to fool git-svn to recognize merges made with svn?Antti Rasinen2009-06-02T05:44:38Z2009-07-22T18:42:55Z
<p>We have an SVN setup with stable trunk and unstable development branch. Dev work is (mostly) done on the branch and then merged to trunk before deployment. </p>
<p>I use git-svn as my SVN client. My merge process from unstable to trunk is as follows:</p>
<pre><code>git svn fetch
git co -b trunk svn/trunk
git merge --no-ff svn/unstable
git svn dcommit
</code></pre>
<p><code>svn/*</code> are the remote SVN branches. </p>
<p>This of course requires that no one commits anything to the trunk before I am done, but this is not a problem in practice.</p>
<p>The benefits of this process is that git now records the parents of the merge commit in my local repository. This does not benefit my coworkers, but it does allow git to compute the common ancestor when <em>I</em> do the merge. This is very desirable.</p>
<p>And here is the rub. When someone else makes a merge, git doesn't know about it. Here is an example:</p>
<pre><code> o-...-A---o---C--- unstable
/
X--...--B---o---o--- stable
</code></pre>
<p>The unstable branch was created at point X. At point A we decide to merge changes from the unstable branch into the stable branch at point B. The common ancestor is correctly X.</p>
<p>Because the merge is not recorded in the git history, the following merge at C again assumes X is the common ancestor. I would like it be A, as in the following graph:</p>
<pre><code> o-...-A---o---C--- unstable
/ \
X---...---B---o---o--- stable
</code></pre>
<p>It is not absolutely necessary to get a graph that looks exacly like the one pictured. Any graph, which would recognize A as the common ancestor is fine by me.</p>
<p>I have some options in mind, such as a proper use of git-filter-branch or a "fake" commit which is never dcommited to SVN. However none of my attempts have worked sufficiently so far.</p>
<p>I am grateful for any ideas you can present. The procedure does not have to be automatic. The merges are pretty rare and I can live with the pain of doing it "by hand".</p>
http://stackoverflow.com/questions/1007264/implementing-a-template-tag-within-a-generic-app-django/1011665#10116650Answer by Antti Rasinen for implementing a template tag within a generic app - djangoAntti Rasinen2009-06-18T09:18:06Z2009-06-18T09:18:06Z<p>The ContentTypeManager has somewhat solved your first problem for you. You can use the method <code>get_for_model</code>, which accepts both a class or an instance. Read more at <a href="http://docs.djangoproject.com/en/dev/ref/contrib/contenttypes/#the-contenttypemanager" rel="nofollow">the contettypes docs</a>.</p>
http://stackoverflow.com/questions/978943/where-does-the-widgets-foreign-html-file-reside-in-django-trunk/979422#9794220Answer by Antti Rasinen for Where does the widgets/foreign.html file reside in django trunk?Antti Rasinen2009-06-11T05:13:31Z2009-06-11T05:13:31Z<p>The newforms admin has changed things some what. If you haven't yet done so, I'd first recommend you to study what's new with newforms and especially newforms admin.</p>
<p>Here's the (wrapper for the) <a href="http://code.djangoproject.com/browser/django/trunk/django/contrib/admin/widgets.py" rel="nofollow">widget used for related fields</a>. If you want to look at customizing the widgets, check out <a href="http://jannisleidel.com/2008/11/autocomplete-form-widget-foreignkey-model-fields/" rel="nofollow">Jannis Leidel's blog posts</a>.</p>
http://stackoverflow.com/questions/973407/how-to-ensure-that-a-javascript-file-is-included-only-once-in-django/973865#9738652Answer by Antti Rasinen for How to ensure that a javascript file is included only once in DjangoAntti Rasinen2009-06-10T05:48:13Z2009-06-10T05:48:13Z<p>I'd mostly bite the bullet and load jQuery with every template. But if you really really really have to have this feature, then I'd recommend a custom template tag. <a href="http://docs.djangoproject.com/en/dev/howto/custom-template-tags/" rel="nofollow">Check out the docs</a>, especially the part about setting a variable in the context.</p>
http://stackoverflow.com/questions/964569/django-adding-a-property-to-the-user-class-changing-it-at-runtime-and-usermana/966806#9668062Answer by Antti Rasinen for Django : Adding a property to the User class. Changing it at runtime and UserManager.create_userAntti Rasinen2009-06-08T20:23:34Z2009-06-08T20:23:34Z<p>If Django 1.1 beta isn't too bleeding edge for you, try proxy models.</p>
http://stackoverflow.com/questions/946240/difference-between-admin-site-root-and-admin-site-urls/946322#9463220Answer by Antti Rasinen for Difference between admin.site.root and admin.site.urlsAntti Rasinen2009-06-03T18:17:02Z2009-06-03T18:17:02Z<p>The Django Book speaks of version 0.9.6. Since then the admin has been rewritten. In Django 1.0 the whole admin is served by a single view (<code>admin.site.root</code>) which parses the rest of the URL internally.</p>
<p>Compare the <a href="http://code.djangoproject.com/browser/django/tags/releases/0.96.3/django/contrib/admin" rel="nofollow">admin directory of 0.96.3</a> with the <a href="http://code.djangoproject.com/browser/django/tags/releases/1.0.2/django/contrib/admin" rel="nofollow" title="X">corresponding directory from 1.0.2</a>. There is no <code>urls.py</code> in the latter.</p>
http://stackoverflow.com/questions/935638/why-does-git-svn-dcommit-leave-duplicate-commits-in-my-git-repo-can-i-stop-it-do/936265#9362652Answer by Antti Rasinen for Why does git-svn dcommit leave duplicate commits in my git repo? Can I stop it doing that?Antti Rasinen2009-06-01T19:12:25Z2009-06-01T19:12:25Z<p>I don't think you're really missing anything. You might be doing some unnecessary work, though. In this case, you have two pointers to the "more work" commit, and you are asking git-svn to move one of them. The other one still stays where it is.</p>
<p>You don't really need the <code>master</code> branch. Git-svn doesn't care about what branch you are dcommiting. IIRC, it uses the first svn-remote it can find among the ancestors of the current commit. </p>
<p>I'll offer another version of the workflow:</p>
<pre><code>git checkout -b story-xyz remotes/trunk
git commit -a -m "work"
git commit -a -m "more work"
git svn fetch
git rebase remotes/trunk (with -i, perhaps)
git svn dcommit
</code></pre>
<p>This should give you a tree without the extra branch. You need to be careful with fast-forward merges, though.</p>
http://stackoverflow.com/questions/618960/python-metaclasses/914283#9142830Answer by Antti Rasinen for Python metaclassesAntti Rasinen2009-05-27T06:40:19Z2009-05-27T06:40:19Z<p>You can use the <code>type</code> callable as well.</p>
<pre><code>def hack(f, aClass):
newfunc = lambda self: f()
return type('MyClass', (aClass,), {'f': newfunc})
</code></pre>
<p>I find using <code>type</code> the easiest way to get into the metaclass world.</p>
http://stackoverflow.com/questions/912412/class-attributes-with-a-calculated-name/914245#9142452Answer by Antti Rasinen for Class attributes with a "calculated" nameAntti Rasinen2009-05-27T06:28:22Z2009-05-27T06:28:22Z<p>If your entire class is "calculated", then may I suggest the <code>type</code> callable. This is especially useful if your original container was a dict:</p>
<pre><code>d = dict(('member-%d' % k, k*100) for k in range(10))
C = type('C', (), d)
</code></pre>
<p>This would give you the same results as</p>
<pre><code>class C(object):
member-0 = 0
member-1 = 100
...
</code></pre>
<p>If your needs are really complex, consider metaclasses. (In fact, <code>type</code> <em>is</em> a metaclass =)</p>
http://stackoverflow.com/questions/142812/does-python-have-a-bitfield-type/143247#1432472Answer by Antti Rasinen for Does Python have a bitfield type?Antti Rasinen2008-09-27T08:41:05Z2008-09-27T08:41:05Z<p>If your bitfield is short, you can probably use <a href="http://docs.python.org/lib/module-struct.html" rel="nofollow">the struct module</a>. Otherwise I'd recommend some sort of a wrapper around <a href="http://docs.python.org/lib/module-array.html" rel="nofollow">the array module</a>.</p>
<p>Also, the ctypes module does contain <a href="http://docs.python.org/lib/ctypes-bit-fields-in-structures-unions.html" rel="nofollow">bitfields</a>, but I've never used it myself. <em>Caveat emptor</em>.</p>
http://stackoverflow.com/questions/138132/using-css-how-can-i-split-a-string-e-g-a-long-url-in-a-table-cell/138151#1381510Answer by Antti Rasinen for Using CSS, how can I split a string (e.g. a long URL) in a table cell?Antti Rasinen2008-09-26T07:29:40Z2008-09-26T07:29:40Z<p>Your options are pretty limited, if you are using only CSS. You can try</p>
<pre><code> overflow: hidden
</code></pre>
<p>to hide the offending parts. CSS 3 supports <a href="http://www.w3.org/TR/css3-text/#wrapping" rel="nofollow">text-wrap</a>, but support for it is probably non-existent. IIRC there is an IE-only css-property for doing the same thing, but I can't remember it at the moment and my Google-Fu fails me.</p>
http://stackoverflow.com/questions/113991/what-is-the-fastest-way-in-theory-at-least-to-sort-a-heap/114020#114020-1Answer by Antti Rasinen for What is the fastest way (in theory at least) to sort a heap?Antti Rasinen2008-09-22T09:45:50Z2008-09-22T09:45:50Z<p>Read the items off the top of the heap one by one. Basically what you have then is heap sort.</p>
http://stackoverflow.com/questions/113341/python-passing-variable-between-classes/113374#1133740Answer by Antti Rasinen for Python-passing variable between classesAntti Rasinen2008-09-22T05:59:28Z2008-09-22T05:59:28Z<p>If I understood you correctly, then the answer is: You can't.</p>
<p>intelligence should be an attribute of WizardPageSimple, if you'd want both classes to inherit it.</p>
<p>Depending on your situation, you might try to extract intelligence and related attributes into another baseclass. Then you could inherit from both:</p>
<pre><code>class MOS(wiz.WizardPageSimple, wiz.IntelligenceAttributes): # Or something like that.
</code></pre>
<p>In that case you <strong>must</strong> use the co-operative super. In fact, you should be using it already. Instead of calling </p>
<pre><code>wiz.WizardPageSimple.__init__(self, parent)
</code></pre>
<p>call</p>
<pre><code>super(MOS, self).__init__(self, parent)
</code></pre>
http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/113166#11316614Answer by Antti Rasinen for Did you ever switch from one programming language to another?Antti Rasinen2008-09-22T04:24:30Z2008-09-22T04:24:30Z<blockquote>
<p>Did you ever switch from one programming language to another?</p>
</blockquote>
<p>Why yes I did! How could you know?</p>
<blockquote>
<p>If yes, why?</p>
</blockquote>
<p>Because the world changes. Once upon a time every computer came with a BASIC interpreter (or two). These days I have no idea how to lay my hands on one. Instead, my computer contains least Python, perl, Ruby and the whole GCC. </p>
<p>I started with BASIC. Now it's mostly Java and Javascript at work, Python at home. Next target... perhaps Erlang. Or Arc.</p>
<p>Besides personal language overhaul, the industry has gone from C/C++ to Java/C#. The world turns and we'd better turn with it or risk becoming the next generation version of the suspender wearing COBOL-hackers, who lurk in the dark hallways of most large companies.</p>
<blockquote>
<p>The <strong>stereotypical programmer</strong> is very keen on writing software in one particular programming language and is very fanatic about defending their programming language in any way they can, without being realistic about whether their programming language is the best tool for the job. <em>(emphasis mine)</em></p>
</blockquote>
<p>GET OUTTA HERE! In my world, the stereotypical Programmer uses the best tool for the job. Period. Punkt. Piste.</p>
<p>Even the most stubborn one-language guys eventually give in. I've seen this a lot lately when former C++ or Java programmers discover Python or Ruby. Their eyes used to burn with zealous fire when they were talking about their Serious Language For Serious Business (yes, a Cal Henderson -quote)... but these days you can see a sort of a enlightened glow in there. And it is good.</p>
http://stackoverflow.com/questions/100048/i-need-to-join-two-lists-sort-them-and-remove-duplicates-is-there-a-better-way/100109#10010910Answer by Antti Rasinen for I need to join two lists, sort them and remove duplicates. Is there a better way to do this?Antti Rasinen2008-09-19T06:49:24Z2008-09-19T20:25:07Z<p>Our neighbourhood friendly Lisp guru pointed out the <a href="http://www.lispworks.com/documentation/HyperSpec/Body/f_rm_dup.htm" rel="nofollow">remove-duplicates function</a>.</p>
<p>He also provided the following snippet:</p>
<pre><code>(defun merge-lists (list-a list-b sort-fn test-fn)
(sort (remove-duplicates (append list-a list-b) :test test-fn) sort-fn))
</code></pre>
http://stackoverflow.com/questions/100003/what-is-a-metaclass-in-python/100091#1000917Answer by Antti Rasinen for What is a metaclass in Python?Antti Rasinen2008-09-19T06:45:40Z2008-09-19T06:45:40Z<p>One use for metaclasses is adding new properties and methods to an instance automatically.</p>
<p>For example, if you look at <a href="http://docs.djangoproject.com/en/dev/topics/db/models/" rel="nofollow">Django models</a>, their definition looks a bit confusing. It looks as if you are only defining class properties:</p>
<pre><code>class Person(models.Model):
first_name = models.CharField(max_length=30)
last_name = models.CharField(max_length=30)
</code></pre>
<p>However, at runtime the Person objects are filled with all sorts of useful methods. See the <a href="http://code.djangoproject.com/browser/django/trunk/django/db/models/base.py" rel="nofollow">source</a> for some amazing metaclassery.</p>
http://stackoverflow.com/questions/94935/what-is-the-difference-between-range-and-xrange/94971#949713Answer by Antti Rasinen for What is the difference between range and xrange?Antti Rasinen2008-09-18T17:55:59Z2008-09-18T18:55:17Z<p>Do spend some time with the <a href="http://docs.python.org/lib/typesseq-xrange.html" rel="nofollow">Library Reference</a>. The more familiar you are with it, the faster you can find answers to questions like this. Especially important are the first few chapters about builtin objects and types.</p>
<blockquote>
<p>The advantage of the xrange type is that an xrange object will always
take the same amount of memory, no matter the size of the range it represents.
There are no consistent performance advantages.</p>
</blockquote>
<p>Another way to find quick information about a Python construct is the docstring and the help-function:</p>
<pre><code>print xrange.__doc__ # def doc(x): print x.__doc__ is super useful
help(xrange)
</code></pre>
http://stackoverflow.com/questions/92249/how-do-you-come-up-with-new-ideas/92335#923351Answer by Antti Rasinen for How do You Come Up With New Ideas?Antti Rasinen2008-09-18T13:03:37Z2008-09-18T13:03:37Z<p>The usual things that help creativity apply here:</p>
<ol>
<li><p>Some amount of free time that allows you to think about the subject. Walks and showers are the classical examples. Some people mark themselves as unavailable for a few hours / week on their calendars and use that time to just be still.</p></li>
<li><p>Talking to other people and explaining your ideas and problems will help you crystallize them. Don't eat alone, go for a coffee with your coworkers or perhaps the pub after work.</p></li>
<li><p>Most things are easier when you're relaxed. If you learn some exercises to help you relax, you can dig your self a mental pothole when everyone else is running around like headless chickens.</p></li>
</ol>
<p>You can of course mix and match. Try walking and talking with a friend at the same time =)</p>
<p>I also recommend other ideas in the thread, such as writing your ideas down and the old classic, "sleep on it".</p>
http://stackoverflow.com/questions/92001/what-is-the-real-difference-between-pointers-and-references/92099#9209922Answer by Antti Rasinen for What is the real difference between Pointers and References?Antti Rasinen2008-09-18T12:31:40Z2008-09-18T12:31:40Z<p>You're missing out on a lot! Understanding how the computer works on lower levels is very useful in several situations. C and assembler will do that for you.</p>
<p>Basically a pointer lets you write stuff to any point in the computer's memory. On more primitive hardware/OS or in embedded systems this actually might do something useful. Say turn the blinkenlichts on and off again.</p>
<p>Of course this doesn't work on modern systems. The operating system is the Lord and Master of main memory. If you try to access a wrong memory location, your process will pay for its hubris with its life.</p>
<p>In C, pointers are the way of passing references to data. When you call a function, you don't want to copy a million bits to a stack. Instead you just tell where the data resides in the main memory. In other words, you give a <em>pointer</em> to the data.</p>
<p>To some extent that is what happens even with Java. You pass references to objects, not the objects themselves. Remember, ultimately every object is a set of bits in the computer main memory.</p>
http://stackoverflow.com/questions/91821/google-app-engine-how-can-i-programmatically-access-the-properties-of-my-model-c/91970#919703Answer by Antti Rasinen for Google App Engine: how can I programmatically access the properties of my Model class?Antti Rasinen2008-09-18T12:14:37Z2008-09-18T12:14:37Z<p>If the model class is sufficiently intelligent, it should recognize the standard Python ways of doing this.</p>
<p>Try:</p>
<pre><code>getattr(p, s)
setattr(p, s, new_value)
</code></pre>
<p>There is also hasattr available.</p>
http://stackoverflow.com/questions/86134/what-are-the-pros-and-cons-of-the-various-python-implementations/86172#861721Answer by Antti Rasinen for What are the pros and cons of the various Python implementations?Antti Rasinen2008-09-17T18:30:41Z2008-09-17T18:30:41Z<p>Pros: Access to the libraries available for JVM or CLR.</p>
<p>Cons: Both naturally lag behind CPython in terms of features.</p>
http://stackoverflow.com/questions/84340/why-learn-perl-python-ruby-if-the-company-is-using-c-c-or-java-as-the-appli/85898#858980Answer by Antti Rasinen for Why learn Perl, Python, Ruby if the company is using C++, C# or Java as the application language?Antti Rasinen2008-09-17T17:59:36Z2008-09-17T17:59:36Z<p>Learning a new language is a long-term process. In a couple of days you'll learn the basics, yes. But! As you probably know, the real practical applicability of any language is tied to the standard library and other available components. Learning how to use the efficiently requires a lot of hands-on experience. </p>
<p>Perhaps the only immediate short-term benefit is that developers learn to distinguish the nails that need a Python/Perl/Ruby -hammer. And, if they are any good, they can then study some more (online, perhaps!) and become real experts.</p>
<p>The long-term benefits are easier to imagine:</p>
<ol>
<li><p>The employee becomes a better developer. Better developer => better quality. We are living in a knowledge economy these days. It's wiser to invest in those brains that already work for you.</p></li>
<li><p>It is easier to adapt when the next big language emerges. It is very likely that the NBL will have many of the features present in today's scripting languages: first-class functions, closures, streams/generators, etc. </p></li>
<li><p>New market possibilities and ability to respond more quickly. Even if you are not writing Python, <em>other people are</em>. Your clients? Another vendor in the project? Perhaps a critical component was written in some other language? It will cost money and time, if you do not have people who can understand the code and interface with it.</p></li>
<li><p>Recruitment. If your company has a reputation of teaching new and interesting stuff to people, it will be easier to recruit the top people. <em>Everyone</em> is doing Java/C#/C++. It is not a very effective way to differentiate yourself in the job market.</p></li>
</ol>
http://stackoverflow.com/questions/84340/why-learn-perl-python-ruby-if-the-company-is-using-c-c-or-java-as-the-appli/84571#845711Answer by Antti Rasinen for Why learn Perl, Python, Ruby if the company is using C++, C# or Java as the application language?Antti Rasinen2008-09-17T15:35:24Z2008-09-17T17:33:17Z<p><strong>Edit:</strong> I wrote this before reading the update to the original question. See my other answer for a better answer to the updated question. I will leave this as is as a warning against being the fastest gun in the west =)</p>
<p>Over a decade ago, when I was learning the ways of the Computer, the Old Wise Men With Beards explained how C and C++ are the tools of the industry. No one used Pascal and only the foolhardy would risk their companies with assembler.</p>
<p>And of course, <strong>no one would even mention the awful slow ugly thing called Java</strong>. It will not be a tool for serious business.</p>
<p>So. Um. Replace the languages in the above story and perhaps you can predict the future. Perhaps you can't. Point is, Java will not be the Last Programming Language ever and also you will most likely switch employers as well. The future is charging at you 24 hours per day. Be prepared.</p>
<p>Learning new languages is good for you. Also, in some cases it can give you bragging rights for a long time. My first university course was in Scheme. So when people talk to me about the new <em>language du jour</em>, my response is something like "First-class functions? That's so last century."</p>
<p>And of course, you get <strong>more stuff done</strong> with a high-level language.</p>
http://stackoverflow.com/questions/71151/html-parser-in-python/71186#711862Answer by Antti Rasinen for HTML parser in PythonAntti Rasinen2008-09-16T10:55:20Z2008-09-16T10:55:20Z<p>For real world HTML processing I'd recommend <a href="http://www.crummy.com/software/BeautifulSoup/" rel="nofollow">BeautifulSoup</a>. It is great and takes away much of the pain. Installation is easy.</p>
http://stackoverflow.com/questions/70797/python-and-user-input/70833#7083316Answer by Antti Rasinen for Python and User inputAntti Rasinen2008-09-16T09:50:40Z2008-09-16T09:50:40Z<p>To read user input you can try <a href="http://docs.python.org/lib/module-cmd.html" rel="nofollow">the cmd module</a> for fancy stuff and <a href="http://docs.python.org/lib/built-in-funcs.html" rel="nofollow">raw_input</a> for less fancy stuff.</p>
<p>Command line inputs are in sys.argv. Try this in your script:</p>
<pre><code>import sys
print sys.argv
</code></pre>
<p>There are two modules for parsing command line options: <a href="http://docs.python.org/lib/module-optparse.html" rel="nofollow">optparse</a> and <a href="http://docs.python.org/lib/module-getopt.html" rel="nofollow">getopt</a>. If you just want to input files to your script, behold the power of <a href="http://docs.python.org/lib/module-fileinput.html" rel="nofollow">fileinput</a>.</p>
<p>The <a href="http://docs.python.org/lib/lib.html" rel="nofollow">Python library reference is your friend</a>.</p>
http://stackoverflow.com/questions/70560/how-do-i-compare-phrases-for-similarity/70656#706565Answer by Antti Rasinen for How do I compare phrases for similarity?Antti Rasinen2008-09-16T09:18:01Z2008-09-16T09:18:01Z<p>One approach is the so called bag-of-words model.</p>
<p>As you guessed, first you count how many times words appear in the text (usually called document in the NLP-lingo). Then you throw out the so called stop words, such as "the", "a", "or" and so on.</p>
<p>You're left with words and word counts. Do this for a while and you get a comprehensive set of words that appear in your documents. You can then create an index for these words:
"aardvark" is 1, "apple" is 2, ..., "z-index" is 70092. </p>
<p>Now you can take your word bags and turn them into vectors. For example, if your document contains two references for aardvarks and nothing else, it would look like this:</p>
<pre><code>[2 0 0 ... 70k zeroes ... 0].
</code></pre>
<p>After this you can count the "angle" between the two vectors with <a href="http://en.wikipedia.org/wiki/Dot_product" rel="nofollow">a dot product</a>. The smaller the angle, the closer the documents are.</p>
<p>This is a simple version and there other more advanced techniques. May the <a href="http://en.wikipedia.org/wiki/Document_classification" rel="nofollow">Wikipedia be with you</a>.</p>
http://stackoverflow.com/questions/70453/which-scripting-language-is-best/70511#705111Answer by Antti Rasinen for Which Scripting language is best?Antti Rasinen2008-09-16T08:56:43Z2008-09-16T08:56:43Z<p>I prefer shell scripts only for very small tasks. Writing robust shell scripts requires a lot of knowledge about possible pitfalls, which you only learn by doing. But learning even the basics will increase your productivity a lot!</p>
<p>If I need to have complex logic, I usually use Python. By complex I mean anything that has more than two if -statements =)</p>
<p>Perl is okay for its original purpose, but be warned that many of the perlisms you learn are not applicable anywhere else.</p>
<p>Python and Ruby are roughly equivalent. I'd recommend you learn one of them well and check out a tutorial on the other. I prefer Python but it really comes down to personal preference.</p>
<p>To summarize: <strong>Learn basics of shell scripts. Learn at least Python or Ruby well.</strong></p>
http://stackoverflow.com/questions/70402/why-is-quicksort-better-than-mergesort/70452#704522Answer by Antti Rasinen for Why is quicksort better than mergesort?Antti Rasinen2008-09-16T08:47:45Z2008-09-16T08:47:45Z<p>I'd like to add that of the three algoritms mentioned so far (mergesort, quicksort and heap sort) only mergesort is stable. That is, the order does not change for those values which have the same key. In some cases this is desirable.</p>
<p>But, truth be told, in practical situations most people need only good average performance and quicksort is... quick =)</p>
<p>All sort algorithms have their ups and downs. See <a href="http://en.wikipedia.org/wiki/Sorting_algorithm#Classification" rel="nofollow">Wikipedia article for sorting algorithms</a> for a good overview.</p>
http://stackoverflow.com/questions/69591/how-do-i-create-a-regex-in-emacs-for-exactly-3-digits/69644#696441Answer by Antti Rasinen for How do I create a regex in emacs for exactly 3 digits?Antti Rasinen2008-09-16T05:44:50Z2008-09-16T05:44:50Z<p>As others point out, you need to match more than just the three digits. Before the digits you have to have either a line-start or something that is not a digit. If emacs supports \D, use it. Otherwise use the set [^0-9].</p>
<p>In a nutshell:</p>
<pre><code>(^|\D)\d{3}(\D|$)
</code></pre>
http://stackoverflow.com/questions/4689/recommended-fonts-for-programming/65322#653220Answer by Antti Rasinen for Recommended Fonts for Programming?Antti Rasinen2008-09-15T18:15:11Z2008-09-15T18:15:11Z<p>I prefer Profont.</p>
http://stackoverflow.com/questions/938041/how-to-fool-git-svn-to-recognize-merges-made-with-svn/1149690#1149690Comment by Antti Rasinen on How to fool git-svn to recognize merges made with svn?Antti Rasinen2009-08-06T08:48:29Z2009-08-06T08:48:29ZThanks! This is the first time I've heard of grafts. Always good to learn more.http://stackoverflow.com/questions/1036506/django-model-name-clashComment by Antti Rasinen on Django: Model name clashAntti Rasinen2009-06-24T07:15:07Z2009-06-24T07:15:07ZSurely the app labels for the different apps should reduce the risk of conflict. Can you give more details about the error?http://stackoverflow.com/questions/1024168/django-is-there-a-better-way-to-bold-the-current-page-link/1024214#1024214Comment by Antti Rasinen on Django: Is there a better way to bold the current page linkAntti Rasinen2009-06-22T07:46:41Z2009-06-22T07:46:41ZI first found about this technique from here: <a href="http://24ways.org/2005/auto-selecting-navigation" rel="nofollow">24ways.org/2005/auto-selecting-navigation</a>http://stackoverflow.com/questions/1025216/how-do-i-build-a-custom-list-type-entry-to-request-postComment by Antti Rasinen on How do I build a custom "list-type" entry to request.POSTAntti Rasinen2009-06-22T07:44:40Z2009-06-22T07:44:40ZIf my understanding of the source code is correct, you should be able .append() to the not_bases -list. Can you please clarify what you mean by "it won't work"?http://stackoverflow.com/questions/979371/django-import-search-pathComment by Antti Rasinen on django import search pathAntti Rasinen2009-06-11T05:56:45Z2009-06-11T05:56:45ZCould you please clarify the question? How is the autocompletion in vim related to this? You don't need DJANGO_SETTINGS_MODULE if you don't actually run the Django framework and even then manage.py will often handle it for you. What is the actual problem caused by the missing environment variable?http://stackoverflow.com/questions/964569/django-adding-a-property-to-the-user-class-changing-it-at-runtime-and-usermana/966806#966806Comment by Antti Rasinen on Django : Adding a property to the User class. Changing it at runtime and UserManager.create_userAntti Rasinen2009-06-11T04:50:44Z2009-06-11T04:50:44ZIt seems that the new release is coming out soon(ish). They now have about five bugs open for the 1.1 milestone. The number was 15 or so last week. See <a href="http://code.djangoproject.com/query?status=new&status=assigned&status=reopened&component=!Translations&component=!Documentation&milestone=1.1&order=priority" rel="nofollow">code.djangoproject.com/query?status=new&statu…</a>
http://stackoverflow.com/questions/709388/whats-a-more-elegant-rephrasing-of-this-cropping-algorithm-in-python/709437#709437Comment by Antti Rasinen on What's a more elegant rephrasing of this cropping algorithm? (in Python)Antti Rasinen2009-06-10T11:16:42Z2009-06-10T11:16:42ZThis solved my problem exactly.http://stackoverflow.com/questions/962619/how-to-pull-a-random-record-using-djangos-orm/962662#962662Comment by Antti Rasinen on How to pull a random record using Django's ORM?Antti Rasinen2009-06-08T05:03:51Z2009-06-08T05:03:51ZI wouldn't create a new manager just to house one method. I'd add "get_random" to the default manager so that you wouldn't have to go through the all()[0] hoop everytime you need the random image. Furthermore, if author were a ForeignKey to a User model, you could say user.painting_set.get_random().http://stackoverflow.com/questions/953567/django-second-for-loop-produces-no-elementsComment by Antti Rasinen on django: second for loop produces no elementsAntti Rasinen2009-06-05T06:38:38Z2009-06-05T06:38:38ZIt seems as if the first loop almost exhausts an iterator but leaves one more in the pipeline. A sentinel? It'd be interesting to know more about the mystery object rendered in the second for loop. You can try to tease out its identity with {{ category|pprint }}. But the most useful thing would be, as others have said, to post information about the view and the categories -object.http://stackoverflow.com/questions/938041/how-to-fool-git-svn-to-recognize-merges-made-with-svn/938147#938147Comment by Antti Rasinen on How to fool git-svn to recognize merges made with svn?Antti Rasinen2009-06-02T09:38:34Z2009-06-02T09:38:34ZRight! So the key is to make <i>two</i> intermediary commits, one of which does end up in SVN as well. This seems to work at least on paper. Thanks for the information! I wonder if it is possible to squeeze this into a git alias...http://stackoverflow.com/questions/935638/why-does-git-svn-dcommit-leave-duplicate-commits-in-my-git-repo-can-i-stop-it-do/936265#936265Comment by Antti Rasinen on Why does git-svn dcommit leave duplicate commits in my git repo? Can I stop it doing that?Antti Rasinen2009-06-02T09:13:45Z2009-06-02T09:13:45ZThe history of remotes/trunk is the 'main line' also in your case. Look at your last graph. The history of master is the same as the history of remotes/trunk. Both are equally valid as "main line" -- remotes even more so, because it's the <i>shared</i> main line.
You don't have to eliminate master completely. You can just leave it hanging at some earlier point in history. Then if you need to do e.g. one commit, you can checkout master and svn rebase it to the present day.http://stackoverflow.com/questions/901980/why-doesnt-git-know-i-merged-is-there-a-way-to-tell-it/905796#905796Comment by Antti Rasinen on Why doesn't git know I merged? Is there a way to tell it?Antti Rasinen2009-06-01T19:17:59Z2009-06-01T19:17:59ZInstead of HEAD~10, I'd use the name of the upstream branch, i.e. git rebase -i master. (or what ever your branch name is) That way you won't accidentally edit history you've already published.http://stackoverflow.com/questions/914129/which-sorting-algorithms-give-near-approximate-sort-sooner/914206#914206Comment by Antti Rasinen on which sorting algorithms give near / approximate sort sooner?Antti Rasinen2009-05-27T06:19:32Z2009-05-27T06:19:32ZThe OP is using humans to do pairwise comparison. His objects probably don't have "bits" in the radix sort way.http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114426#114426Comment by Antti Rasinen on What are Code Smells? What is the best way to correct them?Antti Rasinen2008-09-22T12:16:16Z2008-09-22T12:16:16ZYes! I got burned by this just a few weeks ago. One of the hardest debug sessions in my life. You see, the try-block was very very long...http://stackoverflow.com/questions/112920/whats-your-favorite-abandoned-rule/113019#113019Comment by Antti Rasinen on What's your favorite "abandoned rule"?Antti Rasinen2008-09-22T04:09:13Z2008-09-22T04:09:13ZUsch. The ternary operator is far too useful not to use. As your examples shows, it can compress four lines into one. I once converted a screenful of ifs into five ternary ifs. A HUGE improvement in readability.