Month: November 2023


  • Circuit Breaker Achitecture

    https://lab.scub.net/architecture-patterns-the-circuit-breaker-8f79280771f1

    Read This Post: Circuit Breaker Achitecture
  • HN: Push ‘if’ up and ‘for’ down

    ,

    https://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…

    Read This Post: HN: Push ‘if’ up and ‘for’ down