• 4am@lemmy.zip
    link
    fedilink
    arrow-up
    6
    arrow-down
    33
    ·
    27 days ago

    Fucking rent free. Jesus Christ you clowns, I almost want them to take away all your video games now

      • 4am@lemmy.zip
        link
        fedilink
        arrow-up
        4
        arrow-down
        7
        ·
        27 days ago

        I’ve never met anyone cool who cooks up strawmen memes because they’re exhausted all their actual criticisms.

        The piratesoftware shit is so tiresome. Who the fuck cares? What is this going to accomplish? He’s not even popular anymore

        • TrickDacy@lemmy.world
          link
          fedilink
          arrow-up
          5
          arrow-down
          2
          ·
          27 days ago

          Who cares? You. You’re the one who knows what this even is. ReNt FrEe is always a sign of having no argument

  • ferric_carcinization@lemmy.ml
    link
    fedilink
    English
    arrow-up
    4
    ·
    27 days ago

    I hope that the language’s ints are at most 32 bits. For 8 bits it could even be written by hand & the source code for a 32 bit version would only take up avg_line_len * 4GiB space for the source code of the function. But it might take a bit of time to compile a version that supports the full range of 64 or 128 bit ints.

    • Patches@ttrpg.network
      link
      fedilink
      arrow-up
      6
      ·
      edit-2
      27 days ago

      My mate, Paul, says all numbers after 700 repeat so we can stop there.

      We just give them different names so you think they’re going up.

    • ImplyingImplications@lemmy.ca
      link
      fedilink
      arrow-up
      17
      arrow-down
      26
      ·
      28 days ago

      YanDev is a literal pedophile. It’s honestly mind boggling people care more about a guy who won’t sign a petition on preserving video games than pedophiles and bigots. I don’t get the hate.

      • shea@lemmy.blahaj.zone
        link
        fedilink
        arrow-up
        14
        ·
        27 days ago

        it’s not that he “wont sign it”. lmao. its that he comoketely unprovoked started a hate campaign against it, literally on the spot hearing about it on stream, directed his viewers not to engage with the petition and started making up a bunch of reasons while talking in that confident-but-clulesss voice about how its destructive and awful and short sighted, making up a bunch of atuff about it that was immediately disproven, just spewing all this vitriol for no reason. Not engaging with it is one thing but actively fighting against a wonderul consumer rights campaign like this, not to mention how important iy is to gaming history to be able to preserve games, is so anti-gamer i dont understand how he ever got a following. Hes a dipsh who talks out of his butthole and he appeals to the kind of lobenly nerd that thinks being an asshole is cool

      • deur@feddit.nl
        link
        fedilink
        arrow-up
        41
        arrow-down
        4
        ·
        28 days ago

        Because this dumbass has existed for a lot longer than the single moment you are using to construct the strawman of “the enraged internet user over nothing other than a ‘petition’ (HUGE mischaracterization, he’s not eligible to sign in anyway)” and just like when yanderedev was finally widely controversial, the “yanderedev code is bad lol” memes and jokes were very popular.

        Can you at least pretend you understand how “the continuous flow of time works” before you post the dumbest shit ever?

  • xorollo@leminal.space
    link
    fedilink
    arrow-up
    6
    arrow-down
    1
    ·
    27 days ago

    This joke was not written by the dude pictured. The author wrote a book of funny code jokes.

  • QuazarOmega@lemy.lol
    link
    fedilink
    arrow-up
    42
    ·
    27 days ago

    No, no, you should group the return false lines together 😤😤

    if (number == 1) return false;
    else if (number == 3) return false;
    else if (number == 5) return false;
    //...
    else if (number == 2) return true;
    else if (number == 4) return true;
    //...
    
  • Euphoma@lemmy.ml
    link
    fedilink
    English
    arrow-up
    21
    ·
    27 days ago
    def even(n: int) -> bool:
        code = ""
        for i in range(0, n+1, 2):
            code += f"if {n} == {i}:\n out = True\n"
            j = i+1
            code += f"if {n} == {j}:\n out = False\n"
        local_vars = {}
        exec(code, {}, local_vars)
        return local_vars["out"]
    

    scalable version

    • xthexder@l.sw0.com
      link
      fedilink
      arrow-up
      5
      ·
      27 days ago

      Not even else if? Damn, I guess we’re checking all the numbers every time then. This is what peak performance looks like