vote up 22 vote down star
17

Being relatively new to the software industry I have come across a question of deadline enforcement:

Back in the idyllic age of academia, the deadline was the end of the semester and the penalty was a well defined 'F' (or local equivalent). Out here in the real world we need to make code our current and future peers can work with, I face the situation where deadline comes, deadline goes, and the project is still not finished.

Now what? On one extreme we could fire everyone involved, on the other we could richly reward everyone involved.

  1. What actions have you seen applied as 'penalty' for missed deadline, and which of these eventually resulted in more-good-code?

  2. What project-management responses caused the project to fail outright,

  3. What responses restored working order and resulted in code that could be maintained afterward?

  4. What responses resulted in more-bad-code?

flag
17  
why do we have tags for development-process and project-management if they questions about them are banned as not programming related? – Arthur Ulfeldt Jul 17 at 17:55
16  
I agree, Should not be closed. – Damien Jul 17 at 17:56
4  
Flagged for re-open. I think since Arthur asked what we've seen that actually helped, that might make for interesting answers. – Mark Bessey Jul 17 at 18:00
4  
It's an interesting question, but i don't see that it's particularly specific to programming. Actually, Rex M's answer provides a better basis for a real programming-related question... of course, it's already been asked: stackoverflow.com/questions/381089/… – Shog9 Jul 17 at 18:24
12  
Arthur: The tags exist to make it easier for question closing zealots to find questions to close – rotard Jul 17 at 19:39
show 12 more comments

38 Answers

1 2 next
vote up 51 vote down check

Deadlines are part of a fundamentally wrong idea about how to do software development. People new to, or outside of, the software development industry do not understand this:

Software is done when it is done, no sooner and no later.

If a developer has a task and a week to do it, and it looks like it will take more than a week, nothing can be done to change that. No matter how much harder the developer works, no matter how many people are added to the task, it will still take as long as it takes (in fact adding people usually makes it take longer).

Instead, read up on the agile development process. Software should be developed iteratively, and each iteration should be based on the results of the previous iteration, not on external requirements imposed.

Edit based on the extensive comments below:

I would never argue that developers cannot be held to some kind of delivery expectation. My point is in response to the specific hypothesis which the asker posed - that the nature of software development in business is somehow analogous to schoolwork, or any other kind of work for that matter. I contend that it absolutely is not. "Deadline" implies much more than a simple delivery date. It is a fixed point by which a fixed amount of work must be completed. Software simply does not work that way. I wrote a few more paragraphs explaining why, but honestly if you don't already believe that, nothing I say is going to convince you.

If you are working on a software project and it is clear you will not be able to reach your deadline, what can you do to rectify that? The answer is well-known by now: practically nothing. You can't add more people. You can't "work faster". It's just not going to get done on time. You tell the stakeholders, everyone adjusts, and keep working (or not). What, then, did the original date mean?

Anyone who claims software development is analogous to bridge-building or homework or that impending deadlines can still be met if the developers would just get their shit together and work their asses off, are deeply confused about their own profession.

