Month: November 2023
-
Circuit Breaker Achitecture
Read This Post: Circuit Breaker Achitecturehttps://lab.scub.net/architecture-patterns-the-circuit-breaker-8f79280771f1
-
HN: Push ‘if’ up and ‘for’ down
Read This Post: HN: Push ‘if’ up and ‘for’ downhttps://matklad.github.io/2023/11/15/push-ifs-up-and-fors-down.html Note: I rewrote a horrendous scheduler implementation a few months ago. It was an absolute mess of logic branches hidden deep down in small OOP methods. Turned it into a series of function calls in a single ‘main’ while loop using the pattern above (although I didn’t have a snazzy name for it at…