Powered by feedle

How I use git

@registerspill.thorstenball.com · 2 days ago

From aliases, to commits, to commit messages, to reviews, to workflows.

Joy & Curiosity #10

@registerspill.thorstenball.com · 5 days ago

Interesting & joyful things from the previous week

Topological sort

@rednafi.com · 5 days ago

I was fiddling with graphlib in the Python stdlib and found it quite nifty. It processes a Directed Acyclic Graph (DAG), where tasks (nodes) are connected by directed edges (dependencies), and returns the correct execution order. The “acyclic” part ensures no circular dependencies. Topological sorti...

Anatomy of Embedded Elixir

@underjord.io · 11 days ago

Working on the Nerves project, the Embedded framework for Elixir, has given me an increased appreciation for how Frank Hunleth and his collaborators through the years have structured things. And while I’ve found crossing into the Linux-heavy part of it difficult and frustrating there has been reason...

Joy & Curiosity #9

@registerspill.thorstenball.com · 12 days ago

Interesting & joyful things from the previous week

164 / CRDTs go brrr

@arne.me · 12 days ago

Issue #164 of Arne’s Weekly

Writing a circuit breaker in Go

@rednafi.com · 12 days ago

Besides retries, circuit breakers1 are probably one of the most commonly employed resilience patterns in distributed systems. While writing a retry routine is pretty simple, implementing a circuit breaker needs a little bit of work. I realized that I usually just go for off-the-shelf libraries for c...