link|flag
29  
I do agree for the most part. Software is done when it's done. What I don't agree with is that deadlines are fundamentally wrong. A bridge is done when it's done, yet it still has deadlines. The trick is not removing deadlines completely, it's learning how to make them realistic and managing software so that you don't introduce feature-creep, etc. – Jason Jul 17 at 17:47
4  
Problem is, what's the definition of "done"? Feature-creep and scope-change can be a killer - that's what causes overruns on government contracts. You can't outlaw scope changes. You just have to know when to say NO. – Mike Dunlavey Jul 17 at 18:01
9  
I would not agree Software is done when it is done, no sooner and no later. Sounds like a artistic behavior of a diva to me and not the behavior of someone who works for a company that relies on estimates deadlines etc... – Janusz Jul 17 at 18:30
2  
@David enterprises only think they need deadline information because they approach software development from a non-SD mindset. I know - I work for a huge enterprise organization. The only good deadline in SD is so ridiculously padded and far out that it's as useful as no deadline at all. – Rex M Jul 17 at 19:37
5  
@Rex M: Software developers only think deadlines are unimportant because they approach software from a non-business mindset. People managing large projects that include software need to have a good idea as to when they can expect the software to be done. They also should have (and frequently don't) have an idea as to how rigid the deadline is, and what they can do to compensate if it's going to be missed. They should accept "It's done when it's done, and this is when I'm pretty sure it'll be done." – David Thornley Jul 17 at 20:21
show 15 more comments
vote up 17 vote down

Rather than a penalty, how about realistic estimates and rewarding on-time releases?


Inspired by the comments to my response

Maybe the question should be "How do I make realistic estimates?" For me, I use FogBugz estimation history and completion date plots. These give me data points of how long I estimated a task to take and how long it actually took. This has helped guide me to give realistic release dates in the long-run (it didn't happen overnight). I find estimating timelines to be an interative process: I

  1. design
  2. estimate
  3. develop
  4. find an shortfall in the design & iterate.
link|flag
4  
It'll never happen. (still good to try lol) – 280Z28 Jul 17 at 17:37
1  
FogBugz "estimation history" and "completion date" plots help me narrow down more realistic release dates in the long-run. – Pete Jul 17 at 17:40
1  
I haven't read those. I'm just curious, do they cover the fact that every middleman that the estimate goes through will shorten it, sometimes significantly? – 280Z28 Jul 17 at 17:50
show 2 more comments
vote up 11 vote down

It depends on if the deadline was possible in the first place, maybe it was a fault with the planning and estimation of how long it would have taken. Make sure you know why the deadline was missed before deciding punishment

link|flag
vote up 1 vote down

I am not advocating this, nor do I implement any of these, they are just things I heard that were interesting/odd

Just been reading and watching videos on release cycles (usually in FOSS), common things seem to be:

  1. Ridicule
  2. Wearing of a 'Dunce hat' for the week (for people not commiting in time)
  3. Banning from the tree (for ABI/API breakage and things)

Although I suppose that is open-source software for you!

link|flag
2  
a dunce hat? seriously? – Jeremy Cron Jul 17 at 17:39
3  
Sounds like a great way to piss off the most important assets your company has. Good luck trying to retain them for more than a few months. – Tyson Jul 17 at 17:48
1  
@David - I watched a OpenBSD presentation by Theo and he was quite casual about having ridicule and being nasty as punishment for bad commits and so on during releases. – Aiden Bell Jul 17 at 18:19
show 7 more comments
vote up 1 vote down

Flogging

link|flag
2  
I hope the phrase, "the beatings will continue until morale improves", illustrates why this is a bad idea. – David Locke Jul 17 at 17:57
1  
Hah! First thing that came to mind when i read the title. If you're gonna humiliate your workers, might as well be explicit about it... – Shog9 Jul 17 at 18:14
1  
(-1) should be a comment. – devinb Jul 17 at 19:40
show 2 more comments
vote up 3 vote down

So far in my career I haven't seen any real penalties for missing a deadline (and I've missed plenty). I imagine it's different for companies building software or games to be sold in stores where the company has made promises to the public.

But in the custom software development realm, it's so hard to accurately estimate how long a project is going to take. And often times this fact is reluctantly accepted by companies everywhere.

link|flag
vote up 14 vote down

Depends on whether developers set deadlines on each modification request, or whether these are set for them by management.

In the latter case, unless all your developers are sitting and playing Halo 3 all day, a missed deadline is often an indication of a mistake on the side of management or the team leads. So firing everyone wouldn't solve the problem. It might make sense to introduce better indicators into your software process so you could see that the deadline would be missed long before it happens.

If your developers do give time estimates, then I would be very careful about rewarding and penalizing developers for meeting deadlines or missing them. The result of doing this could be that they would adjust their "fudge factor" in time estimation. They would give themselves too much extra time (to reap the rewards), which messes things up if they are good at estimation. Your goal should be to get them to give good and reliable estimates, not to change the way they work to meet these estimates.

link|flag
vote up 9 vote down

Death. Clean and simple.

link|flag
17  
"What happened to your last project team?" "Oh those poor sons of...well that's not important. The important thing is, I need a new team" – Grant Jul 17 at 17:45
2  
(-1) Should be a comment. – devinb Jul 17 at 19:39
1  
Thanks for enforcing the rules. Wouldn't want things to get out of hand. – Donnie DeBoer Jul 17 at 19:41
show 9 more comments
vote up 29 vote down

Your first reaction should not be what to do in response to the missed deadline, but to analyse why you missed the deadline. The response to missing the deadline would then follow naturally from that as a consequence of the reason.

For instance, if everyone involved didn't do their job, fire them.

But if they did their job, and more, then why was it still missed? Too much other activities done by the same people? Too big a scope for the deadline (ie. unrealistic deadline). Or ... etc.

The top reason for missing a deadline in my experience is that people aren't allowed to work 100% on the project at hand, and thus any estimates you might have, although accurate on their own, aren't really useful at all. That, plus unrealistic estimates and deadlines.

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

Once you've reached the point at which people have blown the deadline, you have to ask yourself (A) what the natural consequences of that are and (B) how you can best complete the task and maintain some kind of movement towards the business objectives (even if you're not running a business).

