• 0 Posts
  • 11 Comments
Joined 2 days ago
cake
Cake day: August 14th, 2025

help-circle






  • Because if you’re looking for a subfolder you’re not looking for a file, and vice versa? It doesn’t matter much in sparse directories, but it annoys me having to scroll through a ton of files to find the folder I want in directories with both.

    I too like a lot of things about Mac, but finder could be improved, for sure.

    (I have gotten used to a lot of its features and hate Windows’ defaults too, so there’s that. I don’t think an ideal exists, unless it’s in Linux somewhere and I just need to dual boot the desktop and get it over with)




  • Writing the tests first also ensures that the test actually fails when you expect it to. I’ve seen test suites that were silently failing for years because they were (presumably) written after the fact and people just assumed that they tested what they said they did. Went in for some other clean up, stared at the test for 10 minutes wondering “how did this ever pass”, and then came to realize that test assertions in Jest inside a forEach apparently don’t run in the context of the test and failures won’t make the test fail. Changing the forEach to a for…of made it all fail immediately.