• 0 Posts
  • 16 Comments
Joined 2 years ago
cake
Cake day: June 20th, 2023

help-circle
  • jedibob5@lemmy.worldtoProgrammer Humor@lemmy.mlBefore and after programming
    link
    fedilink
    English
    arrow-up
    75
    arrow-down
    1
    ·
    22 days ago

    The whitespace doesn’t bother me. Any IDE worth a damn will manage that for you. As for the type system, yeah, I strongly prefer static typing, but for simpler projects I can see the convenience of it.

    My real issue with Python comes with managing a development environment when multiple developers are working on it. Dependency management in Python is a headache, and while in theory, virtual envs should help with synchronizing environments from machine to machine, I still find it endlessly fiddly with a bunch of things that can go wrong that are hard to diagnose.

    Python is great for small scripts, proofs-of-concept, and such, but I wouldn’t write anything more heavy-duty than that in it.



  • “Product Degradation” has been the modus operandi for nearly every online service for like 10-15 years now, but it’s the Gamepass price increase is what got the FTC’s attention? Where was the FTC when the movie/TV streaming service market balkanized itself in an arms race to reinvent cable?

    Granted, I doubt the FTC could really do anything meaningful to stop enshittification given that corporations are effectively above the law these days, but it’s been blatantly obvious that this was going to be Gamepass’ strategy from day one. If this actually surprised anyone at the FTC, they really haven’t been paying attention.













  • It does some funky things with type coercion and comparison which I don’t particularly like, but I generally understand why it does things that way.

    A lot of the weird quirks of JS come from the desire to avoid completely blowing up and crashing as much as possible, which makes sense in a web dev context. Forcing weird operations to at least return something can prevent an unhandled error state in a single component from causing an entire page to crash, even if that component ends up malfunctioning as a result.