vote up 8 vote down star
2

What makes a bad programmer? I work with about 30 developers and everyone has strengths and weaknesses, but I can't say that any of them fall into that "bad" programmer category. So what really makes a bad programmer?

flag
show 6 more comments

closed as subjective and argumentative by Keith Oct 1 '08 at 8:33

37 Answers

1 2 next
vote up 34 vote down check

I don't think I could define a bad programmer, but I can name some characteristics:

  • Non passionate about programming
  • No attention to detail
  • Does not care or want to understand what users need
  • Lack of problem solving skills
  • Does not know how to learn by himself/herself

I suppose the list could be much longer

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

Do you want a list? easy: http://thedailywtf.com/

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

Related question here.

(Some pretty good info about being a good programmer)

link|flag
vote up 5 vote down
  • not interested in learning or improving

  • cut-n-paste code style

  • tangled 400 line methods with multiple levels of if's, while's multiple exit points.

link|flag
vote up 4 vote down

It's probably not specific to programmers at all. i'd say most bad programmers would just be bad coworkers in any job: don't want to learn, don't want to reckognize its weaknesses, don't want to follow best practices, don't want to cooperate, etc.

A person could not be a top gun in programmings's specific skills like problem analysis, abstraction, using building blocks to create more complex things and concepts, but not have those personal flaws, and gradually become a pretty good programmer (but I have a bias about this as I strongly feel anyone can pretty much learn anything at some good level with the adequate environment, will and dedication).

link|flag
vote up 5 vote down

Someone who is stubborn, egotistical, shows no enjoyment of programming and is not inclined to better themselves at the craft. Does not care about feedback, does not communicate well with others. Someone who thinks they are a great programmer-- gods gift to programming. Knows how to massage the rules/boss/whatever to make him immune or difficult to criticize. Plays politics to defend bad decisions (or just to prevent them from being questioned). Intimidates newbie programmers as "beneath them" to maintain a dominant position in the organization.

link|flag
vote up 2 vote down

Utter failure at understanding encapsulation, data hiding, modularization, and/or inheritance.

As much as messing up within function bodies is annoying, it's the ability to mess up the entire structure that really lands the whole group in trouble in the long run.

link|flag
vote up 4 vote down

Bad Programmer: Somebody a standard deviation or two below average at your workplace.

A bad programmer where you work could be great somewhere else. It all depends.

link|flag
vote up 10 vote down

Ask a better programmer than yourself what he thinks of your code.

Nobody is able to evaluate code above their own level, or out of their own experience. If you are an OO programmer, you probably won't be able to tell good functional code from bad (assuming you leave out the obvious).

