E11Intermediate
Technical Debt Estimation
30 minAfter code reviews
Format: Identify and quantify the "technical debt" in your project.
Technical debt checklist:
□ Hardcoded values (things that should be config)
□ TODO comments (features written but not implemented)
□ Commented-out code (should be deleted)
□ Features without tests
□ Outdated dependencies
□ Duplicated code
□ Overly complex functions (>50 lines)
□ Operations without error handling
Estimate the impact: For each piece of technical debt, answer:
- If you ignore it now, what happens in 6 months?
- How much time would it take to fix?
- If you don't fix it now, will it be harder or easier to fix later?