Hello everyone and welcome back to Not So Random Software!
This week I have been thinking about teams; as someone who has to deal with computers every day it is easy to fall into the trap of applying software design principles to human people. Some elements do apply, but with humans the context and unique traits of each individual are everything, until they are not.
Enjoy the random walk!
One book
In this book Will Larson presents what he learned from scaling engineering organisations. I liked how he reduced the kernel of this hard topic to a few simple statements.
- The fundamental challenge of organizational design is sizing teams.
- The expected time to complete a new task approaches infinity as a team’s utilization approaches 100%
- Hiring and training are often a team’s biggest time investment
One article or paper
Reframing the 8 causes of conflict
No matter how hard you work on organizational design, conflict is something you will always have to face. This article goes into the details of how to reframe these conflicts to you can handle them positively, but I keep this short list always front of my mind:- Conflicting resources.
- Conflicting styles.
- Conflicting perceptions.
- Conflicting goals.
- Conflicting pressures.
- Conflicting roles.
- Different personal values.
- Unpredictable policies.
One video or podcast
GOTO 2017 • DDD Today – Modeling Uncertainty • Vaughn Vernon
People often tell me that it is hard to deal with unplanned events constantly interrupting you. I think this sentence is contradictory on its own. If something unpredictable is always happening, then it is a predictable process. You just need to reframe it like that.
In this video Vaughn Vernon talks about some of the unpredictable rare things that happen in distributed systems like out-or-order events and duplicated events. They are not unpredictable, they are happening all the time. Once you reframe it like that you can start building a protective infrastructure around them.
One tool
If you want some comfort and hope you can just abstract humans into a model, why don’t you model them using Insight Maker? An Insight Maker’s System Dynamic model reason in terms of stock, flow, variable and links. And there are some open source models too for you to learn! Here is one for Agile Project Management.
One snippet of code
Did you know you can use a Poisson distribution generator in Ruby with the SciRuby package? Well now you do! Here is an example:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
it 'should return correct rng' do # The expected rng output when 1 is set as the seed value exp_means = [1, 2, 2, 3, 4, 5, 6, 7, 8, 9] lambda_val = rand(10) + 1 exp_mean = exp_means[lambda_val - 1] seed = 1 rng = @engine.rng(lambda_val, seed) samples = 100 sum = 0 samples.times do v = rng.call sum += v end mean = sum / samples expect(mean.to_i).to be_within(1e-10).of(exp_mean) end |
One quote
A sick man only wants one thing, a healthy man wants 10,000 things.Confucius