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

help-circle

  • For sure, that’s why my main accusation is them directing traffic to their bad article (could even be an attempt at getting search engines to associate their article with “android games 2024”) and not the AI stuff. I just started with the AI accusation because it was funny to me when OP and you already talked about AI (in games).

    AI or not, the post is poorly written and has little to no informative content.

    I do agree with you though, some people through around AI accusations way too quickly. Especially when they spot mistakes. LLMs are very good at NOT making grammatical or syntactical mistakes in English. If anything, those mistakes are often a sign of authenticity.


  • What games use AI to enrich the user experience? Highly doubting that one.

    Even more so, I highly suspect OP is written with anything but AI. Even if we give them the benefit of the doubt that they wrote it by hand, it’s very suspicious that their article on mobile games in 2024 has a url that states they’re about 2021 and mentions mostly games from back then. Using the Wayback Machine (I would never give them a click) reveals that it’s (mostly) the same article over all those years with the year in the title updated and some layout changes to fit the layout of the website.

    While I cannot say with near certainty that OP is written by AI, I do feel confident saying that this post exists solely to direct traffic to that shitty article.










  • From what I remember and what a quick search on the internet confirmed, B didn’t actually deny her anything. He actually went out of his way to do as much good for her as he could. He claims to have replied “Language.” because he knew other people at NASA with more say on her job would find her, which would get her into trouble (and they did find her even before his first Tweet).







  • Mirodir@discuss.tchncs.detoProgrammer Humor@programming.devSus
    link
    fedilink
    arrow-up
    110
    arrow-down
    1
    ·
    edit-2
    2 months ago

    Sure. You have to solve it from inside out:

    • not()…See comment below for this one, I was tricked is a base function that negates what’s inside (turning True to False and vice versa) giving it no parameter returns “True” (because no parameter counts as False)
    • str(x) turns x into a string, in this case it turns the boolean True into the text string ‘True’
    • min(x) returns the minimal element of an iterable. In this case the character ‘T’ because capital letters come before non-capital letters, otherwise it would return ‘e’ (I’m not entirely sure if it uses unicode, ascii or something else to compare characters, but usually capitals have a lower value than non-capitals and otherwise in alphabetical order ascending)
    • ord(x) returns the unicode number of x, in this case turning ‘T’ into the integer 84
    • range(x) creates an iterable from 0 to x (non-inclusive), in this case you can think of it as the list [0, 1, 2, …82, 83] (it’s technically an object of type range but details…)
    • sum(x) sums up all elements of a list, summing all numbers between 0 and 84 (non-inclusive) is 3486
    • chr(x) is the inverse of ord(x) and returns the character at position x, which, you guessed it, is ‘ඞ’ at position 3486.

    The huge coincidental part is that ඞ lies at a position that can be reached by a cumulative sum of integers between 0 and a given integer. From there on it’s only a question of finding a way to feed that integer into chr(sum(range(x)))