Talk by Adam Tornhill from CodeScene

Technical Debt and Bad Code

  • Empirical data shows that there is no trade-off between speed and quality in Software Engineering
  • Making the concept of code quality objective
  • Software Engineers solve problems, not write code
  • More time is spent on reading and understanding code than on writing code
  • Significant percentage of engineering time (20-40%) goes to technical debt, but the real cost is most likely higher when taking into consideration the additional overhead of the additional number of engineers

Two Laws of Software Evolution

  • Continuous change (a system must continuously adapt or it becomes progressively less satisfactory) β†’ Quick reward
  • Increasing complexity (as a system evolves, its complexity increases unless work is done to maintain or reduce it) β†’ Slow feedback

Hyperbolic Discounting

  • Decision making bias, future downsides are underestimated

Visualizing Code Quality

  • Code Quality is a subjective concept
  • There isn’t a single number to represent quality, it will have to be measured through a selection of specific attributes
  • Indicators at 3 different levels:
    • Module and class design issues (Low Cohesion, Brain Class, Lack of Modularity)
    • Function issues (brain methods, copy-pasted logic, primitive obsession)
    • Implementations issues (deeply nested logic, complex conditionals,…)

Code Base Visualization

  • Example of visualising a big project split over multiple repositories (Ethereum)

Does Code Quality Matter

How Much Does It Matter

  • Implementing a ticket in a healthy code base is significantly faster
    • Important for velocity and speed to market
  • Worst case time is significantly worse in unhealthy code
  • Unhealthy code has significantly more bugs
  • Bugs result in unplanned work which kills productivity
  • Rethinking Productivity in Software Engineering
  • What causes unhappiness amongst developers?
    • Stuck in problem-solving, time pressure, working with bad code

How Would You Use It

  • Create awareness through visualisations
  • Fight hyperbolic discounting
  • Build a business case: when working on a project in unhealthy code, the time estimate can go up a significant factor. A case can be made for refactoring.

The Code Red Paper

Behavior Code Analysis

  • Not only healthy code is important, but also how engineers interact with it
  • Prioritise based on change frequency (based on git commit frequency)
  • Not all technical debt must be fixed, focus on parts with high change frequency