Software engineer and collector of expensive hobbies.

I was /u/TortoiseWrath but then reddit imploded.

  • 0 Posts
  • 13 Comments
Joined 1 year ago
cake
Cake day: June 15th, 2023

help-circle

  • Or driving in general. As an American who didn’t get a driver’s license until I was 21 (gasp! so old) due to some reasons, I can attest that many, many people here simply can’t comprehend the idea of someone over 17 or so not having one. I got turned away from a hotel once because they didn’t know how to use a passport as an ID.

    The only other people I’ve met with this problem were immigrants. And we were always able to bond over lamentations of how difficult it is to solve this problem… the entire system to get a license here is built around the assumption that everyone does it in high school, so every step of the way is some roadblock like “simply drive to your driving test appointment”…











  • Not relevant to lemmy (yet), but this does break down a bit at very large scales. (Source: am infra eng at YouTube.)

    System architecture (particularly storage) is certainly by far the largest contributor to web performance, but the language of choice and its execution environment can matter. It’s not so important when it’s the difference between using 51% and 50% of some server’s CPU or serving requests in 101 vs 100 ms, but when it’s the difference between running 5100 and 5000 servers or blocking threads for 101 vs 100 CPU-hours per second, you’ll feel it.

    Languages also build up cultures and ecosystems surrounding them that can lend themselves to certain architectural decisions that might not be beneficial. I think one of the major reasons they migrated the YouTube backend from Python to C++ isn’t really anything to do with the core languages themselves, but the fact that existing C++ libraries tend to be way more optimized than their Python equivalents, so we wouldn’t have to invest as much in developing more efficient libraries.