User - Stack Overflowmost recent 30 from stackoverflow.com2009-12-03T04:24:40Zhttp://stackoverflow.com/feeds/user/17184http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/188425/project-euler-problem/330055#3300552Answer by mattieshoes for Project Euler Problemmattieshoes2008-12-01T04:36:16Z2008-12-01T04:36:16Z<p>For reasonably small numbers, x%n for up to sqrt(x) is awfully fast and easy to code. </p>
<p>Simple improvements:</p>
<p>test 2 and odd numbers only.</p>
<p>test 2, 3, and multiples of 6 + or - 1 (all primes other than 2 or 3 are multiples of 6 +/- 1, so you're essentially just skipping all even numbers and all multiples of 3</p>
<p>test only prime numbers (requires calculating or storing all primes up to sqrt(x))</p>
<p>You can use the sieve method to quickly generate a list of all primes up to some arbitrary limit, but it tends to be memory intensive. You can use the multiples of 6 trick to reduce memory usage down to 1/3 of a bit per number. </p>
<p>I wrote a simple prime class (C#) that uses two bitfields for multiples of 6+1 and multiples of 6-1, then does a simple lookup... and if the number i'm testing is outside the bounds of the sieve, then it falls back on testing by 2, 3, and multiples of 6 +/- 1. I found that generating a large sieve actually takes more time than calculating primes on the fly for most of the euler problems i've solved so far. KISS principle strikes again!</p>
<p>I wrote a prime class that uses a sieve to pre-calculate smaller primes, then relies on testing by 2, 3, and multiples of six +/- 1 for ones outside the range of the sieve.</p>
http://stackoverflow.com/questions/90032/reasons-not-to-use-django/90097#9009718Answer by mattieshoes for Reasons not to use djangomattieshoes2008-09-18T04:43:21Z2008-09-18T04:43:21Z<p>Because <a href="http://www.youtube.com/watch?v=i6Fr65PFqfk" rel="nofollow">Cal Henderson told me not to</a>.</p>
<p>My answer was somewhat tongue in cheek, but <a href="http://www.iamcal.com/" rel="nofollow">Cal Henderson</a> gave an hour-long, funny, insightful talk about Django and where it may fall short. </p>
http://stackoverflow.com/questions/89710/what-fundamental-skills-are-needed-for-programming/90058#900580Answer by mattieshoes for What fundamental skills are needed for programming?mattieshoes2008-09-18T04:37:34Z2008-09-18T04:37:34Z<p>I object to the notion presented in the paper that x% of people CAN'T learn to program. I think the people that fail to pass introductory programming courses have decided on some level that the enormous amount of time and effort required to learn to program isn't worth it, not that they aren't <em>capable</em> of it. Barring some sort of mental incapacity, <strong>anyone</strong> can learn to program. </p>
<p>I don't see this as very different from learning a musical instrument. How many kids take music lessons, and how many of them quit? When you first sit down in front of a piano, it's not very rewarding. So you can play "Mary had a little lamb" (the musical equivalent of "Hello, World!"), but the novelty wears off quickly. It takes a <strong><em>huge</em></strong> time investment before reading music becomes natural and you know exactly where your hands should be and what they should be doing. The only difference is our arcana differs from theirs. We know about variable scope, they know about glissandos. We grok classes, they grok marziale. </p>
<p>Requisite skills? Piffle. The only requisite for music is an instrument, and the only requisite for programming is a computer.</p>