vote up 43 vote down star
17

Quality is subjective, of course. To be a little more specific: What is most likely to result in shipping buggy, fragile, or otherwise sub-par products that make more work for you and your group down the line?

Here's a breakdown of the responses so far, sorted by responsible party and then by votes.

Management:

  • (Aggressive) Deadlines
  • Lack of/arbitraily changing specifications
  • Belief that programmers are interchangeable/more is better
  • Overall poor communication/management
  • Overtime/fatigue

Developers:

  • Copy and pasted, duplicated, or insufficiently refactored code
  • Lack of interest
  • Bad legacy code
  • Lack of knowledge
  • Relying too heavily on the debugger

Both:

  • Lack of coding standards
  • Using the wrong technology for the job
  • Lack of a solid architecture/design
  • Haste (in all its forms)
flag
show 1 more comment

50 Answers

1 2 next
vote up 58 vote down check

"Aggressive" deadlines.

link|flag
1  
Yes, trying to rush your developers usually ends with a lower quality product AND a slower development pace, since things get buggy and have to be redone. – TM Oct 2 '08 at 23:39
show 1 more comment
vote up 40 vote down

Lack of specification is our biggest problem, followed by arbitrarily changing specifications.

Change control is frowned upon because it's regarded as a bureaucratic exercise that merely functions as a barrier to progress. Hence the inevitable chaos surely ensues...

In fact, this has been a key complaint in most of my jobs.

Everyone agrees in the benefits of change control, until their app needs an extra feature delivered yesterday ('because we've already agreed it with the customers') or they need it to work backwards or upside down ('we need it for the new service we're offering; how difficult can it be??').

Dilbert: "I'll design the system as soon as you give me the user requirements." Business Guy: "Better yet, you could build the system, then I'll tell your boss that it doesn't meet my needs." D: "I don't mean to frighten you, but you'll have to do some actual work," BG: "That's crazy talk."

link|flag
vote up 21 vote down

Nothing hurts the quality of your code like existing bad code, especially code with unmitigated side-effects. This is when code does different things depending on how many times it's been called, or depends on other things being called first in order to not launch the missiles.

link|flag
2  
I wish I could vote this up more than just once... this is perhaps the bane of my existence. – rmeador Oct 2 '08 at 15:48
vote up 21 vote down

copy and pasting code .... !DRY (Don't Repeat Yourself)

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

Management believing that developers are all the same, so if they can get a bunch for cheap then they must end up ahead.

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

Lack of interest.

Seriously, if my heart is not in it then that code ends up the proverbial red-headed step-child. Sad, angry and alone.

link|flag
1  
Honestly? I don't. Rather I follow my passion, which means spending as little time on uninteresting projects as possible. We coders generally have that luxury, as opposed to folks in some other fields. It is my anecdotal observation that programmers who don't follow their passion, and instead grind through uninteresting work (in the name of duty/cash/whatever) with manufactured motivation frequently end up hating programming work in general. Something to be avoided. – Stu Thompson Sep 9 at 14:12
show 2 more comments
vote up 10 vote down

I have to admit that tight deadlines have often hurt the quality of my code - leading me to submit code that worked as opposed to code that I could be proud of.

In an ideal world, I suppose we'd all have time to refactor and refine before check-in, but it seldom happens that way.

link|flag
vote up 8 vote down

Communication, Failure of.

  • Customers and users communicate their conceptual model of the ideal program to me. If this communication fails, I will get the wrong idea of what to build. This comminication can fail in two ways: misunderstanding and lack of understanding. Misunderstanding is when I get a clear idea but it is the wrong idea. This produces code that might work but is ultimately of no value to the user, and therefor clutters up the code base and needs to be removed. Lack of understanding is when I get the right idea but it is too vague to properly guide my coding. This produces code that tries to do the right thing, but in the wrong way, or fails in some other way. If the vague idea is clarified, then it might be possible to refactor or restructure this code to work.
  • I communicate with the computer through code written in a programming language. A language consists of two components: syntax and semantics. APIs are a big part of what comprises the semantics of a programming language. If I, as a programmer, don't fully understand the syntax or the semantics, or both, of the programming language that I use, then the best thing that could happen is a compile time failure, or startup failure, but that isn't always the case. Especially in the case of complex APIs. Misunderstanding the semantics that some API presents, often through faulty assumptions, is a very common source of bugs. People might argue that you should proove your assumptions through testing, but i don't think the world is that black and white. I believe that if the need for testing is too great, then that is often a sign that an API isn't being clear enough in communicating how it is suppose to be used. Unclear usage specifications is the source of assumptions.
  • Along the same vein, existing code communicate with me. The previous programmer documented how he understood the system and how he intended it to work. But he did so in a language that, while free of dualities, is often unfit for the purpose of human to human communication - or at least hard to get right like that. Modern programming languages are full to the brim with abstractions, but sadly these abstractions are often either not abstracting away enough details, or they are abstracting away the wrong details. Like misunderstanding an API, this leads to assumptions. But not just assumptions on a method, function or class level, but on a whole architectual or conceptual level.

There is no doubt in my mind; failure of communication, in the many forms that it might take, and on the many levels that it might manifest, is the worst poison to quality that i know of.

link|flag
vote up 8 vote down

Not fixing broken windows!

link|flag
vote up 7 vote down

Code duplication

Where code is duplicated, either inadvertently or by cut-and-paste coding. Then slight changes in one of the duplicate copies lead to

  • Bugs fixed in one part of the code and not another
  • Slightly different behaviour in different parts of the application
  • More code to test and debug
link|flag
show 2 more comments
vote up 7 vote down

Lack of coding standards coupled with aggressive deadlines. This leads to messy, fractured, half-assed code.

link|flag
vote up 5 vote down

Overtime. Nothing beats it since in it's wake all the listed symptoms appear.

link|flag
vote up 5 vote down

My lack of knowledge on a subject. I can't think of a single time where I haven't looked at something after I wrote it and realized that had I known something about the existing system, or some some way to write the code differently I could have made a better choice. I can attribute it to a tight deadline etc., but when it comes down to it, I am the one who took 10 steps to do something that could have been done in 5.

link|flag
vote up 4 vote down

sometimes, due to not much time, I have insufficient refactoring (when I use "spaghetti coding" to speed up development).

link|flag
vote up 4 vote down

Customers failing to use it correctly.

Yes, I'm kidding.

link|flag
vote up 4 vote down

Definitely for me is lack of (or unclear) specification. If I knew before hand how every one of my API would behave I would make test units, make them check everything the API provides or not and ensure that everything would be tested.

The problem is, I'm always "creating", and sometimes a class method didn't existed five minutes ago and it was only created because I'm working in some other interface and I wondered that the first method exist, so I do create it just for rapidly coming back to the method I'm really interested.

And what happen? This second helper method gets implemented very bare bones not checking for everything it should, because what I want is get it running fast enough to comeback to the main problem.

I always say to myself, I have to comeback to that method and make it better later, but not now. But this later sometimes is so late that I only comeback to the method when I find out it introduces a new bug to the whole system because I started using it everywhere and didn't remember that it was incomplete.

Everything should be perfect if you could always make specifications first, tests later and then code, but world isn't perfect right, sometimes you need code to tomorrow, and forget the tests.

link|flag
vote up 4 vote down

Using the wrong technology for the task has hurt me in the past. Whether it's the wrong programming language, too little hardware, or too much application stack, using the wrong tool for the job from the start is just demoralizing.

link|flag
vote up 4 vote down

Mental fatigue hurts the quality of my code.

Making programmers work for 8 hours is horrible for a profession that involves creative thinking.

link|flag
1  
That's called being in the zone. I can do that too but it only happens when inspiration strikes. But programmers still shouldn't be expected to work 8+ hours straight under regular conditions. Also, inspiration can't be stored in a bottle. It just comes. – MrValdez Oct 2 '08 at 15:11
show 1 more comment
vote up 4 vote down

Lack of a solid architecture and high level design. A fully-formed design with the proper level of abstraction and modularization will make for maintainable code even when the requirements change or are incorrect.

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

Lack of planning - an amazing amount of trouble could be avoided if a few minutes of thought was used before implementing. Normally this is related to a lack of communication, and deadline pressure always makes it much worse.

link|flag
vote up 4 vote down

Not that anyone will see this answer, but:

Me. I hurt the quality of my code the most. Despite trying to suck less every year. :)

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