Explicitly penalizing people for blowing the deadline is unlikely to help unless they believe that they've earned it. This will not happen if the deadline was unrealistic, if there were elements of the team that were the primary points of failure, if there were serious problems with requirements, or if the majority of the team involved believes that the above factors are true.

In one case I was on a team that blew a deadline on a small deliverable by over three months - and the original deliverable due date was three months from start! We misunderstood the requirements, didn't sufficiently talk to the customer, and underestimated the time involved. Management was not at all interested in assigning blame. This was partially because it would have been counterproductive to finishing the deliverable, partially because none of us were "problem employees", and partially because management knew that we were all highly-motivated to fix the problem and satisfy the customer. So we got it done, the customer was as happy as could be expected, and we moved on with our lives, with some valuable lessons on how to avoid the situation in the future.

link|flag
vote up 2 vote down

Once a project is late, there is not much 'management' (good, bad, well meaning or malicious) can do, that will not result in the project being even later

... the only exception possibly being the removal/avoidance of exterior distractions.

link|flag
vote up 8 vote down

Oh, man...

First of all, there are external deadlines and internal deadlines, and they should be different.

What happens with an internal deadline is the frequency of activity increases as the deadline approaches, reaches a peak at the deadline, and then falls off as the deadline recedes. So plan the external deadline to follow the internal deadline by a couple weeks at least.

Then, make sure the deadlines are realistic. Partly you do that by involving the developers in setting them, and in deciding what will be accomplished.

Finally, I've mostly been a developer, but once when I took a stab at management, I would never want to take the latest-and-greatest version into a conference or presentation. I would want to take a version that was at least a few weeks old and that I knew where the problems were and that I could be sure would not contain unpleasant surprises.

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

In his wonderful book about project management - "Deadline" - Tom DeMarco tells us a story, about project manager from a western-world is managing a project in some fictional post-communist eastern European wild country (wild is a really good term, because the citizens are a bit.. uncivilized).
One day PM discovers, that something went wrong, some part of his project dramatically missed the unrealistic schedule. Previous PM established penalty for missing deadline simply by hanging responsible person on a butcher’s hook, but as schedules were unrealistic, one man already missed deadline.
So the story tells us about a day, when western-style PM is presented with a responsible person, and he should send him to be hanged on butcher’s hook. PM, as most people do, is terrified of vision of sentencing someone to cruel death simply because some was never able to finish his project in time. And – by all means – hanging this poor man does not advance the project. Since this is a fiction novel about project management, and not about tortures, our hero cancels the penalty.
But there is some big issue behind this story about hanging someone: if you set a deadline, and establish some kind of penalty for missing this deadline, the day will come, you will probably have to actually punish someone. And will you do it? No matter what the punishment will be: hanging, bonus loss, firing, breaking the deal or some fee – you may have to punish someone. Will this penalty do some good to your project? You have to answer it by yourself.
So: do not establish a penalty for missing the deadline, you will not want to execute…

link|flag
vote up 14 vote down

Developers should never be penalized for Management's mistakes.

It's like a parent punishing a child because the parent had a bad day.

Reasoning:

Deadlines are a fact of life. People want to know how long something will take. The best we can do is estimate/guess. It is the role of management to try to figure this magical, never correct guess. When they create a deadline, they need to use the right tools (experience, ASKING FOR HELP FROM DEVELOPERS, lawyers, hr, etc)

However....

The penalty for missing a deadline should not fall back on the workers. It is the management's fault for missing deadlines. They should have said no, should have scaled back the project or should have motivated the workers better.

In a construction crew, if you piss of the workers, you start a fight. In my company, if we miss deadlines, the management gets in trouble. Not the workers. It's the manager's job to control the project and what is done. The workers are only doing what they can. The manager's are in charge of assigning roles and tasks.

I'm not saying the quality of workers isn't a factor, but the management should KNOW that! It doesn't take a genius to know that a project isn't well thought through or nicely controlled. Ask anybody if their manager has any idea what's going on and you'll find the problem.

We stopped missing as many deadlines when the managers realized it was their fault for setting/agreeing to the deadlines.

