Delivering Software Value on Time
Delivering Software Value on Time–Cut The Bullshit
This is a synopsis of an article written by the famed software professional, Mike Acton; that article Introductory Bullshit Detection For Non-technical Managers is a great resource, providing advice for non-technical managers on how to assure that software projects are on time, under budget, and delivering value. Much of this advice is useful for individual programmers as well. There may be cases where project managers aren’t asking these type of questions and the last line of defense becomes the programmers themselves. It takes discipline to accomplish–why else would there be project managers in the first place–but the tasks themselves are not insurmountable.
One of the first quotes that stood out was
Stop if there is anything at all you do not understand. Not “I have an idea of how it works…” but actual understanding. If you don’t understand, you’re speaking at the wrong level in the conversation and you’re going to get snowed.
In the article’s context, this is referring to a non-technical manager understanding what the programmers are working on. However, I think this applies just as well the other way around. If a manager, or user, is describing requirements of the system they would like, it is imperative that programmers have an understanding of what is being asked. Not speaking up to say you don’t understand is a recipe for failure.
The Checklist
Understand the Problem
- What problem are you actually trying to solve?
- What is one concrete example of a problem this will solve?
- Who specifically will represent the users of this system?
- What are the platform constraints?
- What are the memory constraints?
- What are the performance constraints?
Value
- How much is this worth solving?
- What specific things will we be able to do that we can’t do now?
- What specific things will be cheaper than they are now?
- What specific things will be higher quality for the end user than they are now?
Cost
(real cost as well as opportunity cost)
- What previous art solves a similar problem?
- What evidence can you show that this will solve the problem?
- What connects to this?
- What’s Plan B if this doesn’t work?
- What are you not doing instead?
Maintenance
(the overwhelming cost of developing any solution is almost always maintenance)
- How long will the system survive?
- What are the prerequisites for using the solution?
80/50 Rule
If you’re not 80% done by the time you’ve used 50% of your resources, you are behind. 80% done means you can ship it right now. You may not like it. It may have some rough edges. But it actually works and handles off-script input in an acceptable way.
Time and again, this rule rings true. Software projects have a habit of slipping one day at a time, through new requirements, unhandled edge cases, and the general volatility of life. This rule of thumb helps keep a long-term project on track.
Red Flags
“I’m making a generic version of…”
It means: I don’t understand the constraints of the actual problem, so I’m going to design an even bigger problem that we have no way of verifying the efficacy of.
“I’m creating a framework to…”
It means: I’m not interested in solving the actual problem, so I’m going to create something else so that the person that actually will solve the problem has to also fix the problems in my stuff on top of that.
“It’s platform independent.”
It means: I literally have not spent two seconds thinking about what platforms this will obviously not work for.
“I’m adding this to make sure it’s future proof.”
It means: I believe in fairies.
Further Material
Video of Mike Acton’s talk at CppCon 2014. This is very informative for software professionals. CppCon 2014: Mike Acton “Data-Oriented Design and C++"