vote up 175 vote down star
199

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
12  
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 '09 at 13:17
94  
@ Jon Skeet - That would be the pet peeve of coding a solution before understanding the requirements? – Dan Malkinski Jan 8 '09 at 15:08
24  
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 '09 at 17:07
4  
@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 – johnc Sep 23 at 19:26
show 8 more comments

190 Answers

prev 1 3 4 5 6 7 next
vote up 1 vote down

.NET != C++

Saw this yesterday: a programmer wrote some code in VB.NET which passed all parameters ByRef between a few dozen functions. I asked him why he wrote it in that style, and he commented that .NET would make a complete copy of every array parameter before it passed it to another function. I correct him, "yes, it'll make a copy... of the pointer, but not the entire array".

He fought with me on that fact for a few minutes. I decided it wasn't worth my time to "fix" code that wasn't broken, so I left it as is.

link|flag
show 3 more comments
vote up 43 vote down

People who constantly rant about "Code should have more comments in it". If developers spent more time paying attention to sensible naming and a reasonable approach to problems, most comments would be unnecessary. If the code requires comments to explain it, then there is a good chance the code has been badly written.

Developers who concatenate loads of method calls inline eg:

int.Parse(MyMethod(GetValue1(someString, someInt).Property1.ToString(), Convert.ToInt32(GetValue1(someString, someInt).Property2), ((ObjectType)AnotherMethod()).PropertyValue).ToString());
link|flag
2  
The app I'm working on at the moment has many comments of the "// Increment counter" type. Duh. What would be helpful would be an occasional statement about the intent of the code. – Andrew Kennan Jan 9 '09 at 1:38
5  
In regards to your comment on comments(HA!). Some of this may stem from the fact that at my uni, your code gets a bad grade if it's not heavily commented. Most of the stuff is so simple that you can't NOT leave comments like "//Increment counter" for fear of a point reduction – prestomation Feb 27 at 15:14
1  
I don't usually see the inane comments, but I'd like to see more that say why you are doing it a certain way so I know if I should just rewrite your crap, or if you had a clue and I should search for meaning (Actually if you had a clue, your comment would have called out the meaning!) – Bill K Mar 29 at 3:58
1  
@apocalpyse9 - I feel your pain. There is however one example when one comment per line is a good idea: when you're a beginner programming in assembly. :) – Joren Sep 25 at 9:34
show 2 more comments
vote up 6 vote down

In web development, ignorance of proper input sanitation and SQL injection vulnerabilities. In ColdFusion, for example, the language is so easy to learn that it practically welcomes new "programmers" to make this mistake. Much of the beginner documentation reinforced bad usage patterns early on as well. All of the languages that target web development have some kind of SQL injection prevention available, either through a sanitizer of a way to generate prepared statements, but many developers don't know what SQL injection is much less how to prevent it from happening. This leads to defaced sites, increased distribution of malware, and a general tarnishing of the image of web developers as second-class citizens in the programming community.

link|flag
vote up 4 vote down

(.NET specific)

Myth: System.Decimal is a fixed-point type.

Reality: System.Decimal is a floating decimal point type, as opposed to System.Single/System.Double which are floating binary point types.

It didn't help that the MSDN documentation was wrong until .NET 2.0. Many people stood by the documentation, regardless of the fact that the exponent is clearly part of the value :(

link|flag
show 2 more comments
vote up 30 vote down

I'm surprised by how many professional programmers are weak in math. Growing up I just thought that being good at math was a prerequisite for the job. Everyone I knew who was interested in computers was also good at math, so I just made a mental connection without realizing it.

