vote up 171 vote down star
194

What are in your opinion the worst subjects of widespread ignorance amongst programmers, i.e. things that everyone who aspires to be a professional should know and take seriously, but don't?

flag
11  
I've just seen the word "single" in the question. Does that mean I shouldn't have submitted 5 answers (so far)? – Jon Skeet Jan 8 at 13:17
88  
@ Jon Skeet - That would be the pet peeve of coding a solution before understanding the requirements? – Dan Malkinski Jan 8 at 15:08
22  
Of course we all know that when Jon Skeet codes the requirements re-write themselves to match his output. :-) There must be a bug in SO because the question hasn't changed... – Dan Malkinski Jan 9 at 17:07
2  
@Dan Malinksi: but is has, look again ;) – Joel Coehoorn Jul 10 at 15:12
2  
Just being a pedant, but if it is a 'peeve', surely the word 'favourite' is a bit misplaced – lagerdalek Sep 23 at 19:26
show 7 more comments

189 Answers

1 2 3 4 5 7 next
vote up 341 vote down

The lack of desire to continually improve. I've seen a lot of developers get to a certain level of skill and then just stop learning new things. No reading of blogs, journals, books; it's like they reached a certain skill level and went "yep, I know all I need to know now"

link|flag
38  
I call them "career programmers", i.e. they are just doing it for a job rather than because they are interested in it. They might as well be accountants or something. Real programmers are always learning new stuff. It's not just a job - it's a lifestyle :) – U62 Jan 8 at 13:12
6  
What if you know everything, like Jon Skeet? ;) – Coincoin Jan 8 at 13:30
4  
Then you write books.. – Damien Jan 8 at 15:34
13  
+1! I once was walking down the hall with someone who announced to a whole group of coworkers that he knew everything "important" about CS and had absolutely no interest in learning anything new, ever. It was a point of pride for him, actually. – Mark Brittingham Mar 17 at 16:26
21  
Hey guys, just to warn you. It does get more annoying to learn this complex stuff as you age. It can still be done, but don't be surprised if some day you hear yourself saying "Meh, I don't really have to deal with that yet..." – Bill K Mar 29 at 3:36
show 8 more comments
vote up 324 vote down

The attitude that testing is unnecessary or time consuming

If tests aren't written, then there is no way of knowing when some change in the system breaks something elsewhere. Writing tests saves time and money.

In response to Kendall Helmstetter Gelner's comments: testing actually helps refactoring - if you have tests that tell you what the application should do, then when you refactor, those tests should still pass. This is where I have saved many hours of work, after all, the alternative is no tests or doing manual testing for everything, and that is a massive time sink.

link|flag
17  
Well, it is boring, but definitely not unnecessary. – Clayton Jan 8 at 13:04
3  
yeah, it's boring, but its necessary to do boring things sometimes. – Greg Jan 8 at 15:13
21  
I'm a big TDD advocate so don't get me wrong on this one. That there are no tests WRITTEN (in other words automated) doesn't mean that it has not been tested. Just as the fact that there are tests written doesn't guarantee that the right things has been tested. – Patrik Hägne Jan 20 at 22:21
6  
I left a career in software testing for a developer job simply because of this. Testing never gets the time, money, personnel, respect and recognition it deserves. It's always a battle, you're always the "bringer of bad news", and the better you are at your job, the more bad news you bring. – M. Nilsson Apr 1 at 13:09
4  
@Kendall You write tests to ensure that the app meets the requirements at a high level (integration / functional) and a low level (unit) - you dont test to make sure it's tested. 'Test drag' only comes into it if you have written too much test code. If you get the balance right, then refactoring / adding functionality doesn't mean you have to change that much. – Mr. Matt Jul 1 at 10:38
show 11 more comments
vote up 292 vote down

My Application Owns the Computer

A pervasive attitude among programmers is that the only reason people own a computer is to run their application. Symptoms include:

  • Usurping shared resources like the desktop, system folders, task bar, registry, ... ("The whole machine is for my use.")

  • Can't turn off the app ("The only reason the machine would be on is to run my app, so I'll install an auto-startup service, a startup app, an Explorer plug-in, ...").

  • Resource hogging ("I can just grab exclusive access to files, database, or network connections when I launch and keep everything open.")

  • Interrupts workflow with pop-up messages, tooltips, alert balloons, taskbar messages, status messages, sound effects, ... ("Look at me! I'm working! Do you see me? I'm doing something!!")

  • Collateral damage ("I don't use that so I'll delete it.")

  • Race conditions ("Anything I do will stay that way forever until I change it.")

  • Security breaches ("I can expose everything on the machine, since I am the only one that will ever access it.")

  • Lack of interoperability ("My app has everything it needs so I don't need to support file export or cut and paste.")

  • No deployment ("I will never have to update or uninstall my app; they'll just get a new machine.")