</rant>

Re: The questions:

1.What actions have you seen applied as 'penalty' for missed deadline, and which of these actually made things 'better'?

  • Manager has less responsibility. This person does not get promoted or publicly thanked. Most likely this person will be moved to a "less-critical' project.

2.What project-management responses caused the project to fail outright, and what responses restored working order and resulted in code that could be maintained afterward?

  • feature creep: manager keeps adding more stuff in the list. <- fight this off with a List of tasks ordered by priority. When you add things to the list, compare their priority with the things around it. Make new things harder to be set as "top priority."
  • too many bugs in the code: Manager need to require tests (atleast critical) and automation. Builds need to be standard and automatic. Real users need to see the code before it is "finished."
  • un-readable code: Institute peer code reviews. If someone has dirty code, ask someone to "help" them with a project.
  • If you have the salesman problem, where the salesman promises features that doesn't exist/work: Management needs to step in and explain the problem to that salesman. Also, not giving that salesman public affirmation for a job well done sometimes helps this.
link|flag
show 2 more comments
vote up 5 vote down

As others have mentioned, before talking about penalties, start with "how do we determine whether these deadlines are realistic"?

Or as my boss once said, "We'll be happy to work a plan when you give us a plan that works".

I still think that should be on a t-shirt.

link|flag
vote up 1 vote down

There are two possibilities:

  • The deadline was missed because someone didn't do their job.
  • The deadline was unrealistic.

Rather than thinking in terms of penalties, I would suggest doing a post-mortem to determine what went wrong and finding ways to improve the next deadline estimate.

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

Two obvious questions come to mind when a deadline was missed:

  1. Was the deadline feasible?
  2. Did external factors impact performance?

Obviously, if someone presents you with a deadline that doesn't make sense then there shouldn't be any penalty for missing the deadline. Also, if someone misses a deadline because they were called up for jury duty that also shouldn't be held against them as well.

In the event those questions don't apply then the next thing to do is to figure out what went wrong. If you based your estimate for how long something would take, and thus the deadline, on the developers estimation of how long it would take them to write the code then perhaps they were too optimistic in their responses.

link|flag
vote up 2 vote down

No penalty. "Deadlines" and estimating have been and continue to be one of the hardest and most challenging parts of software development.

It is ridiculous to impose penalties on developers for this issue.

link|flag
vote up 1 vote down

You ask "what should the penalty be...". It would appear you are asking from the perspective of "inside the company".

In real life, the penalties are often swift and severe - loss of business, lawsuits, bad reputation in the industry. These are the REAL penalties imposed by clients who were promised something by a certain date that was not fulfilled.

Internally, you can often do whatever you like. But once you start involving paying clients, then managing those clients becomes a critical part of the overall job.

Penalties such as I described can often be avoided (or lessened) by "on top" communication with the client. If the client wants something added (so-called feature creep), then this should immediately be answered with the impact these changes will have on the project (costs more, delivered later, whatever). The client should be encouraged to triage all such requests against their deadlines and projected costs (i.e. let the client manage feature creep, not you).

If other things change the delivery time, then as soon as you know there will be slippage, you must inform the client. If done early, clients are remarkably willing to work with you. But if you don't say anything until it's too late, they are less likely to forgive... especially should they discover you knew a significant time earlier and didn't tell them.

Cheers,

-Richard

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

If you're missing your deadlines, fix your estimates.

link|flag
vote up 3 vote down

Taken from a corporate development standpoint...

If the deadline came from someone other than the person performing the work, review the situation to determine the cause of the overrun. In these cases, it is often related to incomplete requirements, scope creep, poor management, etc. No punishment should be given for missing a deadline that the person never provided in the first place.

If the deadline was provided or agreed upon by the individual performing the work, then that person needs to explain the factors that led to the delay. In addition, this person should be reminded to notify their supervisor, project manager, or other responsible party as soon as they are aware that a deadline may be missed. This information should not come to light after the deadline has passed. If this occurs repeatedly, your company's disciplinary process should be followed. This may involve write-ups, suspensions, or termination.

People tend to take real ownership of deadlines when they are the ones setting them. When deadlines are placed on them without their input, deadlines tend to become meaningless to the person performing the work.

