• Codex@lemmy.world
    link
    fedilink
    arrow-up
    60
    ·
    7 months ago

    This is why I stick to Rust. The gender affirming surgery takes some getting used to, but at least I have both legs.

  • Tolookah@discuss.tchncs.de
    link
    fedilink
    arrow-up
    34
    ·
    7 months ago

    He forgot to allocate his leg.

    Also, it looks like he pointed to foot correctly. I’m surprised he didn’t shoot his hand, the pointer to a pointer to a foot.

  • observantTrapezium@lemmy.ca
    link
    fedilink
    arrow-up
    26
    ·
    7 months ago

    I’ve heard this trope before but I’m skeptic. I’m not a C expert but I can’t believe memory bugs in that language are so much more benign than in C++.

    • DarkenLM@kbin.social
      link
      fedilink
      arrow-up
      32
      arrow-down
      1
      ·
      edit-2
      7 months ago

      With C, you need to carefully craft your own gun with just iron ingots and a hammer. You will shoot yourself in the foot, but at least you’ll have the knowledge that it was your craftsmanship that led to it.

      With C++, there are already prebuilt guns and tons of modifications that you can combine at will. If you shove it in the right way, you can make a flintlock shoot a 50 cal, but don’t complain when your whole leg gets obliterated.

    • xmunk@sh.itjust.works
      link
      fedilink
      arrow-up
      16
      ·
      7 months ago

      It is indeed a trope and a mostly false one - C++ introduces more dramatic ways to footgun yourself but a plethora of tools to make it easier to avoid them - in particular the built in library functions actually encourage good C++ programming practices…

      Well, let’s just ignore gets().

      • MajorHavoc@lemmy.world
        link
        fedilink
        arrow-up
        6
        ·
        7 months ago

        Yep. Incredibly powerful, and it will not hesitate to help you blow your own legs off.

        The big difference is that git will save your legs in reflog for a couple of weeks.

        • magic_lobster_party@kbin.social
          link
          fedilink
          arrow-up
          2
          ·
          7 months ago

          Learning about reflog was a game changer. Now I’m never afraid of breaking my branch. If I mess up, I can always git reset —hard to a previous state.

          Another game changer was learning that a perfectly valid way of doing squash is to do git reset to an earlier commit and then do git commit -a. Saves a lot of rebasing headache.

  • HStone32@lemmy.world
    link
    fedilink
    arrow-up
    2
    ·
    7 months ago

    I don’t want to give the impression of being elitist, nor am I trying to make myself look super skilled, but whenever I hear people criticizing C for being unsafe, or for lacking some library, I can’t help but think that’s a skill issue, not an actual problem with the language.

    • lseif@sopuli.xyz
      link
      fedilink
      arrow-up
      1
      ·
      7 months ago

      i think its more a critism of using C where it shouldnt, or by people who shouldnt use it. certainly a skill issue, but a lot of people simply will make mistakes, and better to be safe. C of course has its uses though