link|flag
47  
Wish I could upvote this twice! You could write a book just on Adobe with regard to their installs: * Stealing registered extensions * Installing unrelated software (Yahoo toolbar) * Creating icons on desktop. * installs a memory resident start up widget to "Quick launch" their app. – JohnFx Jan 26 at 22:50
71  
Further, I can't stand it when applications pollute my documents folder and use it as an app data folder. There's a folder called APPDATA that exists EXACTLY FOR THAT PURPOSE. GO AWAY. – Matt Olenik Feb 26 at 21:55
8  
I consider apps (mostly Microsoft) that create folders in "My Documents" to violate this principle. If it were for application data, it would be called "Application Data". Oh, wait, there is one already! – StuffMaster Mar 17 at 17:02
14  
Related to this is the "quick start" option (automatically checked most of the time) in large apps. By pushing the start up time of the app into the start up of the computer, you punish the user every time, but they never know it's your app's fault. Unbelievable! – Kai Mar 29 at 3:56
2  
Yes i have given up on having the document folder for my usage. I can't stand seeing all of the application crap in there. So i just ignore it's existance and use my own folders outside of that structure – Harry Mar 29 at 5:32
show 10 more comments
vote up 270 vote down

Mine is when programmers think only about the code and not about the users. I put usability first, and try my best to make everything as easy and intuitive to use as possible.

Unfortunately, some programmers don't do that; e.g., they use non-descriptive labels for fields (or, don't use labels at all), don't plan and think about the interface layout, and the error messages explain things in a technical manner rather than telling the user what they need to do.

If more programmers read books on usability, marketing, and other such concepts (like I do), the software world would be a much better place.

link|flag
8  
That's why I always try to get a decent designer to look at my UI, preferably even make a mockup for me. Then I know my UI is done by a professional. I'm not a frontend developer, I develop the systems that make it work! – Erik van Brakel Jan 8 at 13:12
6  
I would double-upvote this is I could, because I feel like it's the reason for a vast majority of software failures - the people who write the code don't know/care about the actual purpose of the application and thing people will use it "just because it's cool". Wrong - it needs to solve a problem. – rwmnau Jan 10 at 22:01
9  
Well said. The end user doesn't give a damn about how clever the programmer is. The program just needs to make their life easier - not more complicated. – Damien Feb 4 at 6:28
1  
Check out whysoftwaresucks.com if you still haven't done that. :) – Arnis L. Jun 6 at 21:40
5  
I'm sorry, but I don't think that's the responsibility of the programmers... They're programmers... they have to think about the code... Why do you think all the development tools are getting better at "letting programmers and designers work together on the same project"? If you make the programmers responsible for the user interface, thats when you get those horrible user interfaces! Just don't do it. Hire a designer! – fretje Jun 17 at 14:54
show 6 more comments
vote up 235 vote down

In Java and C# (leaving aside ref/out):

Myth: "Objects are passed by reference"

Reality: "Objects aren't passed at all; references are passed by value"

There's a significant difference, and it's often ignored :(

Even in C everything is passed by value (including pointers).

EDIT (jonskeet): Judging by the comments, it may be worth referring to my article on C# parameter passing. Hopefully this will reduce confusion rather than increasing it...

link|flag
111  
In fairness I've yet to see a single real-world problem caused by someone not understanding this. – Draemon Jan 8 at 11:33
10  
@Draemon: It leads to people not understanding what happens if you use "ref" on a reference type. – Jon Skeet Jan 8 at 11:43
5  
@Christoph: The thing is, "pass by reference" has a very specific semantic meaning in computer science, and it's not the same as passing a pointer by value. The latter is usually used to emulate the former, but there's a difference and people should understand it. – Jon Skeet Jan 8 at 12:05
3  
@wds: Indeed, Java doesn't have "ref" - but if people are told that parameters are passed by reference, they might expect to be able to write a swap method, or make similar changes. Living with that sort of misunderstanding is just a bad idea when it's really not that hard to get it right. – Jon Skeet Jan 8 at 12:36
4  
there should be a badge for so many comments :p – fmsf Feb 18 at 13:36
show 57 more comments
vote up 189 vote down

Ignorance that other programmers may need to maintain your code.

I.e.:

  • Lack of decent method and variable names
  • Lack of comments
  • Moronic structure

Oh, people who think all abstractions are bad. You shouldn't use nHibernate, built in ASP.NET functionality and so on because you lose some control. Why don't they just code everything in assembly...

Edit: I should point out I am not saying that you must use these abstractions, just that there is nothing wrong with using them when it makes sense to (e.g. it's foolish to use nHibernate on a very simple site). It's a judgement call on when an abstraction makes sense, I just think some people are ignorant about the benefits it can bring.

link|flag
10  
I feel a compulsive need to keep clicking the up arrow on this post. – Mike Hofer Jan 8 at 11:55
1  
I'd be in the camp that says you don't need something like nHibernate.. it doesn't take that much more effort to do it with the built in assemblies, and you do have full control (and one less piece of external code to worry about 5 years later). Comparing it to coding in assembly is a huge stretch – John Jan 8 at 13:56
2  
For that matter, forgetting that I may need to maintain that code. I can forget it pretty quickly, and when I do a bad job in the first place... – thursdaysgeek Jan 9 at 0:41
2  
@Roalt - I think that's perhaps a bit too much. I believe many people would not necessarily be able to concentrate on writing the best solutions. So, my suggestion: Always code as if Jon Skeet reviewed your code in the end of every day - and you couldn't go home until he's happy with the results. – Pukku Jan 30 at 20:09
1  
When I had summer interns working for me their first responsibility was to maintain last years' intern code. THAT got them thinking... – n8wrl May 29 at 17:08
show 8 more comments
vote up 188 vote down

It easily has to be that 'Commenting bad code is better than actually refactoring it into good code'

link|flag
7  
I admit that I will do this on some occasions because each change to a function requires user testing. If I see something bad or not good, I will put a comment with notes so that the when we have time, or the next time that function needs to be updated, it can be done in a more fitting fashion. – StingyJack Jan 8 at 13:10
7  
@willcodejavaforfood - I've come to believe that any comment is a smell. Code (in any language) should read like English. – ewalshe Jan 9 at 0:23
4  
@ewalshe : did you ever try cobol? :) – Mikeage Mar 29 at 3:52
4  
Sometimes I comment first so that I can understand well enough to refactor... – Kendall Helmstetter Gelner Jun 30 at 21:22
10  
@ewalshe: English-reading source only tells you how, but neither what (comments) nor why (documentation). – DevSolar Jul 10 at 11:01
show 9 more comments
vote up 182 vote down

Label1, Label2, ... Label126, ...

Button1, Button2, ...

ooohhhhh ... I just want to smack somebody! ;-)

