• 0 Posts
  • 28 Comments
Joined 1 year ago
cake
Cake day: July 3rd, 2023

help-circle

  • I also don’t have any social media unless you count this account. I had a similar thought years ago that it was just going to make me unhappy.

    People at work the other day were talking about how they stress about which photos to post. I’m like why. That’s such a self inflicted wound.

    I used to have a FB account because people used it for events, but I never posted, and I used adblock to hide the main feed.

    Now when I do parties and stuff, I just send out Google calendar invites. (I should de-Google but that’s a long road I haven’t started down)





  • Friend of mine never got their driver’s license. They live in NYC and don’t need one. They also were concerned about safety- they have ADHD and are prone to inattentiveness, and they didn’t want to be driving a car when that manifested.

    I have a license but I also live in NYC. I don’t need to drive. It’s pretty great. It’s expensive in time money space and externalized costs, and it’s often less effective than just taking public transit.

    Unfortunately most of the US is resistant to investing in mass transit and density, so it’s going to be shitty car-first spaces for a while.












  • It’s strangely satisfying when the “this will probably never happen” test case finds a problem during development.

    I had tests for deleting that were like

    • create item a
    • create item b
    • delete item a via the code under test
    • assert item a is gone
    • assert item b is still there

    I thought maybe the whole bit with item b was excessive, but sure enough one day I accidentally fucked something up and deleted all the items, and the test pointed it out before the bad code left my local machine.