vote up 20 vote down star
15

I ask because I quite enjoy it! I'm talking about design documentation and implentation notes (NOT user manuals), which are non-existent in most of the codebases I've been handed. I can understand why a developer wouldn't want to write requirements (that's the analyst's job) or the user documentation (that's a technical writer's job) but I don't get why developers hate writing design docs.

I don't think I would feel as if I'd finished the job if I only wrote the code and walked away -- mainly because when I've been introduced to code-only situations I've seen how hard it is to figure out what's been done and what the software does. I would hate for people to suffer the same situation when inheriting my code.

What makes you loath writing supporting documentation for your code?

flag
1  
Also, and IMO more importantly, when you're writing for developers you're talking to someone who can understand your design, someone who can feel the beauty of the design. You're talking about algorithms and such things that you love. I believe that is the difference Stewart is talking about. – sundar Oct 25 '08 at 15:31
show 7 more comments

53 Answers

prev 1 2
vote up 0 vote down

It's an interesting one. I love writing UML diagrams / schema diagrams because it quickly represents the core relationships that you need to understand to get to grips with the system. If there's basic detail there, and there's comments and test cases in the code then it's normally pretty easy to understand what's going on. It'a also quite satisfying to tell them to read the document, and then come back! Also, there's an element of professionalism: how incompetant do you look if you have to explain to a new joiner that you didn't write any documentation?

I'm trying to encourgage my team to use wiki's more. If you have to ask something or you have to take time understanding something that you see as complex, then I suggest that they summarise what they've learnt and comment on any pitfalls they might have seen. I find it odd that people don't want to do it, even though it would have saved them time. I wonder whether it's:

  • Job scecurity through obscurity
  • You tend not to get rated for your documentation skills
  • Don't want to admit that they didn't understand
  • Realise that even though they document it, most wiki search engines suck. On one wiki (sorry, I forget which we use), I can search for Banana Man but it won't find an article 'BananaMan' or 'Bananas Man' which is really frustrating.
link|flag
vote up 0 vote down

Good programmers are always on the lookout for programming the cool. Its strangest since, every other engineering discipline stresses on documentation. We programmers have to realize that we wouldn't have had softwares like gcc, mysql etc if the programmers wouldn't have documented properly. Here are some of my thoughts on the same State of Open source and its documentation

link|flag
vote up 3 vote down

Because it's boring.

link|flag
vote up 1 vote down

probably for the same reason that some carpenters hate sweeping up when they're finished

link|flag
vote up 0 vote down

This is always an interesting question to ask.

I think many developers are bred at an early age to think "code first, design second". Not saying that is a bad thing either. Just offering up an explaination. It's also funner to start coding and building something, rather than designing it.

To me, that is the core different between software engineers and coders/developers. You are a software engineer because you are comfortable with seeing and designing the problem at a level of abstraction higher than the source code. Documenting that design is a mechanical effort that deals with expressing your solution and its design in some way that is consumable by stakeholders, developers, manager etc. etc.

So, to answer your question, maybe the people you are asking to document their designs, or gasp!!, do some software design upfront, aren't necessarily software engineers, but pure developers/coders!

link|flag
vote up 0 vote down

I would say it boils down to a few reasons, inherent in how the minds of programmers work.

  • Programmers hate maintaining old code. They want to write new code, to feel like they move forward. The only reason to write technical documentation is to maintain old code, so they implicitly consider it a block to forward movement.
  • Programmers tend to overestimate their own coding abilities. They assume that their design is so clean it doesn't need documentation to understand. While this may be true for the likes of Don Knuth, I don't know anyone personally for whom this holds true, least of all myself.
  • Programmers hate imperfection. Since almost every system they build is imperfect, they assume they'll go back and improve it reasonably quickly. In practice, once a system stabilizes for release, the risk of changing it becomes too big, and it doesn't really change that much (although it may get extended).
  • Programmers feel ownership for the code they build, and don't like thinking about handing it to someone else. Documentation pays itself back most when someone else has to work on your code.

In my experience, technical design documentation is difficult, annoying and boring to write, and worth its weight in gold when you come back to maintain systems a year after the fact, or when you have to hand it to another programmer. So I write it. I don't like writing it, but I do it as a service to myself and my co-workers.

link|flag
vote up 24 vote down

Because we are lazy.
Because the minute you write a doc it is out of date.

link|flag
2  
And because there is a cost to keeping that doc up to date. Beginners that hate documentation replace it with nothing. The software craftsmanship movement replaces documents with self-documenting code, which is automatically updated when it is refactored. – Sean Reilly Aug 5 at 20:38
vote up 0 vote down

I don't hate to write documentation, in fact I like to because I gain clarity and speed to develop a system, all the times that I wrote a specification I better understood the problem and clarified the design issues and basically everything.

Maybe I like to write also because that is the way I can remember everything, sometimes I'm programming several different things and personally I don't see any other way to do it. I admire how people remember all details of a system or chunks of code, but I don't think they remember it eternally, eventually they forget most of all those codes.

The documentation for me as I stated before is very useful, I feel I gain speed, clarity, a more bug-free code, better understanding of requirements, better comunication with my clients.

At the beginnig can be feel awful but the gains worth it, try it, you'll see.

link|flag
vote up 2 vote down

The question always reminds me of Süßkinds "Perfume": when Grenouille created a new scent, he considered writing down the formula a pointless detour, only to please his master. We are Grenouille (maybe you are not).

The most influential reason may well be that they aren't good at writing prose. Someone (cough) recommended to send developers to a weekends creative writing course - an interesting idea at least.

Second, the ship date. Before it's always race, and after everyone would like (you) to start something new.