link|flag
1  
Lazy variable naming sucks. Often times I see $sqla and $sqlb when the letters a and b have no relationship to what those two variables are used for. – Bernard Jan 14 at 19:46
20  
I'll admit I tend to only rename the controls that are used in code. So the buttons get renamed but the labels don't (usually). – Cameron MacFarland Jan 25 at 2:02
2  
What if you have 126 labels and you don't know what they are for until runtime? – Jasmine Apr 13 at 22:14
1  
@Jasmine-If you're talking about some super form with 126+ labels added at design time where the same form is used for everything & the numeric convention is by design ... well ... based on your profile, I'll assume you have a good reason for doing it, while praying I never have to maintain it. ;-) – John MacIntyre Apr 14 at 1:31
3  
Yeah... I don't see the problem here. As long as those labels don't appear in the code, you can refactor them as soon as they become useful. – Mark Jun 30 at 21:25
show 12 more comments
vote up 174 vote down

Complacency with duplicate code. Two blocks of code which are initially identical are a maintenance headache. They are going to gain differences over time due to being used differently, yet there will be cases where the same fix has to be applied to both similar but non-identical parts. You can try distinguishing after the fact between a fix that should have been applied to the other copy of the code but that was overlooked, and a fix that deliberately wasn't applied to both. It will make your head hurt.

I did code reviews of prospective hires a while back, and realised that the main bar that most applicants needed to get above was nothing fancy - not good Object Orientation, appropriate use of Design Patterns or the like, but just plain old factoring of code into well-named, re-usable methods. I.e. avoiding the "100s of lines of repetitive code in button click handler methods" pattern. This was discovered with "structured programming" in the early 1970s, before most of those applicants were born.

link|flag
6  
A-MEN... But, there is a flip side to this too. People who write functions for EVERYTHING. Hate seeing a .cpp file full of 1 line functions... Geez.. – LarryF Jan 8 at 19:45
6  
+1. I used to wish that I could just disable all copy-paste functionality in the environments of some "seasoned" ex-colleagues of mine. – Pukku Jan 30 at 20:21
4  
On the other hand, trying to maintain a single block of code for two (or more!) clearly distinct purposes may end up being really bad as well: if (flag) { stuff... } else { otherStuff... } minimalAmountOfCommonStuff... if (!flag) { yetMoreStuff... } else if (flag2) { tooMuchStuff } – Pukku Jan 30 at 20:24
3  
Wish I could vote this up 4 times – Bill K Mar 29 at 3:38
4  
Every IDE should not have copy-paste. cut-paste is enough. And the funny part is I am not joking. – lispmachine Jun 6 at 13:00
show 6 more comments
vote up 171 vote down

My personal pet peeve (petty but my teeth grind everytime I see it) is verbosely setting booleans, e.g.

bool isValid;
if (percentage >= 0 && percentage <= 100)
   isValid = true;
else
   isValid = false;

whats wrong with

bool isValid = percentage >= 0 && percentage <= 100;

It's soooooo much more succinct and easier on the eye

