Search Results

0
votes

How Can I Know Whether I Am a Good Programmer?

I really like what Adam V said above. In addition to what others have said, look at the maintainability and support history of your work. If your code has heavy maintenance requirements an …
18
votes

What’s your favorite “programmer ignorance” pet peeve?

Ignorance of thoroughness. "That isn't a condition I should account for, the user should never do that". "I just write new code, other parts of the development cycle aren't my job …
1
vote

Last words of a ??? programmer

Programmer that never has to support his code: Documentation isn't necessary. Documentation is overrated. Documentation is foolish. Programmer that has …
7
votes

Great programming quotes

"Software is hard." Donald Knuth …
1
vote

Should Managers Be Expected To Program?

There have been some great answers already, but the best one is the one we're all familiar with: It depends. There are times, depending on the type of work and the size of …
0
votes

Are Stored Procedures Easier to Maintain?

It really depends on how well the stored procedures are written, doesn't it? T-SQL and PL-SQL can get just as gnarly and hard to maintain as C# or COBOL if the practitioner isn't coding with some t …
1
vote

What “Never Events” for Software Development are there?

Make no effort to perform sufficient business analysis and keep the business engaged thoroughly from initial design through support and beyond. In fact, don't require developers to have an …
6
votes

Do you attend user group meetings?

Yes. Benefits include: networking with real people in your local area free (if lightweight) training exposure to new tools or techniques sometimes …
1
vote

What was the most difficult concept you had to grasp throughout your entire software development career?

Polymorphism was the trickiest of the big three OO concepts for me. The literature I see today does a better job of illustrating it through analogy than when I first was learning it. Then …
1
vote

Are there too many abstractions?

The problem isn't that programmers are lazy. Laziness is sometimes a useful trait in a programmer. It's that programmers aren't thorough, or that they're inexperienced, or don't always know the nua …
17
votes

Anti-Joel Test

Is unpaid overtime a regular occurrence, and nothing is being done to change that? EDIT: StefanB notes that some overtime might be normal. I don't disagree with this, and in fact when I'm p …
0
votes

What is the most important thing you weren’t taught in school?

It is better to be lucky than good. …
1
vote

Is contributing internal tools to open source worth the effort?

I think you've done a good job of identifying the pros and cons. And it's probably true that the pros will outweigh the cons. If no one likes the utilities and does nothing to or with them, then yo …
0
votes

Good / Cheap / Fast: Which two?

Like everyone else, I would prefer good and fast. But I think that's too simplistic. Picking cheap will eventually undercut the good in the long run. Sometimes, choosing fast can too, as i …