Further, it feels redundant. The information is right there, in the source, more precise and more detailed than any other notation. Also, there is no immediate, tangible value.

Sometimes, a (subconcious) feeling for job security may play a role: they'll need me to keep this running, why should I help someone else to take the job away from me.

(Good programmers know that high maintainability is their ticket for new, exciting stuff, and that kind of job security means being chained to an ultimately sinking ship.)

link|flag
vote up 0 vote down

I think one of the main reasons is that how we are educated and trained. We were hardly taught, in most cases, in universities to document what we do. We were hardly ever told that this is important. We were hardly ever taught a course geared towards documentation. Thus the mindset that this is something 'extra' or 'over and above' what we do.

When we join our first company, the culture that we find is hardly different. However, there we have official "ISO" guys who force the generation of documents with emphasis on presentation than on content. This pushes us away from it even further.

link|flag
vote up 0 vote down

In many places I have seen, documentation is mostly done for process reasons. Haven't seen anybody reading it after that. It gets quickly out of date too.

link|flag
vote up 5 vote down

There are quite a few academic studies on this topic.

The main reason comes down to cost-benefit: any artifact of documentation may help someone else in the future (but it may not). Any artifact of code (unless useless) would in some form help the product in the future (and thus you). People generally prefer to plow forwards rather than stabilize what already exists. That's why everyone writes new code instead of maintaining it.

A second reason is that developers are not necessarily good technical writers. Writing well takes effort and thinking. So we end up writing extremely long text sections with very little in them.

As for inline code, much of its documentation is redundant and falls out of sync.

Finally (from my studies of API documentation), most material merely confirms expectations or elaborate details (e.g., look at the JavaDocs for Random), leaving the writer too exhausted to capture the critical and nontrivial directives.

link|flag
vote up 1 vote down

My problem with taking all the time to write documentation (though when necessary I do it anyway obviously) is that it adds a second layer of things that need updating as things change due to circumstance. If you don't update the doc to maintain consistency with the living system, what good is it? Unless you do Literate Coding where your comments become the doc of course... then it's at least all together inside your source code.

link|flag
vote up 1 vote down

I always thought it was because most of them can't write anything other than code fluently...

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

Because we are Artists, not Engineers.

A beautifully-crafted program is a work of art (although I've seen, and written, some dustbin lids in my time...)

link|flag
vote up 7 vote down

Possible reasons:

  1. Company-imposed conventions for design documentation, when those conventions are inappropriate for the project in question.
    For example, requiring you to document your code's classes when your code uses data flow architecture or functional design style and is not object oriented at all.

  2. Computer science and software engineering students are not taught to write well, so for them writing is painful and is to be avoided.

  3. Management pressure to churn as much code as possible, at expense of design, unit testing, reviews and ahem design documentation.

link|flag
vote up 1 vote down

Design documentation:

Software architecture and implementation is evolving all the time especially when using agile methods to develop software. It's useless to copy software design in documents in addition to code. Instead the naming and architecture should be kept so clear that it shouldn't need documentation to explain it. And if you can't understand the code, what would be the point you would get from knowing anything about the design? Although in very large scale software projects having very high-level architecture document may save some time.

So basically software engineers hate writing documentation because it usually has no real value and it's required by some bureacratic convention.

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

1) Ridiculous expectations on formatting, layout, and content imposed by people I call the "PMI Crowd". In large organizations, Project Managers often expect long bullet lists of requirements and capabilities which are often less than useless when it comes to actually getting something done.

2) Nobody reads the F'ing M. When developers feel that they're writing something that nobody will read, they get discouraged and think it's a waste of time.

3) The pain of editing and collaborating in Microsoft Word. Nothing turns me into a semi-homicidal maniac faster than trying to contribute to a document where someone is unaware of how to use styles in MS Word. I often find myself spending more time on getting my documents formatted than filled with content in these scenarios. And god help me if the template to which I'm expected to conform is malformed.

link|flag
vote up 10 vote down

If whatever you're creating requires people to read a lot of documentation, it's probably going to fail.

That's why I, personally, can't get excited about "writing documentation".

Why not create software and products that don't require documentation? At least for typical / standard uses?

link|flag
3  
(1) That doesn't hold true for all kinds of software projects. (2) I think you're talking about user documentation, when my question refers to design documentation. – Stewart Johnson Oct 25 '08 at 14:42
show 5 more comments
vote up 10 vote down

I think the most discouraging thing about writing design documentation is that it is typically out of date very shortly after it is written. Frequently, this can make the effort to write design documentation feel like wasted time.

link|flag
1  
Honestly, you overestimate how much a system is modified instead of extended. – Joeri Sebrechts Oct 25 '08 at 14:51
1  
And it's much less of a problem when you write your design before you write your code. – Stewart Johnson Oct 25 '08 at 15:04
vote up 15 vote down

Because it's boring. Instead of producing new code, new functionality etc., we "waste" time with old stuff.

I am a developer because I see myself as a builder, an engineer, a scientist. I want to build new bridges, not paint old ones red. I want to build more software to help more people. Documentation writing just feels like stagnation.

That does not mean it's not important to me, but spending 3 days on documentation means 3 days not writing new code.

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

Most of devs find coding fun. Writing docs is not fun in most of the cases. Anyway, we like it or not, we often have to write some.

link|flag
vote up 31 vote down

When I'm writing code, I am enjoying (sometimes) the process of solving a problem. Coming up with a solution is the "thrill" of programming, whereas writing documentation is just a laborious task I must do after the fact.

Bottom line: The act of solving a problem is more exciting than writing about how I did it.

link|flag
show 3 more comments
prev 1 2

Your Answer

Get an OpenID
or

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