link|flag
9  
or bool isValid = percentage >= 0 && percentage <=100 ? true : false; – agnieszka Jan 8 at 13:27
42  
i've seen better though: if(valid == true) return true; else return false; instead of return valid; – agnieszka Jan 8 at 13:28
12  
Most IDEs allow setting a breakpoint with a condition. – Pete Kirkham Jan 20 at 22:44
9  
@Uri: "I generally don't like complex lines and prefer to break them down" I actually agree, but I find it hard to imagine a universe where the above statement would be considered complex. – Binary Worrier Jan 23 at 11:31
10  
Your university did you a disservice Roalt. – Erik Jan 28 at 18:37
show 23 more comments
vote up 125 vote down

How does a computer work.

If you are a programmer, you need to know how the hell a computer works. You need knowledge of function and behavior, as far as it concerns computer programs. RAM, CPU, cache, I/O, DMA, PIO, interrupts, etc.

You don't need to know assembly in particular, but concepts like flags, registers, branches, stacks, stack pointer, instruction pointer, memory, pages, DMA, interrupts, semaphore/lock support and things like that must be understood.

I don't care if your language abstracts memory management, if your database framework abstracts disk access or even if you use a framework abstracting distributed computing. It still gets run by computers and suffers from computers limitations, which does impact how your software works.

link|flag
3  
well, that's not true. every doctor knows basics about brains and vaginas and is just specialised in the area he's chosen. and i would agree with Daniel. – agnieszka Jan 8 at 23:21
8  
@Click Upvote If you don't understand how computers work you won't know why for (i = 0; i < len; i++) for (j = 0; j < width; j++) a[i, j] = 1; is much slower than for (i = 0; i < len; i++) for (j = 0; j < width; j++) a[j, i] = 1; for large arrays. Think about the cache. – RussellH Jan 10 at 23:39
4  
@RusselH: I thought about the cache, and what you're saying seemed like madness. So I wrote a C program to do what you're saying, and the a[j, i] = 1 loop ran about half as fast the the a[i, j] = 1 loop. Am I missing something, or did you mean the opposite of what you said? – chaos Jan 14 at 5:23
3  
@chaos -- Thanks - I meant the opposite of what I said! – RussellH Jan 20 at 20:27
7  
i agree to an extend, but i'm not convinced this is truely necessary. Do you need to understand the origin of words in a language to use them? – Harry Mar 29 at 5:35
show 14 more comments
vote up 117 vote down

The biggest mistake I see new programmers make is trying to prove their code is correct when it obviously isn't. It usually runs like this:

  1. Programmer writes some code. It fails when run.

  2. He then spends several hours staring at his code convincing himself that it's correct.

  3. He asks for help and instead of accepting that it must be wrong, he focuses on why his code must be right and how 'something else' is causing the problem.

My advice: Assume someone else wrote that code and you know it's broken. Find the broken bit...

link|flag
8  
Ego-less programming: codinghorror.com/blog/archives/… – JesperE Jan 8 at 13:18
5  
Actually, in some cases this might work out pretty good. When you try to explain your code and why it is right to someone, you're forced to re-think every tiny bit while explaining it, and you'll often stumble upon your own error either by yourself or by a comment of the one listening. – Frans-Willem Jan 8 at 15:26
2  
You can stare at source code you've written yourself for hours and not see what it actually say instead of what you think it says. For some reasons the brain doesn't reparse anew :-S – Thorbjørn Ravn Andersen May 8 at 9:39
show 10 more comments
vote up 116 vote down

Ignorance of threading

(As applied to .NET/Java; different phases would apply in functional languages, for example.)

I believe developers go through up to 4 phases of threading knowledge:

  • Complete ignorance - ignore any possibility of problems. Result: race conditions, weirdness.
  • Over-reaction: make every member of every class lock/synchronize. Result: deadlock, code fluff.
  • Caution: reapproach the whole problem. Take a long time thinking over any threading issue. Get it right at least some of the time. Live in a state of fear when dealing with threads.
  • Nirvana: Instinctively do the right thing.

In my experience the last is more of a theoretical goal than an attainable state.

link|flag
16  
I love the wording "Live in a state of fear when dealing with threads" - so true. – Michael Borgwardt Jan 8 at 13:14
1  
"In my experience the last is more of a theoretical goal than an attainable state." -- What happened to FACTS such as Jon Skeet's experience doesn't include any unattainable states? – Windows programmer Jan 9 at 3:58
3  
You left out the 5th stage: the is no Nirvana. Threading is fine in simple cases, but intractable in the worst case. I say this after years working on hardware concurrency (interrupts, etc) at the hardware level. Believing there is a Nirvana is exactly the kind of hubris that's gets you into trouble. – Walt Gordon Jones May 17 at 9:30
1  
I once had a boss who stated "if it's too slow, I start making everything static". There are many things wrong with that statement. But, per threading, he would make instance variables static, which were then modified when another thread came along and tried to use the should-be-instance-but-am-static variable. – Matt Sep 17 at 20:35
show 10 more comments
vote up 112 vote down

Ignorance of Polymorphism.