link|flag
14  
I SUCK at math. It's WHY I am a programmer. I get the machine to do the math for me. – Genericrich Jan 11 '09 at 6:15
13  
I must disagree here. There is no rule that says your math skills must be excellent to be a proficient programmer (or even an excellent one). I'd say that a logical mind, a keenness for problem-solving and patience have been far more valuable for me than mathematics. – Dave R. Jan 11 '09 at 16:08
8  
I'll second this one, and add that I can't stand people who are proud of sucking at math. Those people end up producing convoluted or plain stupid solutions to problems which would benefit from a little mathematical thinking. – Rob Jan 17 at 7:32
8  
@jcollum: Logic is a branch of math, and you just needed to use it to try and declare that you don't need to use it. – Bill the Lizard Jan 28 at 3:15
5  
In 30 years of programming, I've needed very little math. But the last time was in a job interview - I've been told I can't code because I couldn't combine the properties of the integers with positional notation and permutations - all of which have been useless to me for 30 years. – John Saunders Mar 15 at 10:12
show 10 more comments
vote up 121 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 '09 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 '09 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
1  
I would actually further divide phase 1 into 2 sub-phases: (1) complete ignorance, meaning: when a threading-related error actually occurs, the developer scratches his/her head and thinks, "Weird, what in the world could have caused that?"; and (2) ignorance of how threading actually works, which results in a tendency to label any mysterious problem a "threading issue." – Dan Sep 24 at 2:02
show 9 more comments
vote up 4 vote down

"It seems to work for me, so I won't bother reading manual/specification to do it correctly"

This is why HTML, JavaScript, feeds and HTTP (caching, MIME types) are in such sorry state.

link|flag
show 1 more comment
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 '09 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 '09 at 13:22
show 3 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 '09 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 18 vote down

My pet peeve around here is treating crashes as "user errors".

We work with quite complex data structures and GUIs, and sometimes users put in the data that triggers some edge case in the model, or uncovers a bug in the code. The program coredumps. Some of my co-workers simply tell the user not to do it any more - end of the problem.

In my opinion, every such case needs to be debugged, and the crash turned into an error message telling the user what's wrong and how to fix it. It's not the user fault if the model can't handle rates below 1% - the model needs to tell the user about its limitations.

link|flag
2  
If possible, write a unit test that catches the bug. Such edge/special cases can indicate insufficient testing, so a good first step can be to see whether or not the corresponding unit test fails with that input. – Rob Jan 17 at 7:38
vote up 6 vote down

There's a couple of things. One is the same thing you pointed out - lack of proper understanding of Unicode, assuming that all text is represented by a lit of single-byte characters (as pointed out by the powers-that-be).

The other is developers who don't take the time to actually understand what something does or how the specs are defined, but just work simply by trial and error until they find something that works for their particular position and just use it. Then get surprised when it fails under different input (and often will go off and add convoluted if-else clauses, after more trial-and-error work of course, to handle all these anomalous data).

Oh, and as a corollary to the above - IE. There are so many elegant, powerful techniques that you have to abandon simply because of poor implementation in that browser - and when they do get fixed (it's getting better, I'll admit) you still can't use them for another few years until the majority of the public stops using the buggy versions. IE 8 looks like it will finally allow you to have a cookie string of more than 4k without effectively deleting all cookies - but how long until one can write code without having to guard against it?

link|flag
2  
About your first statement... I present to you, the strlen function in PHP. Try print strlen('я') for instance, it will return 2. print strlen('我') will return 3. Why? Because it counts the number of bytes opposed to the number of characters. This can get REALLY annoying. – Erik van Brakel Jan 8 '09 at 13:40
show 1 more comment
vote up 68 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 '09 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 '09 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 41 vote down

Programmers who build XML using string concatenation.

link|flag
6  
Start with an infinite lazy string and remove the characters you don't need. – Pete Kirkham Jan 20 at 22:53
1  
@Greg D: I hope you fixed it to use XmlWriter or another XML API. "XML is not String - note the difference in spelling" is a good motto. – John Saunders Mar 15 at 10:09
1  
+1! I'd add to that and say "Programmers who build Javascript, SQL, HTML, or any other 'plain-text' content" as well. – Jacob Jun 20 at 23:12
show 5 more comments
vote up 10 vote down

I call it "coding from the hip", but it really is a specific category - a better name may be "overimperative programming" or "structureless programming":

