Saturday, February 3, 2007

Why Writing Software Is Hard

Scott Rosenberg just published a new book called Dreaming in Code about a project to create a new personal information manager called Chandler.  As many software projects, this one is late.  Rosenberg was recently interviewed about the subject of software projects falling behind. He has some interesting thoughts on the issue. 


Are projects like Vista just poorly run projects?  Were they late because they were undisciplined?  Or was there something else at work?  Rosenberg doesn't give a clear answer but he does seem to indicate that it's impossible to estimate software times because it has never been done before.  He says,


"[A]s long as you are not trying to do something new -- if you are doing something that has already been done -- then you have a frame of reference to estimate how long it is going to take, and to guess how many people are going to be required, and so on. And of course in other fields of engineering where we do the same thing over and over, the same is true. If we are going to build a house, there are always imponderables, and every site is different, but you have a rough idea: two-story house, and such and such a set of features, it is going to take a certain amount of time."


This is true.  If you've done it before, you can probably estimate it.  However, if you haven't done it before--and with software you probably wouldn't be writing it if you had--there is really no way to accurately know how long it will take.  I think this is largely true, as I have argued elsewhere.  Software is unforgiving (the reason for most security holes).  Writing a program is more like research than simple engineering.  No one blames Monsanto for being late developing a cure for cancer (that I know of anyway) but Microsoft gets killed for being late with Vista.  Part of that we, as programmers, bring on ourselves.  To be a good programmer means you are smart.  Mere mortals often have a difficult time understanding how to write even simple programs.  Because of that, we often times overestimate our abilities and underestimate the size of the problem.  We don't have the information to make an accurate calculation but we refuse to admit that. Instead, we insist that everyone else trying to write software was just undisciplined and that we can do it better.  Unfortunately, we can't.


My takeaway from all this:  don't try to estimate the whole project up front.  Stay agile.  Come up with a list of work and churn through it at whatever rate is possible.  Have lots of checkpoints and don't be afraid to change your plans.

3 comments:

  1. Great post.  I would like to add that, most companies don't keep a historical record of how long software projects took them in the past.  Then, when faced with the task of estimating a new project, there is no data to rely upon, and yet another "off the cuff" optimistic estimate is made.  Without historical data, accurate future estimates cannot be made, plain and simple.

    ReplyDelete
  2. The approach "dive into coding without up-front estimation" often lead to situation when the almost complete project stops due to technical problems (or important features are cutting off). If the project is complex, your first question is "can I complete it at all"? Then you write prototypes for features you haven't done before. If the particular feature cannot be implemented, the project cannot finish, so just don't start the project. Briefly speaking, do a good research before planning, then make the plan based on facts. Don't hope the "list of work" based on guess is doable.

    ReplyDelete
  3. It is very interesting that we don't tend to keep records.  I wonder if this is just organizational laziness or if is has more to do with the fact that software organizations never really do the same work twice.  Probably a bit of both.
    @Ava-Good words of wisdom.  Trying to do too much that is unknown at once is a recipe for taking forever.  Doing some prototyping is always a good idea.

    ReplyDelete