Even in Python (with duck typing!) people still try to write

if type(x) == SomeClassIDefined:
    x.aMethod(arg1)
 elif type(x) == SomeOtherSubclassIDefined:
    x.otherMethod(arg1)
 else:
    x.yetAnother(arg1)

Where, clearly, they should simply rename the three methods to create polymorphic classes. They can eliminate the if and simply

x.renamedMethod(arg1)

Yesterday I saw the "surrogate type check" design pattern.

for arg1 in aBigList:
    if someOption == "x":
        result = someObject.aMethod( arg1 )
    elif someOption == "y":
        result = anotherObject.aMethod( arg1 )
    else:
        result = defaultObject.aMethod( arg1 )

Sigh.

At parameter-parsing main-program-startup time, they should have done this.

if someOption == "x":
    theWorkingObject= someObject
elif someOption == "y":
    theWorkingObject= anotherObject
else:
    theWorkingObject= defaultObject

Then, in the deeply-nested loop they could do this.

for arg1 in aBigList:
    result = theWorkingObject.aMethod( arg1 )

Simpler. Faster. Polymorphic. Pythonic.

link|flag
show 9 more comments
vote up 101 vote down

Female programmers can't code?

Another peeve of mine comes from the attitude people have toward female programmers, which include among other things:

  • "Programming is too hard for women, since they're obviously emotional rather than logical thinkers"
  • "The best female programmer is never better than an average male programmer"
  • "Women programmers can't be pretty"
  • "Women only choose to be programmers because they are in need of a husband"
  • etc, etc, etc

One of the women on my team is a tech lead, and she commented to me the other day interviewing potential employees. Normally, she and one of the male leads would interview candidates together. Consistently, interviewes would speak in very technical terms to the male lead, and dumb it down when they spoke to her. One candidate managed to describe a weird scenario that caused a stackoverflow exception to the male lead, and reiterate it back to her as "a stack overflow is kinda like filling a balloon with too much air, eventually fills up and finally goes POP!"

I don't know if people have had bad experiences in the past, but I've never seen a perceivable difference in coding style or quality programmers between men and women programmers.

link|flag
5  
I've been programming for over 20 years, and though I've usually been in the minority, it's not a large difference in numbers, and I've NEVER felt discriminated against for being female, and have often been recognized as the best. Maybe because I'm not pretty. – CindyH Jan 8 at 15:35
5  
I had a female boss at work, she is brilliant and very sharp (Razer sharp!) BUT she would always be paranoid about being treated inferior and her overreactions would be WW2. Sadly I couldn't stay in the company due to this problem – Harry Mar 29 at 5:42
14  
@Adam - What is the point in saying "yet to meet a good female programmer" and then say "yet to meet a female programmer at all" I think you should be checking for NULL first! – Harry Mar 29 at 5:43
4  
I have known 2 female programmers, 1 VERY good and the other may have been good, until she decided not to learn anymore... about 10 years ago... unfortunately she also needs an attitude re-alignment (assumes she is a programming god when in fact just knows the product/business rules very well) and makes even a simple hello sound like a declaration of war... – geocoin Jun 2 at 15:53
9  
"Women programmers can't be pretty" - I think similar stereotypes exist for male programmers too. – Jason Baker Jun 12 at 23:02
show 33 more comments
vote up 75 vote down

Thinking that customers know what they want

Don't take the customer's words literally. Understand the problem, talk about it with others, think of many creative solutions, and implement the solution that works best for most users.

link|flag
3  
Taking the customers words literally is disastrous. Not everything the customer utters is a requirement, in fact somethings should be transparent to the user and determined entirely by the programmers. – Bernard Jan 14 at 19:50
3  
Conversely, I've seen horrendous examples of (individuals, small teams) assuming they alone know what the customer needs, without deigning to analyse the problem in any detail before spouting off a list of "user requirements". – Rob Jan 17 at 7:33
2  
Shame I can't give you a bounty myself for this one. Soooo many people don't understand this, and to all sorts of stupid things because that's a literal translation of what the customer said they wanted. – T.E.D. Jun 2 at 15:52
show 2 more comments
vote up 72 vote down

Ignorance of the fact that it's really important to let your coworkers know when you're ignorant of something!

Especially when working with new colleagues, one of the hardest things I find is trying to figure out what the person knows and doesn't know.

link|flag
1  
+1 for that. It makes for a much better product if everyone on the team knows the ability of the rest of the team. – discorax Jan 8 at 18:29
2  
The biggest problem with that is, the person who doesn't know ... doesn't know they don't know ... kind of like how stupid people think their smart. – John MacIntyre Mar 19 at 1:33
2  
Agreed. It can take a while of dealing with someone to realize they do this, but after a while of interaction and cooperation, you realize they never say "I don't know" or "I'll get back to you on that" then...danger, danger... – Stu Thompson Mar 30 at 20:58
1  
I won't hire anyone who doesn't say "I don't know" at some point during the interview. If you know everything, you can't learn anything, including how to do this job. – Boofus McGoofus Jun 12 at 16:36
show 1 more comment
vote up 68 vote down

