Can someone give me a good definition of what they mean by the phrase "Technical Debt"?
|
5
|
|||||||||||||||||||
|
|
|
From the man himself,
|
|||
|
|
|
|
A good answer here. |
|||
|
|
|
|
Jeff Atwood's blog, Paying Down Your Technical Debt |
|||
|
|
|
|
It's a metaphor mentioned by Ward Cunningham, Martin Fowler, Jeff Atwood, Steve McConnell, Uncle Bob. The concept tries to put into numbers measurable software metrics like these:
The idea is that you could get a number from these metrics, which would represent the technical debt - in $$$. You always pay interest on your technical debt when you add functionality to the code, or fix defects. If you don't pay back the technical debt - by fixing the issues - you will pay increasing interest forever. A business person may find this argument more reasonable than the pure technical ones. You can see this idea in action with the technical debt plugin for Sonar: More info here: http://sonar.codehaus.org/evaluate-your-technical-debt-with-sonar/ |
|||
|
|
|
|
Technical debt is bad code. That's it. The debt is a metaphor: If you have a lot of bad code, it prevents you from getting new work done because you are spending all your time dealing with the bad code. If you have a lot of debt, it prevents you from using your money on other things, because you spend it all on interest. Technical debt as a metaphor is used to communicate to non-programmers what every programmer knows: a code base full of hacks takes more effort to maintain than a clean code base. This leads to the paradox: shortcuts taken to speed development actually slow it down. Technical debt is a way to explain this to non-programmers. |
|||
|
|
