Altered the timeline
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearMI
    Mirodir
    3d ago 100%

    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).

    51
  • The official Nintendo Museum appears to be emulating SNES games on a Windows PC, which is slightly embarrassing
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearMI
    Mirodir
    6d ago 50%

    I hate to defend Nintendo, but they used their own Emulators in the NES and SNES Mini (Kachikachi and Canoe respectively). I would be surprised if they just yoinked one from the internet here.

    0
  • Lousy Smarch weather...
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearMI
    Mirodir
    2w ago 100%

    I'm guessing they just take the correct prefix (the first 3 letters of the correct month) and append "tember", no matter the month.

    5
  • [News] 'Sousou no Frieren' Gets Second Season
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearMI
    Mirodir
    3w ago 100%

    it was almost guaranteed we would get a sequel but it’s still nice to have an official confirmation now!

    I'm just relieved to see マッドハウス (madhouse) on there. I was mildly worried they'd give it the OPM treatment.

    21
  • Putin regime will collapse without warning, says freed gulag dissident
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearMI
    Mirodir
    4w ago 100%

    Don't wanna be pedantic (yes I do) but after a little bit of searching, the originally presented quote seems correct (without the "and" though, it seems). Your version is mixed with a common misquote "Slowly at first, then all at once." of that quote.

    5
  • About half a year ago (time is fleeting so I'm not sure how accurate that estimate is) my friend showed me the trailer to an upcoming MMO. I don't remember a lot. What I do remember is that the art-style, including characters, looked similar to Minecraft/Hytale, but less blocky on the world side, characters did look blocky though, I believe. I remember a scene where about 30 player characters invaded a small fortification with wooden palisade walls. At least one of the player characters had a staff or wand that would allow them to use fire magic. I believe the game was advertised as one of those "you can build outposts anywhere" kind of games (the ones that never work out) where that group of 30 players raided one of those outposts. I'm not sure what stage the game was at, but I believe it was a kickstarter campaign/looking for funding.

    10
    7
    196
    196 1mo ago
    Jump
    10 years of rule
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearMI
    Mirodir
    1mo ago 100%

    Tangentially reminds me of Richard Feynman's Cataclysm Sentence.

    If, in some cataclysm, all of scientific knowledge were to be destroyed, and only one sentence was passed on to the next generation of creatures, what statement would contain the most information in the fewest words?

    10
  • [DSK] Possessed Goat
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearMI
    Mirodir
    1mo ago 100%

    Even without discard value. Just the threat of throwing a surplus land to turn it into a 4/4 at instant speed lategame can strongly influence a game.

    1
  • Sus
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearMI
    Mirodir
    1mo ago 99%

    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)))

    109
  • Steam Families is here - Steam News
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearMI
    Mirodir
    1mo ago 100%

    From experience with the beta and memory, your wife (and you) will be able to choose which version to play. Either yours with a ton of DLC or hers with none. You should both be able to use the version with all DLC, but not at the same time.

    It's been a while since we tested this though so things might have changed, including my memory...

    2
  • Zero is not zero?
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearMI
    Mirodir
    1mo ago 100%

    Those are typcially the ones without any prefix

    With the notable exception of the kg...for some inexplicable reason.

    3
  • Steam Families is here - Steam News
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearMI
    Mirodir
    1mo ago 100%

    after leaving can’t join another for a year

    Can you fix this? There was enough misinformation floating around about this already when this feature went into beta.

    Adults can leave a family at any time, however, they will need to wait 1 year from when they joined the previous family to create or join a new family.

    it should say something like: "After joining, can't join another for a year"

    29
  • games
    Games 1mo ago
    Jump
    The chat in World of Warcraft is what keeps me coming back
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearMI
    Mirodir
    1mo ago 100%

    Despite all that, there was the Warlock who Ninja'd the Sword dropping in Naxx on the final day. Fun times. Now that we're slowly approaching Classic MoP we'll finally see if the masterplan worked out too.

    2
  • memes
    memes 1mo ago
    Jump
    Enough is enough
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearMI
    Mirodir
    1mo ago 100%

    When were talking about teaching kids the alphabet we need to train both individual and applied letters

    This is only slightly related but I once met a young (USAmerican) adult who thought the stripy horse animal's name was pronounced zed-bra in British English and it was really hard to convince her otherwise. In her mind zebra was strongly connected to Z-bra, so of course if someone was to pronounce the letter "zed" it would turn into "zed-bra" and not just into "zeh-bra".

    6
  • Is Google Training AI on YouTube Videos?
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearMI
    Mirodir
    2mo ago 100%

    That data is also publicly available (of course), so a model could be trained on it. I'd love to say I'd doubt Google/YouTube would ever do that, but at this point nothing would surprise me.

    6