Blog

  • Google’s 2023 State of DevOps Report

    I’ve read the 2023 DORA State of DevOps report & summarized parts I found interesting. In a hurry, just read this bulleted list.

    (more…)
  • Stricter TypeScript >, <, and ===

    TypeScript needs a new feature for Type aliases to allow stricter comparison for >, <, and ===. Possibly for Interface as well, but I don’t think the demographic that utilizes Interface would care.

    (more…)
  • New Pet Horse

    We got a new pet horse, his name is Arzoom but we call ‘em Zoom (her majesty thinking of new barn name). He’s 16.2 hands, 12 years old, is super chill, and rides extremely well. I know her majesty will rack up the ribbons from dressage and other jumping events with him.

    Now to buy a truck to haul him and his friends around….

    (more…)
  • How Do You Change UI Design When Testing it is Hard?

    TDD in non-UI: “Man, this code requires a lot of stubs just to make 1 function call. This API design is bad, I should fix it”.

    TDD in UI: “Man, this code requires a lot of stubs, I should fix. Hey Visual Designer, can you… no? Ok. Hey API designer… can you? No… ok.”

    This is one reason of many why UI developers like back-end for front-ends. When testing your UI, having to stub 20 http requests + 2 JWT tokens just to show 1 screen is painful. Having just 1 or 3 API’s for a screen is so much easier, and makes your tests less likely to break in the future.

    (more…)