Search Results

1
vote

What is your solution to the FizzBuzz problem?

Simple python: for i in range(1,101): if (i % 5 == 0) and (i % 3 == 0): print "FizzBuzz" continue if i % 3 == 0: print "Fizz" …
92
votes

What are the best RSS feeds for programmers/developers?

Here are my feeds from Google Reader (10 and out added from other answers) Joel on Software ( …
2
votes

Best IDE’s for different programming languages

My answer is Vim (or Emacs depending on your religion) to all of the above ( …
4
votes

What is some great source code to read?

It may be a bit daunting (and all in C no less), but the entire Linux codebase is easily browseable at the Linux Cross Reference. …
13
votes

Useful math for programmers

Steve Yegge has an informative blog post about this (as usual, it's a exceptionally l …
1
vote

Most elegant, amusing or strange code one liners

From the Python FAQ print map(la …