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

help-circle



  • Hell, current plant-based alternatives would be doing great too if they weren’t inexplicably more expensive. Impossible Meat has a lower environmental impact and requires fewer resources to make than beef? Great! Why does it cost more then? I’m not even vegetarian but I’d happily switch to fake burgers if they weren’t double the price.



  • It’s not really laziness. Storing as JSON solves or prevents a lot of problems you could run into with something bespoke and “optimally packed”, you just have the tradeoff of needing more storage for it. Even then, the increased storage can be largely mitigated with compression. JSON compresses very well.

    The problem is usually what they’re storing, not how they’re storing it. For example, The Witcher (first one) has ~20MB save files. These are mostly a bespoke packed binary format, but contain things like raw strings of descriptions in multiple localisations for items being carried, and complete descriptors of game quests. Things that should just be ID values that point to that data in the game files. It also leads with like… 13KB of zero-padding for some reason.




  • As someone in the dev team for a “business app”, we probably know about most or all of them, but they’re just not important enough for anyone in management to prioritize them as part of a sprint. It’s also possible no one has given us reproducible steps to make them happen, so we just straight up don’t know what to fix. Usually the former though.






  • vithigar@lemmy.catoSelfhosted@lemmy.worldHave an old NUC...
    link
    fedilink
    English
    arrow-up
    2
    ·
    3 months ago

    Same setup here, two USB drives dangling from my NUC. One of them is even notably slow for a USB drive. Still not an issue at all for home use. I’d probably need a dozen or more people all watching different things on Jellyfin at the same time before it even approached being a problem.






  • vithigar@lemmy.catoScience Memes@mander.xyzScallops
    link
    fedilink
    English
    arrow-up
    16
    ·
    4 months ago

    That description presumes our temporal dimension is their fourth spatial dimension though. It also makes meaningful interaction basically impossible.

    If it works more like Flatland and we have a shared temporal dimension then they’re simply able to perceive us, inside and out, from what we would consider every direction simultaneously. In much the same way that we can see the inside and full circumference of a two dimensional circle.


  • If I correctly understand what you are saying

    You did not, but he also picked an example that could be conflated with the 4-spaces issue.

    They’re talking about situations where you might want to align text by a number of spaces that isn’t divisible by your tab size. I’ll expand on their example:

    function test(&obj, &obj2, &a) {
    $obj->doSomething()
    ....->doSomethingElse()
    
    $obj2->doSomething()
    .....->doSomethingElse()
    
    $a->doSomething()
    ..->doSomethingElse()
    }
    

    Again, dots are “visible spaces” in this example, and being used to align chained methods with the length of the object name.