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 2 3 4 5 7 next
vote up 8 vote down

Using a collection of If conditions instead of regular expression. I already saw a +1000 line function that could be reduced to 2 regular expressions.

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

The idea that "intuitive" interfaces can actually exist. Sorry, but every interface is learned.

Although it is true that this idea usually comes to me from a business analyst...

link|flag
vote up 18 vote down

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 (analysis, testing, planning, documenting)".

"I just get the job done. I don't worry about the fact that someone will have to continue to maintain this code, or that business rules can change".

How did I come to think developers are ignorant of thoroughness? Because I've made plenty of those mistakes myself!

link|flag
show 1 more comment
vote up 29 vote down

Use of inheritance when composition or external functions are more appropriate

(I would have thought someone else would have brought this up by now, but I browsed through the four pages already up and didn't see it - apologies if I missed it.)

It is still so common to see someone think along the lines of, "I need a string that also lets me do X", so they inherit from string and add their X method.

Or, I want a queue class that works in a multithreaded environment. Inherit from Queue (or whatever you have) and added overloads that aquire and release locks.

In the first instance it is more appropriate to have an free function (or static a method in languages that don't have free functions) that takes the string as a parameter (along with any other parameters) and work with the public interface.

In the second, write your threaded queue as a new class that contains the raw queue class, and expose the interface that is appropriate. Sometimes this involves a lot of forwarding methods - but that in itself should not be the reason for chosing inheritance.

Inheritance should be reserved for the case where your new class has a superset interface (could be the same), and for callers who only see the static type of the base class the behaviour should make sense (so it is substituteable in the Liskov sense). Furthermore, at least some (some would say all) of the method would necessarily depend on some of the protected state/ interface. That is - if you could implement all new methods using only the public interface, you are not changing the behaviour of existing methods for base class clients, and no new state is introduce, why do you need to inherit?

As an aside, some languages support constructs such as C#'s extension methods, which can also be more appropriate in some cases, and also open to mis-use - but that's another subject.

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

So far in my years of development I have found that I resent most those programmers who can't keep deadlines. It's OK to go over bevcause of some unforeseen trouble, but to look into the eye and say:"It will be finished tomorrow" and then start coding next week is not acceptable.

link|flag
show 1 more comment
vote up 15 vote down

People who still use Hungarian Notation for variables, like strName and dblAmount, in strongly typed, reflection-rich languages like c# and java, even if these days there are powerful IDEs and intellisense and etc.

link|flag
2  
Hell yeah, this needs to die. It still creeps in with UI components too and that's generally accepted and it sucks. I think the _ before private fields is hungarian and needs to go, but it's debatable. – jcollum Jan 20 at 22:45
1  
What about the purpose of not having to go back to a variables declaration to find out what kind of representation it uses? – Sebastian Ganslandt Feb 25 at 13:04
1  
I personally find shorter names much better than TheOneObviousButALittleLongNameForAVariable. – ldigas Feb 25 at 17:21
show 4 more comments
vote up 4 vote down

My pet peeve, one that I care for and nurture has got to be "Well we have done it like that for years". Technology moves on, so should programmers. I don't mean use the new version because it is the new version. I used to hear it a lot from a VB programmer that clung onto VB6 with a vengeance. He didn't want to leave the bloated, dated and very slow VB app that he had due to it being perfectly good when it wrote it X years ago.

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

My biggest pet peeve is developers who think that because they put together a solution for small company x that

  • said solution will scale to all scenarios
  • they are now architects, where real architects (I'm not one) are a whole other breed

A smaller subset is developers who are too lazy to learn and insist on coming to a senior (read: busier) developer to get them to solve ALL their problems. (key point ALL, of course they should rely on the hot shots for help with hard problems)

link|flag
vote up 4 vote down

Lack of focus on the customer and their needs.

If I'm aspiring to be a professional then there are many soft skills I should acquire along with the technical skills. Formost among these the ability to develop an effective working relationship with my customer, whether internal or external.

I might write the best code in the world, but if it isn't what the customer needed then I'm not doing a professional job.

My pet peeve is how quickly we all forget the customer as soon as we click on that icon for our IDE.

link|flag
show 1 more comment
vote up 16 vote down

Programmers who write help pages thus:-

This page allows you to add a foo. To add a foo, enter the name of your new foo in the field labeled "Foo Name". Select a the type of the foo from the list and click "Save".

link|flag
2  
This can be appropriate in some cases, but yeah, 99% of the time, someone's written only the super-obvious in the docs, and completely left out the important stuff like "what a foo is" and "why". – MGOwen Jul 14 at 1:02
1  
It's even worse when it's the technical writer who is writing help pages like that. – Daniel Vandersluis Sep 23 at 21:00
1  
You've just given me an idea for a compression algorithm that would work well on the MSDN library – finnw Oct 7 at 14:06
vote up 10 vote down

In C#, when Visual Studio's default names are left in, and I have to figure out what button23 does, and why it reads from TextBox13 by flipping back and forth between the code and visual views of Form1.cs.

link|flag
vote up 3 vote down

Overengineering, usually to make unnecessary optimizations.

These are usually done by seniour developers. These usually add a lot of complexity with adding minimal (if any at all) speed improvements. What's worse, is that after these are done, someone other unlucky developer gets stuck with the "optimized" code.

link|flag
vote up 24 vote down
...the single worst subject of widespread ignorance amongst programmers...
  • "the business domain doesn't matter" aka "the business reasons don't matter" aka "the business is none of my business"
link|flag
1  
@[jcollum]: i assume you're joking - failure to understand the business domain can be catastrophic; a good understanding of the business domain will make you and your work much more valuable ;-) – Steven A. Lowe Jan 21 at 3:23
1  
@Steven - what is perhaps more shocking is the extent to which the people who run businesses often have exactly the same attitude. Anyone with an MBA can supposedly run any division of any business - no understanding of the domain required! – Earwicker Jul 28 at 22:12
show 2 more comments
vote up 2 vote down

Displaying a message box instead of raising an exception when a method fails to do it's job. For example, a Save() method in a Form simply showing a message box, instead of raising an exception, because the user hasn't filled in some required field, etc.

Because they don't raise an exception, any code calling the Save method has no freaking idea that the Save failed or why it failed!

Typically at this point I'd expect at least one person to say that exceptions should be used "exceptionally", i.e. rarely. If you follow this philosophy then you still need some way to tell your calling code that you failed, which results in changing your method signature so it returns failure details either as a result or an out parameter, etc. And of-course your calling code will need to tell it's calling code that it failed and so on. Ahh hello world, this is exactly what exceptions are built for!

Maybe this thinking doesn't work in all frameworks (like web, etc) but in Delphi Windows applications it's perfect as unhandled exceptions don't crash the application, once they travel back to the main message loop the app simply shows a presentable message box to the user with the error details, they click OK and program flow continues to process messages again.

link|flag
show 4 more comments
vote up 5 vote down

"All I need for debugging is a print statement."

link|flag
1  
Ever see "the only debugging tool that works to debug this is writing out to a port on the processor that turns this LED on or off" – Joshua Jan 16 at 16:21
show 1 more comment
vote up 4 vote down

if .... else-if .... else-if .... else

with a nesting hierarchy of four to ten levels, spanning several thousands of lines.

Your complete permutation of all branching logic in a method/function.

Hello, ever heard of polymorphism? Wait, you don't even know how to derive classes?

link|flag
show 3 more comments
vote up 189 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
23  
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 80 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
4  
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
5  
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
3  
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 12 vote down

Short "else" clause after a long "if" clause, especially when the else just throws an exception. I prefer to detect the error case first and throw the exception which tends to limit nesting of subsequent code.

link|flag
1  
I totally agree, it is about testing exceptions and not the normal case, stackoverflow.com/questions/114342/… – hlovdal Feb 13 at 22:36
vote up 2 vote down

Programmers that have absolutely no idea whatsoever what "malloc" means/refers to.

link|flag
vote up 7 vote down

I have three: Web programmers who don't know HTML and Javascript, but instead depend on frameworks that they don't really understand - they don't know what the framework is producing on the client.

Application programmers who don't understand that the computer doesn't run their source code (they don't understand the compilation/interpretation step)

SQL programmers who don't write SQL - ie. they write procedural languages using SQL syntax.

I suppose I could go on forever with this, but those are the top three

link|flag
vote up 12 vote down

Selective Standards Religion

A developer will crusade for the standards of their chosen technology stack, and completely ignore or even disparage standards outside their primary focus.


Web Developer: "Most DB people are clueless! They don't know the first thing about CSS. Most just use tables to position everything! Haven't these people heard of Standards?"

"What difference does it make whether I use the SQL standard or Product X's proprietary command to retrieve the report data? I get the same result, don't I? I don't even need to worry about the database - my ORM deals with all that."


Backend Developer/DBA: "These UI scripters can't even spell 'relationship'. If even one of them knows the definition of third-normal-form, I'd be stunned."

"The scripters keep nagging me about changing my sales report pages to support their niche browser - why can't they just get with the program and use Browser Y?"


Note - these are examples, and are by no means comprehensive.

The moral of the story is to understand that most technology areas have standards, and you will only improve your skills and value by learning them. Even when you choose to go against the standard, you will be doing it from a position of knowledge, not ignorance.

link|flag
vote up 4 vote down

Far and away: construction-time optimization.

I can't count the number of times that I've encountered early loop termination, strange handling of variables, direct access to class members, breakdown of hierarchies, etc... generated in the name of optimization. This seems to be one of those things that every book on programming mentions and that nobody follows.

People, if you're writing a net-centric app, or doing heavy DB accesses, or waiting for a user, particulary in multithreaded apps, you will be spending FAR more time waiting for networked I/O than processing data. With that kind of performance profile, any sort of optimization at all will be essentially unnoticed in terms of performance. It's much more important to write code your mother can read. In this mindset, optimization is fine - you can return early from that linear search through a list if the looked for element is the second one you see - but it must be simple and obvious. Think of how much money and stress you can save yourself, and your company, if any time person B picks up person A's code, person B can understand it on the first read.

link|flag
vote up 14 vote down

Unintuitive variable names!. God I hate it.
Have you ever read someone's code, (if it's looking for a bug it's even worse), and wondering what the hell "nfi" (NumberFormatInfo), "par" (parameter), "mkAtt" (make attribute) mean? I even saw XML yesterday containing data with attributes n and v (for name and value) and a comment above that n stands for name and v stands for value...
people, if you've got intellisense, why are you so afraid to write a full, understandable name? I admit I'm a bit obsessed with nice variable names, but it's just because it's sooo easy to read if you write your code properly.

I prefer

foreach (string parameterId in idsToNames.Keys)

to

foreach (string key in parameters.Keys)

or

foreach (string p in pars.Keys)
link|flag
2  
well it confuses me if i read the part inside foreach and someone uses methods of p and i have no idea what p is (parameter, part, position, point?) until i get back to the foreach line, check that it's an item from pars and then check what pars keys are (that they're for example parameter ids). – agnieszka Jan 9 '09 at 11:00
1  
Well, short variable names do have their place. ssdl-wiki.cs.technion.ac.il/wiki/index.php/… discusses this. – Brian Jul 10 at 17:29
show 4 more comments
vote up 300 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
48  
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
74  
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 11 more comments
vote up 13 vote down

Programmers that are commissioned to write an enhancement, but end up rewriting the program because they "don't like" the way the original was written.

link|flag
2  
Dear lord, a thousand times, yes! Especially for reasons of language bigotry. It's even better when the "rewrite" is of poorer quality. – Rob Jan 17 at 7:49
3  
You are implying that the original did not need to be rewritten. What if the need for the enhancement shows that a refactoring is warranted, and that the resulting (refactored) program would be better designed than the original with a hack applied on top? – Ether Jan 19 at 18:36
2  
He didn't say refactored; he said rewritten. There's a difference. – JasonFruit May 22 at 20:40
vote up 3 vote down

Most programmers don't seem to realize that any database product based around SQL is not a relational database. Somehow the whole concept of a relational database gets smeared because of how awful SQL is. Web developers now want to use new untested database paradigms because they just can't stand the idea of using a "relational" (that is, an SQL-based) database. Go ahead and read the SQL standard and try and find any occurance of the word "Relation" or "Relational"

In reality, there has never been a mainstream relational database. There's a couple research programs (like rel) that implement the relational concepts. But it's all got this kind of grampa's suspenders air about it, that nobody wants to touch, because it's just not hip to be mathematically and logically rigorous nowadays.

link|flag
show 4 more comments
vote up 4 vote down

Lazy naming conventions

I can't stand it when programmers try to take short cuts when naming their methods and variables.

AA is not an acceptable variable name.

Being descriptive saves time later when you have to re-read your code or if someone else has to figure out what you wrote.

PS. Related to this is putting good descriptions infront of your mthods. You have no reason not to in VS2005+ it practically does it for you if you hit ''' infront of the method name.

link|flag
show 1 more comment
vote up 6 vote down

Inexperienced programmers are apt to believe the terrible fallacy that there is such a thing as placeholder code, which they dutifully demarcate from the rest of the project with a giant TODO comment. Such code is generally rife with half-assed algorithms, lousy variable names, random comments, ugly formatting, and scads of corner-case bugs.

What these programmers have yet to realize is that on a commercial software project, the schedule pressures will eliminate any time to go back and clean up that code. When the testers find bugs in that functionality, the programmers will have only enough time to apply the minimally-invasive fix for each bug. Eventually, that placeholder code will have survived weeks of testing and therefore deemed a low priority for refactoring.

Nobody expects beautiful, bug-free code. Just try not to commit any code to the source tree that you wouldn't want to ship in the final product.

link|flag
5  
I have been doing software for 15 years and I believe in placeholder code. Its the correct way to code for Agile and TDD. Just write the minimal amount of code to meet the requirements and unit tests. If the placeholder has bugs it isn't being tested enough. If its O(n-cubed) performance, that's another agile development pass to fix, and if its slow, at least it works. – Zan Lynx Jun 12 at 17:42
show 2 more comments
vote up 4 vote down

Reinventing the wheel when microdesigning a components of an enterprise application. Examples from J2EE apps : various custom ways to read a property file, component-specific custom made logging, database connection pool written from scratch, various attemps to custom build an authentication mechanisms, etc. Always wondered what was wrong with standard means we already had for these tasks...

link|flag
prev 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.