The code is structured as one or more function implementations (e.g. of the main function in a C program, or of a set of user interface event handlers in a .NET end user application). The code inside those functions was written line by line, by determining the next thing that needs to be done, writing a line of code to achieve that, and repeating this until done. When a case distinction needs to be made, an if statement is added, then, line by line, all the code for what happens if the condition holds, then the else clause is added, then the code for the then part is copied over and modified until it is the code for the else part. So complex condition checking appears as an arbitrarily large tree of nested ifs. Iterations were traditionally programmed by jumping back to some point with goto, then tweaking until everything seems to work, but Dijkstra's protest againt this has become too strong so now the tweaking is done with for and while loops. All iterations are programmed by explicitly creating arrays for the data to be used for each case, then filling the array using an integer index variable (without explicit numbers we lose track of where we are, don't we?) followed by another such loop to read and apply the data. More complex data are stored in multidimensional arrays or arrays of arrays and structs; other data structures are absent, pointers are a mahjor source of bugs, when used at all. All variables and arrays are treated like an assembly language writer's memory locations, so they are all global, have meaningless names, or incorrect ones due to being randomly repurposed. Correcting index bounds and array overflows are the programmer's main sources of debugging time. Rewriting and extension code is done by scanning for points at which a change or extension is required, then adding and copy-pasting statements and ifs in the usual way, then tweaking the result until it appears to work.

This is not always a result of ignorance: sometimes the programmer got so little time, or so incrementally, that there wasn't time to think about design, Nor is it always bad: if the resulting code is small enough, there may be nothing wrong with it.

The main danger of starting out programmers on a diet of assembler or C (or an similar subset of some other language) is that they fail to proceed beyond this stage. Most of the well-known programming improvements techniques (no goto, sensible naming, advanced data structures, structured programming, libraries with APIs, object-oriented programming, functional programming, layered architecture, patterns, refactoring, etc.) are attempts to help them do this, either by incremental fixing or by starting out in a radically different way.

link|flag
show 1 more comment
vote up 58 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
6  
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 '09 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 '09 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 6 more comments
vote up 19 vote down

Another Java/.NET one (this SO question is just great for letting off steam...)

Myth: "Value types live on the stack, reference types live on the heap"

Reality: It's more complicated than that.

C# doesn't actually differentiate between the heap/stack behaviour, and the CLR could potentially do funky things with objects which can never escape from the current method. However, taking existing C# behaviour and ignoring special cases like stackalloc and captured variables for anonymous functions and iterator blocks.

