1. Chai (bagged teas) reviews 2019-2023

    Updated Dec 2023. I love chai and I'm always looking for something that satisfies my cravings. So far I have only once tried hand-making my own chai spice mix, and it didn't turn out well... I'll let you know if I ever come up with something good!

    I don't drink …

    Tagged as : personal tea
  2. Writing Tests that Fail Well

    Writing better tests is a lifelong pursuit, apparently.

    One thing I've been noticing lately, especially while doing code reviews, is that we are usually thinking about how do I know the code worked.

    Great! But we are usually not thinking ahead about what am I going to do when the …

    Tagged as : python testing programming
  3. Thread Locals in Python: Mostly easy

    Thread locals are an interesting idea: a way to give each thread its own storage, useful for global state that you don't want to share between threads.

    The obvious caveat is that threadlocals are still effectively global (for the current thread), and like all global state, should be treated with …

Page 2 / 8