• 0 Posts
  • 18 Comments
Joined 1 year ago
cake
Cake day: August 4th, 2023

help-circle



  • TheEntity@lemmy.worldtoLemmy Shitpost@lemmy.worldobesity
    link
    fedilink
    arrow-up
    34
    arrow-down
    4
    ·
    1 month ago

    Frankly that’s something I do not understand. Why this single specific word? We have dozens of terrible offensive words. Why this specific one is considered so bad we cannot even talk about it directly, even when merely discussing it? I would think discussing it and not directing it at someone would be pretty reasonable. As with every single other word.











  • If the hard mode merely makes everything into a bullet sponge with huge HP bar, no thanks. I’m perfectly fine with some games just being easier and others just being harder. Or having multiple well thought out difficulty options, but only if they are actually well thought out.


  • never mind, I looked it up. It’s a “reference” instead of a pointer. Similar, but unlike a pointer it doesn’t create a distinct variable in memory of its own.

    I’m almost sure it does create a distinct variable in memory. Internally it’s still a pointer, specifically a const pointer (not to be confused with a pointer to a const value; it’s the address that does not change). Think about it as a pointer that is only ever dereferenced and never used as a pointer. So yes, like the other commenter said, like an alias.