I'd say quantic specifications, that change every day or so because the client doesn't exactly know what he needs.

link|flag
vote up 3 vote down

poor quality work is the result of bad management, not technology. it is the responsibility of project management to create an environment where programmers can get their work done (which is all programmers want to do - code).

many answers can be found in the following book:

Peopleware (1999) Tom DeMarco

probably one of the best books i have read this year, very easy to read - it practically reads itself and when you finish one chapter you want to keep going and do the next. it is a management book, so about 50% will be lost on programmers. but you will find yourself reading going "yeah yeah, i know, i know".

it also helped me feel more confident about taking a stand about bad management practices i have seen throughout my career. ive often felt as though i was rocking the boat or that it wasnt my place to make trouble about a particular bad practice since i should do what my boss wanted because he was paying my salary.

for me, this is what i have seen most impacts quality of code:

  1. unhappy programmers (a bad environment will drastically lower programmer output and quality of code).
  2. no project schedule. if you want to combat unrealistic deadlines, this is the power you need. without this, you cant make a case to management about how long it will take to finish a project, so they will tell you when it needs to be ready by.
  3. no bug tracking system (sounds simple, but it will be a massive help).

also, any serious software house should take a look at this: The Joel Test: 12 Steps to Better Code. whenever i arrive at a new company i do this review. commonly companies are at about 3 out of 10 (only 10 points are really relevant for web software dev). within a few months i usually get things to around 8, which results in massive improvements.

hope this has been helpful.

link|flag
vote up 2 vote down

I would say insufficient test.

Ofcourse, no one is perfect. Tests will make sure of that ;)

link|flag
vote up 2 vote down

Relying on a debugger, rather than my brain. Don't get me wrong, debuggers are a great, important tool, I just find that I sometimes stop thinking when I can't figure out why some variable is set to the wrong value at that point in the code...

link|flag
vote up 2 vote down

Not enough contact with the end user. Specifically in requirements definition and UI design.

Note that the end user is often not identical with the person known to your team as the customer (or customers representative). I really mean the poor sods who will actually have to work with your software...

link|flag
vote up 2 vote down

Haste.

It doesn't matter if it comes from the outside (unrealistic deadlines) or the inside ("oh, this is a no-brainer"). Doing things quickly means doing things without thinking them through sufficiently, and that means doing them wrong.

link|flag
vote up 1 vote down

Having too big functions that do too much. Function/variable names that no longer match their meaning. So basically a lack of refactoring. Which is a result of trying not to miss deadlines. Which are set by management that have always ideas that must be implemented as fast as possible.

link|flag
vote up 1 vote down

Other programmers;-)

link|flag
vote up 1 vote down

Based on my experiece so far I would say:

  1. Lack of or no code reviews during development iterations
  2. No unit tests for the code that is written
  3. Not having the tests integrated with the build process
  4. Lack of frequent and consistent communication between all parties seeing this through
  5. Long development cycles. This can cause additional unnecessary complexity
link|flag
1 2 next

Your Answer

Get an OpenID
or

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