link|flag
1  
One thing to note that the person providing the estimate for the deadline should also know how to give accurate time lines. A new developer may not be able to accurately estimate them yet. – Rob Jul 17 at 19:09
vote up 1 vote down
  1. I've seen executives leave a company shortly after some deadlines were missed. This changed everything but didn't necessarily make things better or worse. I've seen some contractual obligations like clawbacks as a way to penalize someone for missing a deadline that I'm not sure how well they work.

  2. When one completely changes what a project is supposed to do midway through the alloted time for the project that tends to cause the initial trajectory to no longer be valid and thus the project will fail because it likely will not meet the initial deadlines within budgets. Replanning the project into short increments of at most a few months is a response that I believe is a logical direction to take a project to get good results as a lot of project may have to accomodate changing requirements which can easily change deadlines, head count or time worked.

link|flag
vote up -2 vote down

Lack of Software is enough of a penalty.

I think most people have bad understanding of software estimates.

How long does it take to Design a commercial passenger car? How long does it take to build?

There is a difference...

When you are building a Commercial passenger car your basic requirements are already known you are basically assembling parts already designed to fit together and also know what order to perform the assembly.

And if you do a good job, it's easy to maintain when done; (You can change the spark-plugs with-out removing the entire engine, if the timing belt breaks you don't fubar the engine).

link|flag
vote up 2 vote down

While I have never seen any disciplinary action or firings I have seen lots of "mandatory" overtime and peer pressure to work longer hours.

I almost got fired as a manager for telling the team that reported to me NOT to come in on weekends and work late. I know those things are detrimental to the project and to morale.

Generally the "punishment" is in the form of making people feel guilty or anxious, but I am sure there are places that do more "official" things.

The world is full of idiots. Management is no exception.

link|flag
vote up -2 vote down

The penalty should be based solely on the purpose for giving (or asking for) a deadline in the first place.

link|flag
vote up 3 vote down

I think the question it self demonstrates a misunderstanding of the role of management and project management.

There is, unfortunately, a common perception in the minds of many with the word Manager in their title that management means putting the heal to/kicking the butts of lazy workers. It fits with those that believe in Parkinson's Law as well.

It's not. It's about making it possible for works to do their jobs - be it being the communication channel between them and some other part of the organisation, getting them resources, or running interference (moving the furniture out of the way).

To wit, the PM should already know the project/task is going to miss it's deadline. They should be asking questions, and know what's going on. They have the power to either cut tasks or increase/rebalance the resources to get the job done (or say to the sponsor, if you don't give the resources, it ain't getting done on time). And as such, the penalty goes to the PM, whether it is nothing, tongue lashing, demotion, or termination.

Sometimes the delay is unavoidable. This is why we build in contingency time. Sometimes, it's a known risk; and so long as you have a backup plan - you are OK.

As for the responses, you have four parameters: Scope, Time, Money, and Quality

  • Scope - you can cut to make the deadline.
  • Time - is fixed. You might be able to get your staff pull a week or two at 60hrs, but your productivity will begin to suffer after that. And it also costs more money if you are paying them fairly.
  • Money - You can buy pieces from someone else to speed up the process. You could even hire more people, if the work is disjointed enough that you don't have to have a lot of communication with the existing staff - see Brook's Law
  • Quality - Idealistic fools claim you can never skimp on quality. But you can. You don't have add bugs (one form of anti-quality); but you can put less quality in. Do you code your function so it can handle unlimited length strings, or is 100 characters good enough for this version? Do you make it easy for the next upgrade to bolt on a new module, or do you weld it shut and worry about adding a plug-in module when you do the next version.

Not doing these things aggressively enough (when required) will surely lead you to a failure.

link|flag
vote up 1 vote down

What should the penalty be for setting an unrealistically short development timeframe against all of the advice of the developers and their leads?

Coincidentally, this seems to happen almost as often as development teams missing ship dates.

link|flag
vote up 0 vote down

castration, after that they will never miss deadline.

link|flag
vote up 0 vote down

"Who does what by when" is a question that each project team member must provide a professional commitment/response to in any profession. As far as when a deadline is missed use that evidence to improve the estimating process and ask the individual to make a new commitment. this assumes, that their was in fact a commitment made to the previous deadline. A great series on 'Who does what by when' is available at manager-tools.

Also, I would recommend that you distinguish between Estimates, Targets and Commitments. And manage the 'gap' or the risk between the estimate <--- gap ---> commitment. Look at Software Estimation: Demystifying the Black Art.

link|flag
vote up 0 vote down

They will miss a deadline at most 2 times, after that they can miss as many deadlines as they like...

link|flag
1  
That's ridiculous. – tim Jul 19 at 1:08
show 2 more comments
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.