I guess I could go into the obvious:

  • Writes code that is not easy to change.
  • Writes code that is not easy to read.
  • Writes code that is not easy to understand.
  • Writes code that is not DRY (Don't repeat yourself)
  • To a lesser degree, writes code that does not execute properly (If your code is easy to read, understand and change (and is DRY), then I don't care if it runs perfectly, I'll take it over correctly working garbage any day.)

    If you can do those, you are a good programmer. If you don't know what some obscure syntax or method call means, you might be unexperienced in that language, but it has no impact on what a good/bad programmer you are.

    If people look at you funny when you explained how your fantastic cool syntax saved 3 lines of code, you probably don't quite get it yet--keep at it though.

  • link|flag
    vote up 1 vote down

    Does not work well in a team (when they are on a team) - For voting

    link|flag
    vote up 4 vote down

    Someone that does not test their code - for voting

    link|flag
    show 1 more comment
    vote up -2 vote down

    Writes code with High Coupling and Low Cohesion - for voting

    link|flag
    vote up 1 vote down

    Opts to write hard to understand code in place of simple code. - for voting

    link|flag
    vote up 1 vote down

    A bad programmer? Maybe someone who spends their time trolling for opinions when they could be brushing up on their existing skill set or trying their hand at a new language? ;-)

    link|flag
    vote up 0 vote down

    Writes code that is not easy to refactor (i.e. methods that do too much and know more than they should) - for voting

    link|flag
    vote up -1 vote down

    In my opinion the worst is someone who creates work for other people, especially by releasing bugs which they cannot have tested for and are unable to debug themselves. I'm convinced some people are walking, talking bug factories.

    Also, unwillingless to learn and bad team skills as mentioned by others.

    link|flag
    vote up 0 vote down

    Someone who checks in code without integrating locally and running tests first (someone who breaks the build regularly). - for voting

    link|flag
    vote up -1 vote down

    Someone who forces their opinions on others without the experience (on the subject) to back it up. - for voting

    link|flag
    vote up -1 vote down

    Someone who blindly promotes methodologies, practices, anything without ever questioning it. (To prove yourself right, you must try to prove yourself wrong.) - for voting

    link|flag
    vote up 1 vote down

    I work with about 30 developers and everyone has strengths and weaknesses, but I can't say that any of them fall into that "bad" programmer category

    Count yourself blessed. You'll know one when you see them!

    link|flag
    vote up 4 vote down

    "clever code"

    You know what I mean. Smart programmers who write witty or clever code, that derails their coworkers.

    Some possible give-aways (C code):

    • using ^ in an if statement conditional
    • using !!(something)
    • using a comma operator in an assignment
    • using any of these in a return statement

    I'm sure you can think of more...

    remember to hate the behavior, not the programmer

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

    A programmer who, when added to a project, results in a net loss of productivity for the team. Years ago we called them "NNPs" (Net Negative Programmers) from an article in (if I remember correctly) the American Programmer journal.

    link|flag
    vote up 0 vote down

    Fire Your BEST People, Reward the Lazy Ones! - http://www.testearly.com/2007/08/17/fire-your-best-peoplereward-the-lazy-ones/

    Problem Solvers vs Problem Preventers!

    link|flag
    vote up 1 vote down

    Somebody who isn't willing to take advice from other programmers or team members, and constantly improve themselves.

    I especially don't like it when I take the time to thoroughly review someone's code, giving them lots of useful feedback (often related to style and maintainability), and they dismiss the feedback as low priority because it doesn't affect how the code runs.

    Why bother with the review process at all?

    link|flag
    vote up 4 vote down

    In my opinion, a bad programmer possesses following "abilities":

    • Do not use google for simple questions(i.e. always ask other people simple technical question that google can answer easily)
    • Write code that no one can read
    • It's always others' fault when code breaks
    • Have no idea how to use source code control system
    • Writes the whole application in one big main() and more...

    Basically, any programmer who doesn't like to learn, doesn't care about others, and doesn't care about his own code is bad programmer.

    link|flag
    vote up 0 vote down

    In a team project environment, a bad programmer isn't someone who is inexperienced, nor is it someone who has the typical beginner bad habits.

    A bad programmer is someone who lets their programming get in the way of the bigger picture of problem solving, and is thereby doomed to be ineffective.

    Examples:

    • Prioritizes tasks based on personal preference (when under a deadline).
    • Seeing other team members or co-workers as nuisances or obstacles
    • Fixating and obsessing on a task without relenting especially when there are more important things pending action
    • Opting for expensive database calls in order to make coding easier.
    • Opting to write a more complex and time consuming algorithm due to personal preference.

    A programmer with bad habits can always improve his skills. But a fundamentally bad programmer will always be ineffective in a team environment and thus a liability to any project no matter how good they are at coding they.

    link|flag
    vote up 1 vote down

    A coder that takes no pride in their work.

    link|flag
    vote up 2 vote down

    The most dangerous programmer is one who overcodes everything -- the programming machine. Someone who has no concept of value or purpose -- someone who grinds out code without really thinking. They can't use an off-the-shelf component -- they have to reinvent it.

    This is often compounded by an absolute disregard for anything outside their favorite technology.


    We're talking about SOA and how we'll define some basic services and build components to implement those services. And we'll use an ESB to provide those services.

    The most dangerous programmer says that instead of a ESB and resuable services, he'll built controls that can be plugged into Visual Studio that will -- in effect -- do the same thing as an SOA. The services will be replicated in every desktop application, but controlled through some kind of Visual Studio blah blah blah; every change will be magically synchronized through the desktop development environment. I guess by constant redeployments or something.

    What?

    SOA isn't the hobby of the most dangerous programmer. Every conversation is derailed to a point where we're paralyzed by a split in the organization.

    link|flag
    vote up 0 vote down

    I have to agree with Doug T about many of the things that he said. The ego full programmer that thinks he is the worlds gift for programming and does not listen to feedback, this is a bad programmer. This can often be the mavericks or the one man coding machines that believe they can do it all themselves.

    Many of the aspects that make someone a bad or good team member will also make the person a good or bad member of the team. This will include their attitude and how they address problems. If they are constantly putting people down, laying balm on everyone else and again not listening to others. Other things that can make a bad team member can also apply such as not getting things done or flaking out on work also might be a strong sign.

    Several of the responses highlighted the need for a programmer to be willing to learn or caring about the problem (users too!). To me this is not what makes a bad programmer but what separates a good programmer from a programmer that is going to become great. I am going to leave it at that because pretty much anyone on here is likely already on that track.

    link|flag
    vote up 10 vote down

    I've been programming for quite a long time and some things I describe here are actually things I've done in the past and / or saw other people doing.

    I frankly believe a bad programmer is someone who creates friction.

    Friction in the team:

    • By not following the standards (from project workflow to coding standards) and being unable to create new or improve the existing ones.
    • By complaining and blaming others while creating havoc in code
    • By being unable to undestand and / or listen to feedback and always thinking he is right
    • By not listening to reason and wasting no time to give logical reasons for his choices

    Friction with the client

    • By putting using "exciting" new technology before actually implementing project requirements.
    • By miscalculating delivery times.
    • By not understanding / taking into account a minimum level of usability when programming

    Overall Friction:

    • By never listening
    • By never apologizing when necessary
    • By never speaking his mind out (when his opinion is crucial)
    • By never bending (just a little) to fulfill a goal
    • By never realizing his needs of training and continuous learning

    I want to belive I was a bad programmer. Well, perhaps now I am mediocre.

    link|flag
    1 2 next

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