• 35 Posts
  • 185 Comments
Joined 7 months ago
cake
Cake day: February 10th, 2024

help-circle

  • We could quibble about the details, but all of them are fundamentally last-man-standing competitions.

    The Hunger Games was indeed one of them. I didn’t mention it because it’s the most obvious one in current cultural memory (no need for me to point it out) and because Battle Royale came a decade earlier, and Battle Royal half a century before that. The characters’ situation is probably older than printed words.

    Even if a competitive game format was unique to the Hindi film, it would be tough to argue that nobody else could have thought of that detail when making their own variation of the same theme. Calling it a “blatant rip-off” of Luck (2009) is quite a stretch.

    (Incidentally, the Luck synopsis that I read says it focuses on gambling, not competitive trials or children’s games. A quick look at the video confirms it.)






  • https://en.wikipedia.org/wiki/Internet_Draft

    I think it’s pretty clear that IETF drafts are not what author meant when he wrote draft, and I’m pretty sure the IETF doesn’t have much to do with C++ standards.

    Are you under the impression that there is no other sense of the word?

    It might help you in the future when you are discussing things like drafts, specifications, and proposals.

    As it turns out, I have done more than a little of that. Thankfully, I don’t usually see such condescending remarks in the process, nor such insistence on misunderstanding. Good luck to you, too.




  • mox@lemmy.sdf.orgOPtoProgramming@programming.devSafe C++
    link
    fedilink
    arrow-up
    8
    arrow-down
    9
    ·
    edit-2
    5 days ago

    this is yet another competing standard of static analysis.

    No, it isn’t.

    Those are linters. They might or might not discover problematic use of unsafe language features lurking in existing code.

    This proposal is a new iteration of the language and standard library. It would provide safe language features for preventing such problems existing in the first place.





  • How would this control people selling their used hardware? I don’t see anything about Sony trying to disable resold consoles.

    you’ll get “a product that works like new with genuine PlayStation replacement parts (as needed) that has been thoroughly cleaned, inspected and tested”. You will receive all the cables and paperwork you need for a PS5, and it comes with a 12-month manufacturer’s warranty

    That’s worth a premium to some people.



  • Control+F: VMS

    Phrase not found

    Disappointing that the author didn’t seem aware of Windows NT’s connections to VMS. Some fun facts:

    • Dave Cutler, the WNT lead architect, previously worked on VMS.
    • Several of WNT’s internal systems bear similarity to those in VMS.
    • VMS is a closer contemporary of Unix than WNT is.
    • Advancing each letter in “VMS” yields “WNT”. (It has long been speculated that this was no accident.)


  • I’m trying to understand Git, but it’s a giant conceptual leap.

    In that case, I suggest learning Mercurial first. Its underlying design is very similar to Git, but the interface is more consistent and does a much better job of presenting the concepts to humans (especially those already familiar with traditional version control). Then, once you’re comfortable with the concepts and commands in Mercurial, learn Git, since it’s everywhere nowadays.

    Consider learning at least one new language, if not immediately (since you’re in a hurry) then in your free time. Java is only one of many (and not even a particularly nice one IMHO). Try to find a language that you enjoy using; your programming life will be better for it. If you want something flexible and productive, consider Python. For more structure than that, maybe Go. If mobile apps interest you, there are Kotlin (Android), Swift (iOS), and Dart (both). If web development appeals to you, along with lots of job openings and lots of competition for those jobs, JavaScript. If you fancy the esoteric (and well-paying), Elixir and Erlang are worth a look. Lower level languages are in demand as well (e.g. C++, Rust) but they come with various kinds of pain that I wouldn’t recommend to someone in your situation.

    Above all, please make sure you’re reserving time for things that make you happy, sleep, and (if still possible) some kind of exercise. Your own physical and mental health are important. If you endure a bad working environment or wear yourself thin for too long, you will burn out, which won’t help you provide for yourself or anyone else.

    Take care, OP.


  • mox@lemmy.sdf.orgtoProgramming@programming.devWhy YAML sucks?
    link
    fedilink
    arrow-up
    27
    arrow-down
    1
    ·
    edit-2
    12 days ago

    One pattern I’ve noticed is people seeking a language that’s better than {JSON,XML,INI,etc} at wrangling their slightly complex configuration files, noticing the additional features and type support offered by YAML, and assuming it will be a good solution.

    Then, as their configs grow ever larger and more complex, they discover that expressing them in YAML requires large sections of deep nesting, long item sequences, and line wrapping. The syntax style that they saw working well in other places (e.g. certain programming languages) breaks down quickly at that level of complexity, making it difficult for humans to correctly write and follow, and leading to frequent errors.

    YAML doesn’t suck for small stuff, IMHO. (But it is more complex than necessary for small stuff.)

    For things likely to grow to medium-large size or complexity, I would recommend either breaking up the data into separate files, or looking for a different config/serialization language.




  • A large part of the reason Mercedes and other German brands were considered high quality was that they were more reliable than a lot of other brands on the market, while being good to drive.

    “Good to drive” is a bit of an understatement. German cars have enjoyed car enthusiasts’ favor for decades, despite often mediocre reliability, specifically because they were great to drive. There are multiple dimensions to that, ranging from the safety advantage (and fun) afforded by giving the driver a good feel for what’s going on between the tires and the road surface, to an excellent balance of responsiveness and comfort from well-designed suspension. VW even ran an ad campaign around it: Fahrvergnügen

    Japanese and American cars generally could not compete in this area.

    However, those same German cars also became famous for developing endless little problems over the course of ownership, from annoying rattles to failing parts that were either expensive to buy or difficult to reach (and therefore expensive to replace).

    If there was a time when German cars were known for above average reliability, I think it must have preceded the more recent generations. Maybe back before Japan had started investing in this area?