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

help-circle

  • I don’t think Morrowind needs a remake. A remake would likely try to smooth over the game’s rough edges, but the rough edges are a big part of what makes the game actually work, imo.

    Now, at this point I don’t think I trust Bethesda enough to get an Oblivion remake right, either, but Oblivion was very much held back by technological limitations of the time, and in my opinion it hasn’t aged very well. I can at least see the potential of an Oblivion remake where they don’t have to be concerned about how much they can fit on an Xbox 360 disc.



  • jedibob5@lemmy.worldtoProgrammer Humor@lemmy.mlBefore and after programming
    link
    fedilink
    English
    arrow-up
    75
    arrow-down
    1
    ·
    8 months 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.




  • Is this implying that a publicly-traded corporation whose software is installed on millions of computers around the world has the same level of agency and responsibility as a preschooler?

    I mean, yes, Microsoft bears responsibility for blindly accepting whatever deployment package CrowdStrike gave it and immediately yeeting it out to 100% of customers via Windows Update without any kind of validation or incremental rollout, and should probably be sued for it. That still doesn’t negate the complete and catastrophic failures at every step of the development process on the part of CrowdStrike. It takes a lot of people to fuck up this bad.


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




  • I don’t think online resources are necessarily a replacement for in-person classroom instruction, and even if they were, it’s not a reason to take the option of home ec classes away from those who want it.

    That said, I think it’s at least a good thing that so many good internet resources on cooking exist, and it helps mitigate the problem to some degree. Still, it takes time and energy to seek out those resources, learn from them, and put them into practice. Not easy to do for anyone who has been worked far past the point of burnout and are still just scraping by.


  • '90s-'00s McDonald’s primarily appealed to kids, as the colorful characters and Happy Meals were a big part of the draw.

    '10s-'20s McDonalds has pivoted to marketing towards adults, in part because they had come under fire for marketing greasy, oversalted calorie bombs to children as the US obesity epidemic took off. The other reason is that mid-to-low income adults became a much more lucrative demographic after decades of wage stagnation basically created an entire generation that’s too tired and overworked to cook for themselves but too poor to go out to eat anywhere else.









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