• 0 Posts
  • 100 Comments
Joined 1 year ago
cake
Cake day: September 7th, 2023

help-circle










  • anyhow2503@lemmy.worldtoComic Strips@lemmy.worldPlease take my job!
    link
    fedilink
    arrow-up
    15
    arrow-down
    1
    ·
    3 months ago

    Yes, thankfully the reasonable tech companies offering these services have decided to stop the training process after it was done once. The insane increase in energy consumption and hardware manufacturing for datacenter components and accelerators is purely coincidental and has nothing to do with demand for gimmicky generative AI services. Let’s also conveniently ignore the increasing inference cost of more complex models, while we’re at it.


  • It’s easy to accuse a noob of making the wrong choices when you have the experience necessary to make the right ones. There are a ton of outdated guides on the internet for every programming language. I’m almost certain there is some school kid downloading an old Borland C++ version right now, because the youtube video from 2010, regurgitating a tutorial from 2004 said so.


  • That’s good advice but I would add that Java really sucks at using “the type system to enforce invariants for data” and that this approach doesn’t have much to do with what most (especially Java programmers) would consider OOP. I die inside a little bit every time I need to use code generators or runtime reflection to solve a problem that really should not require it.






  • I wouldn’t recommend Docker for a production environment either, but there are plenty of container-based solutions that use OCI compatible images just fine and they are very widely used in production. Having said that, plenty of people run docker images in a homelab setting and they work fine. I don’t like running rootful containers under a system daemon, but calling it a giant mess doesn’t seem fair in my experience.


  • XML aims to be both human-readable and machine-readable, but manages neither. It’s only really worth it if you actually need the complexity or extensibility, otherwise it’s just a major pain to map XML structures to any sensible type representation. I’ve been forced to work with some of the protocols that people like to present as examples of good XML usage and I hate every single one of them.

    Fuck YAML though. That spec is longer and more complex than any other markup language I know of and it doesn’t have a single fully compliant implementation.