Refactoring development

Ramblings from the trenches...

View on GitHub
24 August 2016

Feedback Loops

by

Feedback Loops aka Cycle Time |

| The key to Programming like running any business is about one thing only.

Feedback loops.

With good feedback even if you start in completely the wrong direction you will be able to correct your course early on. With good feedback loops you can take risks, and risks allow you to have simpler designs and happier customers.

Without good feedback you have fear. Fear of breaking what you already have, fear of building the wrong thing (create a massive specification document that is signed off and locked down to mitigate this ;-)).

I must not fear. Fear is the mind-killer. Fear is the little-death that brings total obliteration. I will face my fear. I will permit it to pass over me and through me. And when it has gone past I will turn the inner eye to see its path. Where the fear has gone there will be nothing. Only I will remain. Frank herbert

How tight can you make yours?

NCrunch and Karma can make the TDD cycle pretty tight - the tests are running while you’re still typing! (Check out JetBrain’s take on it)

CI allows lots of integration tests to run. ( CD gets the results in front of a real user (human or otherwise).

Keep things simple - keep branching to a minimum so the above is easier (1 branch is best) - branch by abstraction instead.

Maybe we should be taking a step back and monitoring our development feedback curve,

Dev feedback loops

  1. How long to incremental compile? (compile a second time when you didn't change anything )
  2. How long to run the quick tests?
  3. How long for the CI built to go green?
  4. How long to deploy a system to an environment ?
  5. How long to determine whether a deployed system works? potentially Drop independent QA like Yahoo! have.
  6. How long to ship it?

Where does Pair Programming fit in? - for me it’s at 0 as you’re constantly improving, not being lazy, staying focused and coming up with hybrid ideas that neither of you would have had on your own.

Production feedback loops

It doesn’t stop there, feedback from the live system is also critical - whether you are using Splunk or ELK, to collect that data allows you to see how a new system reacts compared with the previous version.

  1. Health checks - are the power on self tests and heartbeats working?
  2. Memory,  disk access,  processor, exceptions, disk usage - does the uat version have a better profile than the current prod? How does one hour / day / week differ from another?
  3. Performance bottlenecks - where's the current kink in the system?
  4. Capacity and trending - do you need more hardware / disk space?

UX

Having a good user experience when using a website / app is all about getting good timely feedback - the difference between half a second and a full second can make all the difference in terms of having a flowing experience.

Personal feedback loops

I’m not sure all of these quite classify as feedback loops (except perhaps to make the processes more streamlined for the next guy that joins)

  1. How fast can a new person get permission and installs to work on the project?
  2. How quickly can new joiners become productive?
  3. How often do you have a retrospective?
  4. Statutory Performance appraisals (too long a loop!)

|

Zoning - Minimise Distractions

                                                | | Minimise Distractions Pair KanBan Listen to music - Don't listen to other peoples phone conferences! Stay in the zone - if things are going well, keep the ball rolling as long as possible!

When not to be focused?

If you are stuck, let your unconscious mind work on the problem while you do something completely different (whether that’s helping a colleague or having a gym session).

Solving problems the hard way You’re going to get stuck on a gottcha, and you can keep banging your head on the brick wall until it gives way and you figure out what the slight tweak was that makes it all work. This can easily take days if you’re not careful!

Solving problems the smart way Rather than let the gotch turn into a GumptionTrap,

The great news is that quite often (days / weeks / months) later you’ll stumble on what you were doing wrong originally and (if that way was better than the workaround) you’ll be able to switch back to it. Asynchronous gotcha optimisation?

Either way, cache your experience - leave a trail for you or others to follow so if they do walk into the same problem later on (whether as a comment or a stack overflow answer) they’ll fix it sooner…

tags: