1
vote
The single most useful Emacs feature
Ubiquity. Not exactly a "feature" per se, but important nonetheless. You can log into pretty much any *nix machine in the world, and expect emacs to be there.
…
1
vote
Do you validate your websites?
Yes, I validate HTML, I use -Wall when I'm writing C code, and I use the strict and warnings modules when I'm writing Perl. Why? Because I take pride in my work, and I want to do it well. IMHO, "go …
6
votes
What single software development tool do you think holds the most value?
Experience and knowledge. Seriously, tools can be immensely valuable to a skilled programmer. But despite all the marketing claims, the tool that can make up for a basic lack of skills hasn't been …
0
votes
When can I start teaching my son to program?
Whenever he shows an interest in learning it. Keep in mind, that may well be "never."
…
14
votes
Why do people have trouble learning recursion?
People have trouble with recursion because people have trouble with recursion. :-)
…
11
votes
Just Got Hired at a New Software Shop, Now What?
Keep an open mind. The best way to get tagged as a "troublemaker" is to constantly compare what you're doing now with how it was done at a previous job, hobby project, etc. For instance, if your ne …
0
votes
How do you control your programmer ego?
Ego? I'm far more critical of my own work than anyone else ever will be. Not that I would suggest low self-esteem as a solution to anyone's problems - but you did ask.
…
7
votes
What rare programming tools do you use?
Brains. They shouldn't be rare, but judging from much of the code I've seen, they are. :-(
…
20
votes
How can I convince my boss to buy books for programmers?
Actually, as a business expense, I'd say that programming books make very little sense. It's difficult to predict what books you'll need, and when, their value is very short term, and they take up …
99
votes
What is your best programmer joke?
Old C programmers don't die, they're just cast into void.
If you listen to a UNIX shell, can you hear the C?
Vi, vi, vi - the editor of the beast.
…
40
votes
What infuriates you the most when maintaining others’ code?
Inane comments. For example:
// increment i
i++;
A better comment:
// i is off by one after the above, so adjust it
i++;
What …
2
votes
5
votes
What is the funniest bug you’ve ever experienced?
Not really a bug, exactly. But, on one of my first paid gigs I was working with an ISAM database library that prefixed all of its error-reporting functions, constants, and other related stuff with …
22
votes
What coding mistakes are a telltale giveaway of an inexperienced programmer?
Two giveaways:
Language religion. There is no "one true language," but it can take time and experience to realize that.
The belief that complexity is a virtue.
…
11
votes
Has web development overtaken desktop development?
Web apps do seem to be all the rage right now, but honestly I wouldn't be too terribly worried about it. At a certain level, programming is programming. It's all algorithms, data structures, and i/ …
