Search Results

1
vote

Your favourite algorithm and the lesson it taught you.

The iterative algorithm for Fibonacci, because for me it nailed down the fact that the most elegant code (in this case, the recursive version) is not necessarily the most efficient. To elab …
-2
votes

Your favourite algorithm and the lesson it taught you.

You know that fibonacci has a closed form solution that allows direct computation of the result in a fixed number of steps, right? Namely, (phin - (1 - phi)n) / sqrt(5). It always st …
1
vote

In C# (or any language) what is/are your favourite way of removing repetition?

"cut and paste with minor tweaks here and there" is the kind of code repetition I usually solve with an entirely non-exotic approach- Take the similar chunk of code, extract it out to a seperate m …
61
votes

What is the single most effective thing you did to improve your programming skills?

I'm a big fan of the "learn one programming language every year" system. One year gives you enough time to get past the "okay, I know the syntax, so now I know the language" bias, and for …
199
votes

What real life bad habits has programming given you?

If I ask a question that's yes/no, I have serious difficulty processing an answer that isn't either one of those. For instance, Q: "Do you care if I flip the channel?" A: "I'm IMing my sis …
6
votes

What is the most poorly named application out there?

ViaGrafix They used to make instrucional videos for computer-related stuff. Imagine newscasters walking you through how to build an HTML document. It was agonizing. The highlight was the …
0
votes

With the advent of extension methods, are abstract classes less attractive?

I think it depends on your use- If your main concern is refactoring to minimize the number of source files and/or classes in an assembly, then yes, extension methods are definitely the way …