First let's talk about variables. Variables have a context - either they're local to a method, or they're static, or they're instance variables as part of either a value type or a reference type.

  • Static variables are always on the heap.
  • Local variables are always on the stack. (Remember I'm ignoring captured variables here :)
  • Instance variables live in the context of their container. For a reference type this will always be on the heap. For a value type it depends...
  • The value of a variable is never an object. If it's a reference type variable, the value of the variable is a reference. The reference may well be on the stack (e.g. if it's a local variable) but the object it refers to (if it's non-null) will be on the heap.
  • Value parameters are on the stack.
  • Reference parameters (i.e. those with ref/out) will vary by caller.

The value of the variable is stored wherever the variable conceptually lives. So an integer variable which is part of an object will always be on the heap (contrary to the myth). A variable which is part of a value type will live wherever that value type instance lives - which may be on the stack (e.g. if the containing instance is the value of a local variable) or on the heap (e.g. if the containing instance is the value of an instance variable in an object).

That's probably a very confusing explanation because I'm rushing to get to lunch, but basically the myth is far too simplistic, partly because it doesn't talk about variables (or more generally expressions) at all. The context is very important.

link|flag
1  
Why do you (again) say "in Java and C#" and then only showing examples of how C# can trip you up? Could you show an example of how this common misunderstanding has caused problems in java code as well, or not list Java in your title? – Bill K Mar 29 at 4:04
1  
@BillK: In Java people will still be tripped up if they either think that the object is copied (and therefore independent) or if they think that an object is passed by reference (and therefore assignments to the parameter variable are visible to the called). – Jon Skeet Mar 29 at 7:43
1  
Since you're Jon I assume I responded to the wrong post, but I meant in Java, the common understanding is "Newed" objects go on the heap, everything else (pointers to objects & natives) on the stack. I was wondering how this simplistic understanding could confused Java programmers and cause errors. – Bill K Mar 29 at 23:14
show 17 more comments
vote up 177 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
7  
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 '09 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
6  
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 174 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
10  
or bool isValid = percentage >= 0 && percentage <=100 ? true : false; – agnieszka Jan 8 '09 at 13:27
46  
i've seen better though: if(valid == true) return true; else return false; instead of return valid; – agnieszka Jan 8 '09 at 13:28
12  
Most IDEs allow setting a breakpoint with a condition. – Pete Kirkham Jan 20 at 22:44
10  
@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 25 more comments
vote up 60 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 '09 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 '09 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 '09 at 20:02
3  
Personally, I don't find it any harder to read. – Bernard Jan 9 '09 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 69 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 '09 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 '09 at 2:23
1  
try{ ... } catch () { /*catching exceptions is for communists*/ } – Arnis L. Jun 6 at 22:05
1  
-1 for first (i disagree). +1 for 2nd (i agree) – Ian Boyd Jun 20 at 23:18
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 3 more comments
vote up 51 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 '09 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 '09 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 '09 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 195 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 '09 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 '09 at 0:23
5  
@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
11  
@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 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
10  
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 '09 at 13:27
7  
My gosh I could rant for hours about the stupidity of the "constant on the left" mania... – DrJokepu Jan 8 '09 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 '09 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 4 vote down

With large datasets being moved between systems in XML, not understanding the merits of SAX over DOM, and the performance implications of selecting DOM simply because it is easier to implement. I have seen a number totally unnecesary performance bottlenecks and system failures over this, with XML getting blamed rather than the lazy parser implementation.

link|flag
vote up 6 vote down

I recently became aware that a lot (and I mean a LOT ) of programmers are not familiarised with the inheritance concept and have absolutely no idea why it is useful.

link|flag
8  
Then again, some people are way too familiar with the concept and insist that everything be superclassed, or have an interface :P – Alex Fort Jan 8 '09 at 14:39
2  
Suggesting that everything should have an interface is way different than everything being subclassed. If everything is [somewhat decently] bound to an interface, there aren't many downsides--if the analogy of inheritance is overused, it often leads to a much, much worse design. – Marc Bollinger Jan 8 '09 at 17:04
1  
Pete, if you follow that train of thought you will be able to conclude that we don't need computers because paper worked just fine ;) – Sergio Jan 22 at 9:58
show 4 more comments
vote up 330 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
19  
Well, it is boring, but definitely not unnecessary. – Clayton Jan 8 '09 at 13:04
22  
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
4  
I agree that a "good" level of testing is valuable. But far too often when I hear words like yours, they come with the belief that there must be a test for everything, that a desirable goal is 100% coverage. That to me would be a most undesirable goal, for it would indicate a codebase that was utterly ossified and incapable of the simplest transformation beyond what it was. Again testing has it's place, but only as far as it helps the application thrive. Too many people place tests above the application. – Kendall Helmstetter Gelner Jul 29 at 2:37
show 11 more comments
vote up 118 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 '09 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 '09 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 353 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
39  
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 '09 at 13:12
6  
What if you know everything, like Jon Skeet? ;) – Coincoin Jan 8 '09 at 13:30
5  
Then you write books.. – Damien Jan 8 '09 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 16 vote down

I agree on the byte<->character issue. There are even several issues in this:

  • "I want to store a byte[] in a String, how do I do that?"
  • "I want to store Chinese characters in a database, but only ever get <?>"
  • "I use UTF-8, but still only get <?>"

The last one is very unfortunate because it comes from half-knowledge. The usual reason for this is that while they use UTF-8 at one point they completely ignore all other places where the encoding would matter.

link|flag
show 2 more comments
vote up 115 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
prev 1 3 4 5 6 7 next

Your Answer

Get an OpenID
or

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