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

help-circle


  • That’s what I always say. Targeted advertising should be illegal. Contextual advertising is acceptable.

    If I’m on the star trek wiki, serve me ads for star trek, sci-fi, and whatever. You don’t need to know anything about me specifically.

    We’d still need to do something about like ads that take up too much space, hurt page performance, or introduce malware, but removing the stalking would be an improvement


  • 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.








  • I was a full time test engineer / QA person for a while. My motto quickly became “nothing ever works”.

    Pretty much any ticket behind a static copy change would have some problem or oversight. Sometimes even those would (did you account for very narrow view ports?)

    Good developers would take this feedback gracefully. “Shit, you’re right, I need to account for mobile users.”

    Bad developers would get defensive and upset. “We barely have any mobile users (me: did you check?). Alan already approved so I’m merging. I don’t want to waste time on this”




  • 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.