Thinking that it is OK to swallow an exception:

try {
  ...
}
catch (Exception e) {
  e.printStackTrace();
}

The default Eclipse template does this and so many people just catch a checked exception to get their code to compile and then ignore the ticking NPE.

edit: A post by Reinier reminded me of this one:

if (condition1) {
    if (condition2) {
        if (condition3) {
            if (!condition4) {
                if (condition5 || condition6) {
                    if (condition7) {
                        if (condition8) {
                            if (condition9) {
                                if (condition10) {
                                    // do something important
                                    ...
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
link|flag
4  
This is evil. People do it in so many languages. Failures aren't detected for days -- sometimes when it is too late to fix. – RussellH Jan 9 at 0:20
2  
God I agree whole-heartedly. I keep trying to convince the team I work with that swallowing exceptions and displaying message boxes is bad because you don't know when some other code is going to call yours and have no idea an exception occurred. I think they still don't get it. – Ben Daniel Jan 9 at 2:23
1  
Fortunately, VisualStudio allows you to break from execution for any thrown exception. At that point you get to see just how many people are eating unnecessary exceptions. – Pedro Jun 23 at 14:50
show 5 more comments
vote up 66 vote down

Treating coding standards as absolutes is my pet peeve. Coding standards are good things that improve readability, but there are always exceptions to the rule. The classic example is the "one return per function" rule. Sure, it's good to limit the number of returns in a function, but there are situations where multiple returns are preferable to contorting your code to use one return.

link|flag
2  
I think the 'one return' rule is a good "suggestion", but it's not law, or even a rule. I agree that hacking code to GET the one return is not always the best way. – LarryF Jan 8 at 19:55
2  
I used to believe in the 'one return rule', until my very first code review, and a senior developer took 5+ minutes deciphering my single if statement in front of me. – drhorrible Jan 9 at 6:21
1  
much like "taking coding standards as absulute" is a peeve... Spitting on coding standards because it does not always apply is just as worst... both are fringing fanaticism, truth lies somewhere in the middle. – Newtopian Mar 26 at 6:07
3  
@Peter Mortensen - Just so you know: for loops, while loops, procedure calls, and if statements are also disguised gotos. – Jason Baker Aug 29 at 0:41
show 11 more comments
vote up 66 vote down

I really don't like it when people are testing the value of a boolean like e.g.

if(someflag == true)

Not only is it redundant and unnecessarily verbose, but with a language like C# where there's no implicit conversion from e.g. int to bool it can actually lead to errors. In C# you can't make the classic assignment instead of comparison mistake unless you're testing a bool, so

if(someint = 0)

will not compile, but

if(someflag = true)

will ...

link|flag
9  
Actually if your flag is a boolean, you can name it isSomething, or canDoThis, or anythink like that. Then, it's far more natural to read if (isEnabled). The boolean nature is already in the variable name. – Think Before Coding Jan 8 at 13:27
7  
My gosh I could rant for hours about the stupidity of the "constant on the left" mania... – DrJokepu Jan 8 at 19:48
4  
what about if(something == false) does that read better than if(!something). Like I know it's obvious, but the thinking is it reads better as you might skip over the ! ? That's what I'm currently debating. :) – rball Jan 8 at 23:20
3  
@rball: I prefer if(isSomething == false) because someone new to the code may not see the not sign or may not know what it means. I tend to lean towards the "make it as painfully obvious what you are doing". – Nazadus Jan 17 at 7:18
2  
@Dana - I have to do that sometimes. In Flash a boolean can have 3 values (true, false, null). I find (x == true) or (x != false) useful as a way to coerce it into just true or false. Which I use depends on what I want the default to be if it's null. – Herms Jan 20 at 20:47
show 9 more comments
vote up 66 vote down

Yet another one: the popular language Sun released in the 90s is called Java, not JAVA. It's not an acronym. There's no need to shout. Grrr.

(I'm thinking of changing my middle name to "grumpy old man".)

link|flag
7  
I'm a .net developer and for the life of me I can't remember if it's .NET, .Net or .net. MS marketing FTL there. – jcollum Jan 20 at 22:43
6  
I always use ".NET" which seems to be what MS uses... but I'm sure at least one series of books has it as ".net" which actually looks more visually appealing. – Jon Skeet Jan 20 at 22:49
4  
Just the same with Ada. – E Dominique Mar 15 at 17:54
3  
Back in the day, using small caps for product names, trademarks, etc. seemed quite the fashion - perhaps this sort of thing is a throwback. "MAC" for (Apple) "Mac" ticks me off. Maybe IT is so full of acronyms people just assume every term is one! – cheduardo Jun 13 at 15:48
3  
If someone who calls him/herself a Java programmer writes "JAVA", then I seriously doubt how well that person knows about Java. – Jesper Aug 14 at 11:46
show 7 more comments
vote up 65 vote down

Arrogance.

link|flag
3  
This industry is second only to Wall Street in this regard. – John MacIntyre Jan 9 at 1:01
20  
Ignorance ("I know everything") or arrogance ("I am the best") alone is curable through experience. The combination is incurable. – Dour High Arch Jan 9 at 2:04
3  
The combination is also more common. :( – Rob Jan 17 at 7:29
vote up 59 vote down

Programmers carrying over habits which may be desirable in one language, but aren't in the new one.

Classic example is seeing C# or Java code like this:

if (5 == someValue)

This is usually written by ex-C or C++ developers who are trying to avoid the typo of:

if (someValue = 5)

which is valid C/C++ (although it generates a warning in most compilers). In C# and Java it's just unnecessary, and I believe most people find it harder to read than the more natural:

if (someValue == 5)
link|flag
3  
@hstoerr: The only case where it would make a difference is: "if (flag = true)" - which should be written as "if (flag)" (or "if (!flag)" for the reverse) anyway. – Jon Skeet Jan 8 at 13:29
7  
@Dan: The problem is that people are making code less readable for a reason which isn't applicable in their language. It's like limiting your variable names to single letters because you happened to use a language with that restriction in the past. – Jon Skeet Jan 8 at 13:30
2  
Another example: C++ enums do not require to use enums like EnumName.EnumValue, it accepts simply EnumValue too, so it makes sense in C++ to have enum value names like EnumNameEnumValue, but in C# this is unnecessary. Still I very often see the following pattern in C#: EnumName.EnumNameEnumValue – DrJokepu Jan 8 at 20:02
3  
Personally, I don't find it any harder to read. – Bernard Jan 9 at 12:47
4  
I dislike this practice even in C++. If you have the willpower to consistently type "if (5 == x)" then you have the willpower to watch the equal-signs and write clear code. The latter is more valuable because it also protects against "if (y = x)". – James M. Jul 27 at 20:54
show 18 more comments
vote up 56 vote down

Mine is "bytes and characters are NOT the same thing, nor trivially convertible". I can't count how many times I've seen otherwise competent programmers completely ignore the issue of character encodings, misapply them horribly, or do multiple unnecessary and potentially destructive conversions between them.

The worst case I've seen, an overloaded method for handling XML (simplified):

public void setContent(String xml)
{
    SAXBuilder builder = new SAXBuilder();
    this document = builder.build(
        new InputSource(new StringReader(
        new String(xml.getBytes(), "UTF-8"))));
}

public void setContent(byte[] xml)
{
    this.setContent(new String(xml, "UTF-8"));;
}

Count the number of unnecessary and potentially destructive String/byte[] conversions. Count them!

Depending on the platform default encoding is par of the course for naive Java code, but corrupting the data unless it matches both the platform default encoding and a hardcoded one takes real talent - especially when it would have been less work to just hand the byte[] over to the XML parser and have it use the correct encoding declared in the XML data itself.

I blame it all on the C standard.

link|flag
7  
+1. Witness questions of "I've got a StreamReader with a jpeg image in..." No, you've got almost-certainly corrupted data at that point... – Jon Skeet Jan 8 at 13:11
2  
back when I was learning C, i had it drilled into my head that 1 byte = 1 character. I was happy with this ignorance for years until I came to make a multilingual website. Wow that was an awakening. – Neil Aitken Mar 5 at 9:53
2  
In C, it's actually defined that way - hence blaming it on the C standard. – Michael Borgwardt Mar 5 at 13:49
show 3 more comments
vote up 55 vote down

Performance isn't that much of a problem until performance becomes a problem. No matter how much you talk about premature optimisation people keep on doing it, at all kinds of level- there is nothing virtuous in writing 2000 lines of compiled code when you could have written 20 lines in a dynamic language just to save 20 processor cycles when your processor is running 95% idle anyway.

If the time comes when performance is a problem you can fix it then, but basing all your decisions on the assumption that it will be wastes everybody's time...

link|flag
3  
I don't disagree with you, but I think it's good nature for developers to think in terms of performance oriented code. If it's UI code, or a cmdline util, not such a problem. But scaling should always be considered. It's never easy to go back and fix broken design months or years later... – LarryF Jan 8 at 19:49
3  
Good design is easy to fix when the problem arises- if it's clean and orthogonal then substituting in a new component/method/whatever to fix a performance bottleneck is relatively easy. – glenatron Jan 9 at 10:22
2  
Many of the performance problems I've found have been in UI code; scaling also applies if the data set you're visualising is big. The worst offenders are dynamic languages, where you face a massive jump if you want to get closer to the metal once algorithmic improvements are exhausted. – Pete Kirkham Jan 20 at 22:50
2  
Yeah, that's what MS said with Vista: Don't worry about performance, by the time we'll be done with this thing folks will have plenty of horsepower. While I'm not saying optimize every single line of code, more often than not this kind of attitude is what makes slow / bad software. – pbz Jan 27 at 19:07
3  
This is a moving target, and you're best to at least be in the right ballpark. Perhaps line optimizing can wait, but architecture decisions need to be on spot. – Walt Gordon Jones May 17 at 9:40
show 4 more comments
vote up 49 vote down

These aren't unversal, but are very common:

Lack of knowledge (and interest) about what it takes to operate and support the software once delivered.

Failure to appreciate software has no value in and of itself, but only adds value when it is used for something.

Both of which lead to a lack of interest in what happens to the software once it's compiled, tested and released.

link|flag
1  
+1 to that. Was trying to say the same thing, but could not put it so eloquently. Having done both full-on coding, and full-on end-to-end release management, I know which one is the harder job. – toolkit Jan 8 at 10:54
show 2 more comments
vote up 49 vote down

Many programmers think that writing unintelligible code that ultimately works somehow shows their genius. It's writing clear, understandable code that makes a good programmer.

A related issue are programmers who change old, unintelligible code without cleaning it up. Or not even really understanding what the old code does, as long as their new addition to it works.

link|flag
8  
"A related issue are programmers who change old, unintelligible code without cleaning it up" There's a logic to this, any code you change you will then be completely untested. Often, leaving badly written and complex code alone is the best course of action – weiran Jan 9 at 9:46
1  
@weiran: But if you don't know if your change affects the old code in any way, you can introduce errors just the same. You detect those errors better if the code is readable. – Sebastian Dietz Jan 9 at 13:22
show 3 more comments
vote up 49 vote down
  • Programmers not trying to learn the difference of decimal and double

  • Commenting tautologies:

    i = 0; // set i to zero
    
    
    // loop column 80 times
    for(n = 0; n < 80; ++n) putchar(' ');
    

    instead of stating the intent:

    // scroll one line
    for(n = 0; n < 80; ++n) putchar(' ');
    
  • Programmers not knowing that conditions can be simplified(DeMorgan'd), e.g. coding multiple negatives:

    while (keypress != escape_key && keypress != alt_f4_key && keypress != ctrl_w_key)
    

    instead of the one easier to read:

    while (!(keypress == escape_key || keypress == alt_f4_key || keypress == ctrl_w_key))
    

    note: mentally read the construct while(!(...)) as until:

    until (keypress  == escape_key || keypress == alt_f4_key || keypress == ctrl_w_key)
    

    [EDIT: 2009-09-25] related to this question(simplifying the condition):

  • Naming negative variables, e.g. Unpaid, NotFound.

    Using this:

    • If Not Unpaid Then
    • If Not File.NotFound Then

    Instead of what can be easily understood:

    • If Paid Then
    • If File.Found Then
link|flag
2  
Actually I would generally prefer the first case if working in something that didn't have until (i.e. C++), in Ruby I would use whatever sounded nicer. But your while example does not always sound/look nice to me. – Daemin Jan 8 at 11:59
3  
Same here. I'd argue that an extra set of parenthesis would hurt my eyes more, while reading the code. – Dan C. Jan 8 at 12:17
3  
During my college days, I just #define until to make for readable C/C++ programs. #define until(cond) while(!(cond)) so i can use: until (keypress == escape_key || keypress == alt_f4_key || keypress == ctrl_w_key) Same for If, Then, ElseIf, Else, EndIf, etc #define Then ){ #define Else }else{ – Michael Buen Jan 8 at 12:49
1  
Thats why I find it such a dream to work in perl code... they have until constructs, and things like: doThis() until(finished()); – Ape-inago Jun 19 at 3:01
5  
@Arnis: please learn what "literally" means. – DisgruntledGoat Jul 4 at 18:41
show 6 more comments
vote up 47 vote down

No one knows what the heck an MVC is. A lot of people think they know, but they're usually wrong.

link|flag
11  
I'd love to meet this "Noone" guy that so many people say knows so much. Unfortunately, no one seems to know who he is. – Dour High Arch Jan 8 at 21:06
16  
Pfffft. No one knows what an MVC is. It's an idea from the 80's that's been bastardized into a web framework. MVC is whatever you/your framework defines it to be. – David Jan 8 at 21:35
4  
"Most Valuable Coder" (don't kill me) – Bernard Jan 9 at 12:44
4  
Isn't MVC on channel 271? – Dan Mar 16 at 19:08
2  
MVC tends to be a multi-layered mess and is often not a very good solution at all. It's a fairly good starting place if you can't figure out what else to do, but don't make it some all-important mantra. – Bill K Mar 29 at 3:52
show 11 more comments
vote up 43 vote down

I am a programmer and I do not need to know how to write a gramatically correct email. I also do not need to communicate with a customer on the phone - it is someone else's job. The only skills that matter are related to programming and nothing, nothing else.

Hate this!

link|flag
6  
what do you mean about grammar it doesn bother me atall – JasonFruit May 22 at 20:20
show 1 more comment
1 2 3 4 5 7 next

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.