« BackInfinite Craftneal.funSubmitted by kretaceous a year ago
  • procparam a year ago

    My friends and I have played so much already that the list of elements on the sidebar is unwieldy. You can paste this little js snippet into the console to add a basic search feature

      items = () => [...document.querySelectorAll('.items div.item')]
      show = (elt) => elt.style.display=''
      hide = (elt) => elt.style.display='none'
      search = (text) => (items().forEach(show), items().filter(e => !e.innerText.toLowerCase().includes(text.toLowerCase())).forEach(hide))
      inputElt = document.createElement('input'); inputElt.type='text';
      document.querySelector('.sidebar').prepend(inputElt)
      function handle(e) { search(e.target.value) }
      inputElt.addEventListener('input', handle)
    • starshadowx2 a year ago

      This is really cool, thanks. I was just using ctrl+f to find things. I've got like 1200+ words right now so I totally understand the unwieldy-ness.

      • cooper_ganglia a year ago

        Thanks for this! I ended up hitting refresh because of how long my list eventually got, I wish I'd seen this comment 10 minutes sooner!

        Oh well, I guess now I'm forced to sink in another half-hour this evening! ;)

        • k17044419 a year ago

          [flagged]

        • smarkov a year ago

          I couldn't find any information but does this use some kind of LLM to derive the combinations from? It makes a request to the backend every time you combine items which sometimes takes >500ms, and also supports some really wild combinations that I highly doubt someone has taken the time to come up with. It would also explain why the icons are emoji's, it would be fairly trivial to ask ChatGPT to give you the result of Fire + Water and an accompanying emoji.

          • JeremyNT a year ago

            You are correct according to this tweet [0]. That may become inaccessible as Nitter dies, but the text is:

            > Working on an endless crafting game with llama 2

            along with a video of this game.

            [0] https://nitter.cz/nealagarwal/status/1747284257582506102#m

            • madeofpalk a year ago

              Ahh, neat application of it. Explains the somewhat dubious combinations I was seeing.

              • hinkley a year ago

                Forest + fire = smoke

                Mud + water = swamp

                Swamp + plant = Venus Flytrap

                Okay, okay.

                Venus Flytrap + Smoke = smoke detector

                <confused smile meme>

                • Night_Thastus a year ago

                  Tree + Water = river was also pretty baffling.

                  Unfortunate. I can see the appeal of using an LLM for this but the results are pretty mediocre.

                  • ProllyInfamous a year ago

                    Tree + Water = River

                    This is a great result, a branching of water/wood.

                    • nerdponx a year ago

                      I also got Dandelion + Engine = Helicopter, along these same lines.

                      • starphobia a year ago

                        I got s'more + smoke detector = captain hook

                      • cushpush a year ago

                        low-key genius or high-key misunderstood

                        • TeMPOraL a year ago

                          As this is powered by an LLM, you are exploring its latent space. That means there isn't one logic behind everything - any association is fair game. Here, probably the strongest one wins.

                          • teaearlgraycold a year ago

                            LLMs are a great way to prompt human ingenuity in mental gymnastics

                            • cushpush a year ago

                              Great point.

                              • thih9 a year ago

                                I got “edward” after linking “vampire” and “eclipse” so yeah.

                                • undefined a year ago
                                  [deleted]
                                  • cnity a year ago

                                    Not sure if this is the point you're making, but that is probably due to "Edward Cullen" of Twilight.

                                    • o_pax a year ago

                                      And "Edward" + "Love" is "Bella".

                                      • crweemtae a year ago

                                        how do i create love?

                                        • sawer a year ago

                                          To make love you have to put together Prison+Venus= love

                                      • Molly_janes a year ago

                                        oh my got same

                                        • FireWall_2828 a year ago

                                          That's weird, I did the same thing but I just got "Twilight".

                                        • RM3578 a year ago

                                          [flagged]

                                  • undefined a year ago
                                    [deleted]
                                  • vintermann a year ago

                                    As usual with language models, you have to put in the work yourself to have fun with them.

                                    I laughed when "Vindaloo + Bubble" gave me "Burp", and "Burp + No Bacon" gave me "Sad"

                                    • madaxe_again a year ago

                                      Ham Solo + Darth Bacon = Pork Star

                                      • dzdt a year ago

                                        Ninja + Pig = Pork Chop

                                      • sumtechguy a year ago

                                        The rewilding guys would probably say 'that tracks'. Many of their efforts to get rivers to flow year round usually involve trees. Moss, bugs, rodents and grasses first then trees. Usually can help many areas to have year round streams again. As roots help water linger longer in an area. Which leads to streams.

                                        • ilaksh a year ago

                                          Obviously the prompt to the LLM is just to create the most obvious association. It may not mention "crafting" at all. Maybe it does though. Is there something obvious to craft that uses a tree and water in the process?

                                          • vintermann a year ago

                                            To design a game like this you need to do a lot better than just creating the obvious association. It needs a mix of obvious recipes and clever recipes, so that there's challenge and a sense of achievement. Also, there's a starting point. What should the graph look like?

                                            I'm sure Neal has done hard work in getting it right.

                                          • grotorea a year ago

                                            If you look at a river system from space I guess it looks tree-like with branches.

                                            • cushpush a year ago

                                              the tree of water is the global river system." very hydrological

                                            • raible a year ago

                                              Weed + tree = bong!

                                              • guhguhgugh a year ago

                                                how do you make weed lol

                                              • hombre_fatal a year ago

                                                Meh, what would be your great response to Tree + Water?

                                                A human can only generate a small fraction of the combinations and would have a hard time coming up with most combinations which are already nonsensical.

                                                What is your non-disappointing idea for, idk, Tears + Pottery (AI: Bowl) or Money + Salt Lick (AI: Cow) or Skull + Lake (AI: Loch Ness) or Dracula + Pirate (AI: Vampirate) or Curse + Money (AI: Debt)? Now do that thousands of more times.

                                                The infinite aspect is the thing that keeps it interesting, I think. The fun is getting a new, weird result like "Dracula" and "Pot of Gold" and seeing if you can generate new weird results from the existing set.

                                                • baq a year ago

                                                  I somehow got to Mega Evolution which I got from megalodon and some pokemon, but don’t ask me how to get to Pokémon.

                                                  Anyway, once you get that kind of a modifier, anything’s game for megaification.

                                                  • ceroxylon a year ago

                                                    Tree + Water is easy: Mangrove, Bald Cypress, Rhizophora, etc

                                                    • hombre_fatal a year ago

                                                      I wouldn't consider those to be better. You're enhancing the tree side of the equation but gave no examples of the water side.

                                                      And why didn't you do the rest of my examples? ;)

                                                    • TomK32 a year ago

                                                      Loch Ness? I skipped to the Loch Ness Monster. Got the Lake only later on. And then I got Nessie.

                                                      This is a Quagmire

                                                      • bpye a year ago

                                                        Yeah Loch Ness Monster + Water gave me Nessie

                                                        • TomK32 a year ago

                                                          Porkosaurus, Soup Nazi, Sphinxie, Sodium Chloride, Abdominable Snowman, Baconator and both Yeti and Godzilla. And Yogazilla which is a "First Discovery".

                                                          Found myself: Thomas the locomotive

                                                          • CodeMage a year ago

                                                            Some of my favorite first discoveries:

                                                            - Cactus Missile

                                                            - Mammoth Marula

                                                            - Super Lizard Wizard

                                                            - Cheesethorn Bush

                                                            - Cheesnado Lizard Wizard

                                                            - Cheesnado 2: Cheesnado Strikes Back

                                                            - Cheesewolftrap

                                                            • starphobia a year ago

                                                              I got Gay Bachelorette Party, first discovery

                                                              • L0Wquality a year ago

                                                                Glitter ketchup, same

                                                                • xanderplayz16 a year ago

                                                                  [flagged]

                                                              • jeff900 a year ago

                                                                [flagged]

                                                                • jeff900 a year ago

                                                                  [flagged]

                                                                  • jeff900 a year ago

                                                                    [flagged]

                                                                • time_paradox a year ago

                                                                  [flagged]

                                                                • gs17 a year ago

                                                                  > Tears + Pottery (AI: Bowl)

                                                                  Urn

                                                                  • geoelectric a year ago

                                                                    Money + Salt Lick makes sense, if it’s a Cash Cow.

                                                                    • dr_dshiv a year ago

                                                                      Did you figure out how to get math? I’ve been trying so hard!

                                                                      • smus a year ago

                                                                        Tree + water = canoe

                                                                        • dylan604 a year ago

                                                                          Jungle

                                                                          Forest

                                                                          Fruit

                                                                          Nuts

                                                                      • Zobat a year ago

                                                                        Window + Dune = Sandwich

                                                                        That one surprised me.

                                                                        Sandwich + Sphinx = Sphinxwich

                                                                        This one delighted me. The Sphinxwich doesn't combine well with other stuff though.

                                                                        • cartucho1 a year ago

                                                                          I got Atlantis + Spongebob = Atlantis Squarepantis :D

                                                                          • time_paradox a year ago

                                                                            [flagged]

                                                                        • MrJohz a year ago

                                                                          I found fish + fire = sushi amusing - it isn't necessarily wrong, but it also doesn't feel right either...

                                                                          • hinkley a year ago

                                                                            How did you get to fish? Because boy do I have a story for you.

                                                                            Mine starts in Atlantis, then Poseidon gives me a fish. Then two fish turned into a shark and I ended up with a sharknado.

                                                                            Then I found the titanic, we hit an iceberg, I found a treasure and then pirates chased me, but I got away, sold the treasure for money and became the richest man, then climbed Mt Everest, and later had a tea party.

                                                                            Anyway, there has to be a better way to get fish than Unda da Sea.

                                                                            • madacol a year ago

                                                                              Just add water like 5 times, and you get fish

                                                                          • vintermann a year ago

                                                                            Bankrupt + Pirate = Captain Jack Sparrow

                                                                            Bacon + Judaism = No Bacon

                                                                            • starphobia a year ago

                                                                              holy water + wine = catholic church

                                                                            • sva_ a year ago

                                                                              My favorite was Lotus Flower + Mud = Buddha

                                                                              • vintermann a year ago

                                                                                Oh, that's a good one! I'm trying to collect religions and countries.

                                                                                • starphobia a year ago

                                                                                  [flagged]

                                                                                • verocan_tellyou a year ago

                                                                                  Lotus+Flower=Buddha Buddha+Religion=Nirvana Nirvana+Music=Kurt Cobain

                                                                                  • o3wui4hgolnj a year ago

                                                                                    I got bob marley, reggae, ska, bob marley and the wailers, and flo rida the rapper

                                                                                    • starphobia a year ago

                                                                                      [flagged]

                                                                                  • skykooler a year ago

                                                                                    I've also got a few where it just mashes adjectives together; so far I've found Time Poseidon, Rainbow Steam Robocloud and Broken Unicorn, among other similar ones.

                                                                                    • vharuck a year ago

                                                                                      My best so far is Superninjaghostmansnowghostman

                                                                                    • tmtvl a year ago

                                                                                      North America + Fire = Canada. Naturally.

                                                                                      • hinkley a year ago

                                                                                        And if you set Canada on fire?

                                                                                        Maple syrup.

                                                                                      • frud a year ago

                                                                                        Fish + fire = sushi

                                                                                        • hinkley a year ago

                                                                                          Did you know that Bill Gates is the richest samurai?

                                                                                        • vharuck a year ago

                                                                                          Nuclear power station + Tsunami = Fukushima

                                                                                          • starphobia a year ago

                                                                                            Mountain range + Pollen = Hay Fever

                                                                                            • starphobia a year ago

                                                                                              volcano + fish = sushi

                                                                                            • drekipus a year ago

                                                                                              I got swamp with plant + water.

                                                                                              Then swamp + fire = dragon

                                                                                              • ActionHank a year ago

                                                                                                Megalopolis + Volcano = Pompeii

                                                                                                • hinkley a year ago

                                                                                                  Sushi + Asia = Japan

                                                                                                  Japan + Destruction = Godzilla

                                                                                                  Godzilla + Megalodon = Cthulhu

                                                                                                  <drops mic>

                                                                                                  • starphobia a year ago

                                                                                                    Catholic Church + Pride = Pope

                                                                                                  • Grimm_Reaper a year ago

                                                                                                    how do you get an ICBM? (Inter-Continental-Ballistic-Missile)

                                                                                                    • FireWall_2828 a year ago

                                                                                                      Smoke detector + fire = Firefighter

                                                                                                      • recursivecaveat a year ago

                                                                                                        I got (hurricane + crocodile = hurricodile) lol

                                                                                                        • hinkley a year ago

                                                                                                          Cthulhu + richer = Richthulhu

                                                                                                          • undefined a year ago
                                                                                                            [deleted]
                                                                                                          • starphobia a year ago

                                                                                                            [flagged]

                                                                                                          • nopassrecover a year ago

                                                                                                            I think it’s the first time AI has made me chuckle. I ended up with “Riddle”, so I combined that with “Tornado” and it gave me “Twister” which I thought was a great Christmas Cracker pun, and then when I combined Riddle with “Bottle” it gave me “Genie”.

                                                                                                            • nealfunlover a year ago

                                                                                                              Here’s all the combinations I’ve came up with so far: Swamp + Mud = Quagmire Divorce + God = Odd Sun + Hourglass = Time Glass + Hourglass = Time Ice + Oasis = Penguin Sand + Stone = Pyramid Mirage + Time = Illusion Dinosaur + Lightning = Godzilla Oasis + Water = Mirage Egg + Time = chicken Golem + tide = Titan Titan + time = Chronos Poseidon + lighting = Zeus Titan + Chronos = Cronus Time + Fire = Sun Sun * Titan = Apollo Ash + Mud = Clay Godzilla + Love = God ? + ? = Spongebob Unicorn+Gold=Alchemy Unicorn+Alchemy = Philosopher’s Stone Gold+Alchemy=Midas swamp+chicken=duck duck+roast=goose goose+goose=flock flock+wind=flight Narwhal+time=unicorn Lightning + Treasure = lots of stuff (Rich, idk Narwhal+unicorn=narwhalicorn Jonah+time=narwhal Whale+oasis=jonah Plant+seed=tree noah+ark=flood curse+jesus=cross bank+intrest=money dandelion+cactus=desert Back to the future+riddle=time travel back to the future+time=delorian Desert+indiana jones=tresure

                                                                                                              • Kunsang a year ago

                                                                                                                Astronomer + Hangover = Astrologer

                                                                                                                • nicoty a year ago

                                                                                                                  Nice. At some point I got " Crypto-gangbangasm + Cthulhu Lilith Porn".

                                                                                                                  • ithkuil a year ago

                                                                                                                    My favourite was: "Chuck Norris" + "a-hole" = "dead a-hole"

                                                                                                                    • jimmy778hahah a year ago

                                                                                                                      [flagged]

                                                                                                                    • mynamesjeffy a year ago

                                                                                                                      [flagged]

                                                                                                                  • dhc02 a year ago

                                                                                                                    Might be worth using farside for the link, which I found out about today on HN.

                                                                                                                    https://farside.link/https://twitter.com/nealagarwal/status/...

                                                                                                                    • ycombinatrix a year ago

                                                                                                                      [dead]

                                                                                                                    • andrei a year ago

                                                                                                                      just link to the real thing :) [0]

                                                                                                                      [0]: https://twitter.com/nealagarwal/status/1747284257582506102

                                                                                                                      • Aachen a year ago

                                                                                                                        Such that it's already dead?

                                                                                                                      • WaxProlix a year ago

                                                                                                                        Off topic, why is nitter dying? I've noticed the main instance's SSL cert is down for a bit now, and other instances are pretty rate limited. Did something happen/change?

                                                                                                                      • samstave a year ago

                                                                                                                        Neat.

                                                                                                                        Campfire+sushi took about 10 seconds before it gave up and did not combine them.

                                                                                                                        • jarboot a year ago

                                                                                                                          The request looks like "https://neal.fun/api/infinite-craft/pair?first=Phoenix&secon..." so it's probably typically caching the combination of phoenix+seeds but if there is no cache entry it would use llama to make up something. If there's a lot of attention on the site the llm service might be down or overloaded. And given the exponential/factoral (?) amount of combinations this may be reached surprisingly quickly. Just a guess.

                                                                                                                          As an aside, the game is technically interesting, being a really simple example of using llm generation for game mechanics. But it is not engaging at all and feels nonsensical to me, especially when compared to little alchemy https://littlealchemy2.com/.

                                                                                                                          I'm not trying to be negative and this isn't a dig on creativity of the wonderful Neal but more points to the immaturity of llms applied to games, maybe to my overexposure to chatgpt, and maybe a prediction that human touch will always be required to make something entertaining. I'm curious how llms will fit into an engaging game experience in the future.

                                                                                                                          • SirMaster a year ago

                                                                                                                            >As an aside, the game is technically interesting, being a really simple example of using llm generation for game mechanics. But it is not engaging at all and feels nonsensical to me

                                                                                                                            You just gotta make a game out of it.

                                                                                                                            For example challenge yourself to try to craft "pizza".

                                                                                                                            Can even try to do it in as least number of crafts as possible.

                                                                                                                            Point is, just crafting random things to see what it spits out is OK, but trying to use your own logic to combine things to get to an arbitrary solution you come up with is much more engaging, at least to me.

                                                                                                                            Challenge your friends to craft some specific "thing". Think of something you might think could be hard to craft to, and ask them to do the same and see who can get there first, or in the fewest steps.

                                                                                                                            • jarboot a year ago

                                                                                                                              I tried your challenge to create pizza. My goal is to get some kind of food, but combining combinations of water, plants, fire, etc are way more likely to produce dragons and universes. I eventually got to chestnut which got to bread, but it was a lot easier to get to "Toast Toast Toast" or "Chestnutzilla" or "Treasure" + "Toast" = "Pirate". I finally got "Tostzilla" which has a pizza emoji, and then "lunch", and "breakfast", and "party"+"toast"="celebration" ?? but it feels random and illogical at some point I just gave up.

                                                                                                                              So to me it feels like playing against a soulless vector database rather than something engaging and well-crafted. I think what gives me this impression is that things are commonly related to each other using words rather than their meaning -- getting from "pirate" to "captain crunch" to "serial killer" is obviously following lines of language rather than the core concepts that relate objects. This is directly opposed to the actual act of crafting which is 100% rooted in the material world and has no relationship to language.

                                                                                                                              Maybe I'm losing my imagination, but doing it like you suggest, creating challenges, is makes it more fun. I think I'm just tired of thinking in language.

                                                                                                                              I'm also seeing a lot of my favorite game creators on twitter enjoying the toy and I'll trust their taste over mine :)

                                                                                                                              • jandrese a year ago

                                                                                                                                That's a fairly big challenge since the game gets less coherent the longer it goes on. The early matches generally make sense, but after about 3 levels you start getting loops, and after 5 levels you start getting nonsense or outright failures from queries.

                                                                                                                                If you figure each of the things is an input parameter to a LLM this makes a lot of sense. They tend to have short memories and struggle with higher level introspection. Great for demos, but fraught with problems when using them to do real work.

                                                                                                                                • SirMaster a year ago

                                                                                                                                  Hmm, I’m not finding it to be too big of a challenge.

                                                                                                                                  It’s a bit challenging yeah, but me and my friends are challenging each other to get to words and we can usually find a way to make it.

                                                                                                                                  Things like “Godzilla”, “Universe”, “Vampire”, “Optimus Prime”, “Vodka”, etc are just some examples we did.

                                                                                                                                  I don’t seem to be having problems going dozens of levels deep without loops and not running into many query failures. Results that are deep are still making some logical combinational sense to me at least.

                                                                                                                                  Some words we haven’t been able to make, but that doesn’t mean it’s not possible. It just means we need to get more creative and sometimes think outside the box. There are so many ways you can approach getting to a certain result in my experience so far.

                                                                                                                                  Doing this has been fun and challenging so far for me and my friends FWIW.

                                                                                                                              • hombre_fatal a year ago

                                                                                                                                > But it is not engaging at all and feels nonsensical to me, especially when compared to little alchemy https://littlealchemy2.com/.

                                                                                                                                On the other hand, Little Alchemy doesn't have answers to the most basic combinations. Air + Earth = Dust, but Dust doesn't combine with Water. Earth + Water = Mud, but Mud doesn't combine with Air. Earth + Earth = Land, but Land doesn't combine with Fire.

                                                                                                                                It may be more sensical since it limits combinations to 0.01% of what's possible, but I don't think that makes it more interesting.

                                                                                                                              • Aachen a year ago

                                                                                                                                There's tons of combinations that take forever and nothing ends up happening. That's how I got around to the comment thread (clean+satan is why I'm here): I'm waiting for the latest combination to time out

                                                                                                                                • araes a year ago

                                                                                                                                  Similar. Snowmobile Farm and Sandbox Farm both appear to timeout with no response.

                                                                                                                                  However, that said, the idea itself is a neat idea, and could quite easily be turned into game ideas somewhere.

                                                                                                                                  • beacon294 a year ago

                                                                                                                                    They seem to be asynchronous, e.g. you can actually combine several pairs at the same time.

                                                                                                                                  • starphobia a year ago

                                                                                                                                    Campfire + Sushi = Fish

                                                                                                                                • lovegrenoble a year ago

                                                                                                                                  I love silly and pointless web pages, here another one: https://sharkle.com

                                                                                                                                  • itistimlee a year ago

                                                                                                                                    It seems it doesn't work on my side

                                                                                                                                    • hmcq6 a year ago

                                                                                                                                      First click brought me right back to neal.fun lol

                                                                                                                                    • Calavar a year ago

                                                                                                                                      An LLM seems like overkill for a project like this. Why not word2vec?

                                                                                                                                      • thatguysaguy a year ago

                                                                                                                                        The open vocabulary aspect seems important. Word2vec would never let me make "Pirate Pope Wars".

                                                                                                                                        • legel a year ago

                                                                                                                                          I had the same thought.

                                                                                                                                          Some of the surprising discoveries I made with word2vec embeddings:

                                                                                                                                          human + robot ~= cyborg

                                                                                                                                          silicon + electricity ~= solar cells

                                                                                                                                          virtual reality + reality ~= augmented reality

                                                                                                                                          As reported here: https://web.archive.org/web/20160806040004if_/http://blog.yh...

                                                                                                                                          • q3we a year ago

                                                                                                                                            how do you get human and robot?

                                                                                                                                          • Silphendio a year ago

                                                                                                                                            I thought this would be very simple to do, so I tried it. https://silphendio.github.io/word2vec_alchemy/

                                                                                                                                            That simple demo took me way too long and all that time is wasted because word2vec simply sucks for this use-case.

                                                                                                                                            • undefined a year ago
                                                                                                                                              [deleted]
                                                                                                                                              • TeMPOraL a year ago

                                                                                                                                                More dimensions?

                                                                                                                                              • Jaxan a year ago

                                                                                                                                                This might explain how I got “Super volcano” and “Supervolcano”

                                                                                                                                                • geoelectric a year ago

                                                                                                                                                  One’s really big, and the other is really cool?

                                                                                                                                                • iwontberude a year ago

                                                                                                                                                  The dumbness of the LLM inference ruined this for me. Fossil + Fire = Dinosaur? Okay.

                                                                                                                                                  • BEEdwards a year ago

                                                                                                                                                    it also get's caught in stupid loops.

                                                                                                                                                    this game is fun for a bit, but shallow once you realize the gimmick.

                                                                                                                                                    you can go completely random bullshit go and get "super cyberwolfman zombie phoenixman" that's nonsense, of course it's "first discovery!"

                                                                                                                                                  • polysoma a year ago

                                                                                                                                                    Wouldnt it be worth caching the results? For the first couple of million combinations at least. I suppose that would take away some level of serendipity. But I imagine it would make this a lot cheaper, considering its popularity.

                                                                                                                                                    • leroman a year ago

                                                                                                                                                      I thought they were using some kind of vector space searches like embedding.. no idea if that's the case

                                                                                                                                                      • IshKebab a year ago

                                                                                                                                                        Yeah I'm pretty sure you could do this just with the classic word embeddings (king =queen + man - woman). Maybe it doesn't work as well as with a full LLM.

                                                                                                                                                        • adtac a year ago

                                                                                                                                                          Addition won't work for things that depend on the order of operations. If salt + water is ocean and water + fire is steam, what's salt + water + fire? Is it salt + steam or ocean + fire?

                                                                                                                                                          Associativity and commutivity in vector addition doesn't translate well to semantic meaning. Extrapolating your example, it'd also mean:

                                                                                                                                                              v_king  - v_queen   ~= v_father  - v_mother
                                                                                                                                                              v_king  - v_royalty ~= v_father  - v_parent
                                                                                                                                                              v_king  - v_father  ~= v_royalty - v_parent ~= v_queen - v_mother
                                                                                                                                                          
                                                                                                                                                          I don't see why those should all be true. Intuitively, trying to satisfy O(N^2) semantic pairings with vectors that are optimised for a very specific and different numerical operation (cosine similarity) feels like something that won't work. I'd imagine errors get amplified with 3+ operands.
                                                                                                                                                          • TeMPOraL a year ago

                                                                                                                                                            Isn't the reason for lack of associativity/commutivity is that you're doing operations (addition/subtraction) that have them, and then snapping the result to the closest one of fixed number of points in your output dictionary? The addition is fine, loss of information is in the final conversion.

                                                                                                                                                            • adtac a year ago

                                                                                                                                                              There's definitely some lossy compression when you snap it to the nearest known vector: enumerating every word ever written in human history wouldn't even come close to the 2^(16*D) representable points for a D-dimensional float16 embedding vector. In fact, even adding two float16 values is a form of lossy compression for most additions.

                                                                                                                                                              But I'd be surprised if either of those were the primary reason. The words "sea" and "ocean" are different vectors but they'll be very close to each other. salt + water = sea and salt + water = ocean both sound correct to me so the problem is more about whether the v_salt + v_water can even get to the vicinity of either v_sea or v_ocean.

                                                                                                                                                              • leroman a year ago

                                                                                                                                                                If we constrain our selves to a pool of words of say Wikipedia entries, minutes names and maybe some other stuff, and use a "super node" like "addition" to kind of act as a math operation.. maybe this makes more sense?

                                                                                                                                                      • brap a year ago

                                                                                                                                                        I knew this was powered by an LLM once I crafted both "seahorse" and "sea horse"

                                                                                                                                                        • fnordian_slip a year ago

                                                                                                                                                          For me it was when one of my early combinations of Pegasus (might also have been unicorn or flying horse, the latter already being a duplicate of Pegasus) and water became hippocampus, but with the hippopotamus emoji ().

                                                                                                                                                          I'm sure it was fun for the creator, bit I'll stick with non - AI games for now.

                                                                                                                                                          • jimmy778hahah a year ago

                                                                                                                                                            i really hate it when you are crafting something and get the same thing as another thing in your side bar but it has one CAPITAL LETTER!!! like what that dosnt change anything you fuggly rat

                                                                                                                                                            • sawer a year ago

                                                                                                                                                              Yes Jimmy I feel the same way say if you have fence and prison it becomes fence I

                                                                                                                                                              rag just because of it.

                                                                                                                                                          • undefined a year ago
                                                                                                                                                            [deleted]
                                                                                                                                                          • tibbon a year ago

                                                                                                                                                            I don't get it; maybe it's broken in my browser. I can drag 4 types of items to a floating grid that connects them but then nothing happens.

                                                                                                                                                            EDIT: Ah, you drag items on top of each other for them to change. Instructions unclear, and I am dumb.

                                                                                                                                                            • crazygringo a year ago

                                                                                                                                                              > Instructions unclear, and I am dumb.

                                                                                                                                                              You're not dumb -- it's not only unclear, but the interface actively suggests the opposite of what you're supposed to do.

                                                                                                                                                              One of the best lessons I ever learned was from Don Norman's famous book, The Design of Everyday Things. Which basically teaches you that the user is almost never dumb, but rather human. And that the responsibility of understanding how to interact with an object, or program, always lies with the creator of that object or program. The designer. It's their job to design something so that it teaches you how to use it. (His most quoted example involves how a plate on a door invites you to push it, while a handle invites you to pull -- and this way you'll never try to pull a door that needs to be pushed open, or vice-versa.)

                                                                                                                                                              In this case, the interface invites you to drag things among the various pre-existing points, to continue the "constellation". It does nothing whatsoever to suggest that it would make any sense to drag the labels on top of each other. Indeed, previous experience suggests that this would simply lead to overlapping and obscured labels, so we actively avoid it. And the lines that get drawn between nearby points and labels goes even further to suggest that this is a game or experience about connecting things in a graph-like way -- which, once again, overlapping does not fit into conceptually.

                                                                                                                                                              I would never have thought to drag things on top of each other if I hadn't come here to the comments.

                                                                                                                                                              • hinkley a year ago

                                                                                                                                                                The lines are misdirection and need to be removed.

                                                                                                                                                                What's with all the lines to the little moving dots? Haven't figured out what those do yet.

                                                                                                                                                                • nomel a year ago

                                                                                                                                                                  Nothing. They're completely confusing. At first, I thought maybe the little specs is where the combination happened, so as they passed between a set, they would automatically get crafted based on that set, in a neat chaotic way. Nope. Then I thought maybe I had to set up the "recipes" and wait, or click things, or I don't know.

                                                                                                                                                                  I didn't realize it's just a basic drag drop combination thing until I saw the video, after coming here to see if anyone else was having trouble with Safari.

                                                                                                                                                                  • NegativeLatency a year ago

                                                                                                                                                                    I wonder if that's how it worked originally but was dialed back because you'd have n^2 queries per UI interaction

                                                                                                                                                                  • sawer a year ago

                                                                                                                                                                    Thank you to know how to spell correct you are my best speller that I seen. Me to I do not know what is that I was mad for a second but once I have seen this I cooled down a bit. Thank you!

                                                                                                                                                                  • cjauvin a year ago

                                                                                                                                                                    You are not dumb at all, I think it's not terribly clear indeed.

                                                                                                                                                                    • neogodless a year ago

                                                                                                                                                                      Thank you! Yes the instructions were missing, and it's hard not to assume that Firefox isn't supported. I was having the same (bad) experience as you.

                                                                                                                                                                      • nottorp a year ago

                                                                                                                                                                        Yep, at first i tried to make geometric arrangements out of multiple items too.

                                                                                                                                                                        Water surrounded by 5 fire in a circle - ish - did absolutely nothing.

                                                                                                                                                                        Only by checking the HN comments i figured out you have to combine items.

                                                                                                                                                                        • jimmy778hahah a year ago

                                                                                                                                                                          haha... the lines and dots never bothered me actually... i was scrolling throught this saw the thing about the lines and had to open the tab back up to see the lines... i never noticed they were there

                                                                                                                                                                          • sawer a year ago

                                                                                                                                                                            Sorry but your first letter of your sencetce is wrong because the first letter is has to be big.

                                                                                                                                                                        • mrjh a year ago

                                                                                                                                                                          Not dumb at all. It's bad UI.

                                                                                                                                                                          • Sohcahtoa82 a year ago

                                                                                                                                                                            I didn't have a problem understanding it, but then again, I've played these Alchemy games before. It was one of the first games I ever played on my first Android back in 2010.

                                                                                                                                                                            • xerox13ster a year ago

                                                                                                                                                                              Yeah this is what I thought of and I fell back on my old Alchemy habits trying to get to Life to create man and all the other stuff. maybe I'm forgetting or it's different with this game but I haven't gotten there yet, but I've gotten several greek gods and a cyborg, so that's sort of life.

                                                                                                                                                                              Just makes me want to play Alchemy, though. Even Doodle God doesn't scratch the itch Alchemy did in 2011. I found it on StumbleUpon. Oh those were the days. I wonder if I still have the APK on my SkyDrive...

                                                                                                                                                                              • mrguyorama a year ago

                                                                                                                                                                                As usual, an actual game that was made by an actual creative with some intent and thought and FUN behind it is more memorable for the average person than miles and miles and miles of procedural (in this case, AI) generated garbage.

                                                                                                                                                                          • alluro2 a year ago

                                                                                                                                                                            You can just click / tap on 2 items consecutively, without drag and drop.

                                                                                                                                                                            • crazygringo a year ago

                                                                                                                                                                              I don't understand what you mean. Clicking does absolutely nothing for me. Clicking items in the right column does nothing; clicking items I've already placed does nothing. Clicking items consecutively does nothing, in either part of the screen.

                                                                                                                                                                              I don't see how to use this at all without drag and drop.

                                                                                                                                                                              • ipsum2 a year ago

                                                                                                                                                                                On mobile you click, on desktop you drag and drop.

                                                                                                                                                                            • LonelyWolfe a year ago

                                                                                                                                                                              On mobile it's just tapping, no drag and drop required.

                                                                                                                                                                              • bagels a year ago

                                                                                                                                                                                Yes, it'd be better if you could just tap two items, and they filled the useless central pane instead.

                                                                                                                                                                              • csteinbe a year ago
                                                                                                                                                                                • ehsankia a year ago

                                                                                                                                                                                  I was very confused at first too, and didn't understand the difference. As the other comments in the thread allude to though, this instead an LLM to allow for a much much larger number of combinations, which is the "neal.fun" twist on it.

                                                                                                                                                                                  I do wish it was a bit better stated on the page itself.

                                                                                                                                                                                  • sawer a year ago

                                                                                                                                                                                    Once I play I was confused to, but I was thinking was it like little alchemy. You should play for like 20 min so you can be more better just giving a tip for because it is the right thing to do

                                                                                                                                                                                  • Xeyz0r a year ago

                                                                                                                                                                                    Exactly, and I just couldn't remember what it reminded me of! How much time have I spent on Little Alchemy

                                                                                                                                                                                    • sawer a year ago

                                                                                                                                                                                      So did I love little alchemy it was so fun

                                                                                                                                                                                    • ninjahatori a year ago

                                                                                                                                                                                      This was one of my favorite online games in childhood. Came here for commenting the same!

                                                                                                                                                                                      • nikeee a year ago

                                                                                                                                                                                        Doodle God was also a very popular one.

                                                                                                                                                                                        • sawer a year ago

                                                                                                                                                                                          I do not know what that is but it sound incredble

                                                                                                                                                                                          • sawer a year ago

                                                                                                                                                                                            I am going to sleep it is 1:oo am

                                                                                                                                                                                      • Brajeshwar a year ago

                                                                                                                                                                                        My team and I were ghost developers to many companies, developers, and book authors in the hay days of Macromedia/Adobe Flash.

                                                                                                                                                                                        We were approached to build a bunch of learning lessons for teachers to teach kids - primarily focusing on human anatomy. Instead of building separate lessons, we built a generator tool for the teachers to drag and drop various combinations and permutations that produce almost infinite lesson variations.

                                                                                                                                                                                        The end customer was Pearson Publishing, and I heard they won awards and stuff. Our client was a good person and even paid us extra for doing the better version of the product they had in mind.

                                                                                                                                                                                        That tool was like this and a few others, as mentioned in the comments. But all in ActionScript Flash, complete with sounds, laughter tracks, and ever-expanding sprites of body parts. It was one fun and fulfiling product.

                                                                                                                                                                                        • duderific a year ago

                                                                                                                                                                                          I miss Flash and all the cool capabilities it had. At a previous company, we built a tool that would allow a teacher to record a video review of a student's animation work, while showing, scrubbing and annotating that work simultaneously. On playback, the annotations would be synced with the video. Good luck pulling that off with Javascript.

                                                                                                                                                                                          • Secretmapper a year ago

                                                                                                                                                                                            There's some work on this on the web space - our company is doing something not too dissimilar using the still experimental API called WebCodecs.

                                                                                                                                                                                            And that pretty much says everything unfortunately - it's still an experimental API with limited availability.

                                                                                                                                                                                            You can do some parts of this using Canvas[0] but there's lots of caveats.

                                                                                                                                                                                            [0] https://github.com/bwasti/mebm/tree/main

                                                                                                                                                                                        • promiseofbeans a year ago

                                                                                                                                                                                          The game state clears on reload, so here's a wee console snippet to export your list of elements:

                                                                                                                                                                                              console.log(JSON.stringify({discoveries: window.$nuxt.$root.$children[2].$children[0].$children[0]._data.discoveries, elements:window.$nuxt.$root.$children[2].$children[0].$children[0]._data.elements}))
                                                                                                                                                                                          
                                                                                                                                                                                          
                                                                                                                                                                                          I'll figure out how to re-import the state later, but it's past midnight for me now.
                                                                                                                                                                                          • tercmd a year ago

                                                                                                                                                                                            The state can be re-imported like this: ``` a = (insert JSON output here) window.$nuxt.$root.$children[2].$children[0].$children[0]._data.elements = a.elements; window.$nuxt.$root.$children[2].$children[0].$children[0]._data.discoveries = a.discoveries; ```

                                                                                                                                                                                            • madacol a year ago

                                                                                                                                                                                              I made a bookmarklet that loads the state from localstorage and also autosaves the state on each new craft

                                                                                                                                                                                                  javascript:(function(){
                                                                                                                                                                                                      const exportState = () => JSON.stringify({
                                                                                                                                                                                                          discoveries: window.$nuxt.$root.$children[2].$children[0].$children[0]._data.discoveries, 
                                                                                                                                                                                                          elements: window.$nuxt.$root.$children[2].$children[0].$children[0]._data.elements
                                                                                                                                                                                                      });
                                                                                                                                                                                              
                                                                                                                                                                                                      const importState = (state) => {
                                                                                                                                                                                                          const { discoveries, elements } = JSON.parse(state);
                                                                                                                                                                                                          const gameInstance = window.$nuxt.$root.$children[2].$children[0].$children[0]._data;
                                                                                                                                                                                                          gameInstance.discoveries = discoveries;
                                                                                                                                                                                                          gameInstance.elements = elements;
                                                                                                                                                                                                      };
                                                                                                                                                                                              
                                                                                                                                                                                                      /* Set up a MutationObserver to listen for changes in the DOM and automatically export the current state. */
                                                                                                                                                                                                      const observer = new MutationObserver((mutations) => {
                                                                                                                                                                                                          const state = exportState();
                                                                                                                                                                                                          localStorage.setItem('gameState', state);
                                                                                                                                                                                                      });
                                                                                                                                                                                              
                                                                                                                                                                                                      /* Start observing DOM changes to auto-save the game state. */
                                                                                                                                                                                                      const startObserving = () => {
                                                                                                                                                                                                          const targetNode = document.querySelector('.sidebar');
                                                                                                                                                                                                          observer.observe(targetNode, { childList: true, subtree: true });
                                                                                                                                                                                                      };
                                                                                                                                                                                              
                                                                                                                                                                                                      /* Check for a saved state in localStorage and import it if available. */
                                                                                                                                                                                                      const savedState = localStorage.getItem('gameState');
                                                                                                                                                                                                      if (savedState) importState(savedState);
                                                                                                                                                                                                      else localStorage.setItem('gameState', exportState() );
                                                                                                                                                                                              
                                                                                                                                                                                                      startObserving();
                                                                                                                                                                                                  })();
                                                                                                                                                                                              • undefined a year ago
                                                                                                                                                                                                [deleted]
                                                                                                                                                                                                • beacon294 a year ago

                                                                                                                                                                                                  I used this to import my own terms.

                                                                                                                                                                                                  This can be used to get a novel starting point (disregarding the original starting point).

                                                                                                                                                                                                  It can also be used to start from unreachable elements, although it isn't clear to me exactly how the "First discovery" works, e.g. will your unreachable elements pollute the neal.fun datastore, or only the byproducts? Either way, it is interesting.

                                                                                                                                                                                                  • beacon294 a year ago

                                                                                                                                                                                                    By the way you missed a semicolon after `(insert JSON output here) `

                                                                                                                                                                                                  • dirkc a year ago

                                                                                                                                                                                                    Thank you!

                                                                                                                                                                                                    These were my discoveries:

                                                                                                                                                                                                    ["Leviathan Shark","Burnzilla","Burnado","Chocolate Tree Shark","Cybersharktopus","Toadatorzilla","Bacon Sharktopusnado","Rainbow Hooktopus","T-48000050","T-48000050","T-19800050","T-19800050","T-64000050","T-83800050","T-83800050","T-121800050","T-121800051","T-185800001","T-185800002","T-185800004","T-185800008","T-82980058","T-121800051 + T-160000"]

                                                                                                                                                                                                    Seems like I've stumbled across a self reproducing AI, although the emojis went from robot emoji to universe emoji and then to poop emoji. I wonder at which of those levels of AI we're at currently :p

                                                                                                                                                                                                  • LonelyWolfe a year ago

                                                                                                                                                                                                    Lemme know if there's another way to press every combination:

                                                                                                                                                                                                    let maxElementReachedForElement = {}; let totalElements = 0; let firstElement = 0; let secondElement = 0;

                                                                                                                                                                                                    setInterval(function() {

                                                                                                                                                                                                      document.getElementsByClassName('mobile-item')[firstElement].getElementsByClassName('item')[0].click();
                                                                                                                                                                                                    
                                                                                                                                                                                                      document.getElementsByClassName('mobile-item')[secondElement].getElementsByClassName('item')[0].click();
                                                                                                                                                                                                    
                                                                                                                                                                                                      totalElements = document.getElementsByClassName('mobile-item').length;
                                                                                                                                                                                                    
                                                                                                                                                                                                      secondElement = (secondElement + 1) % totalElements;
                                                                                                                                                                                                    
                                                                                                                                                                                                      if (secondElement == 0) {
                                                                                                                                                                                                       maxElementReachedForElement[firstElement] = totalElements; 
                                                                                                                                                                                                       if (Object.keys(maxElementReachedForElement).some(item => maxElementReachedForElement[item] < totalElements)) {
                                                                                                                                                                                                        let prevStart = Object.keys(maxElementReachedForElement).find(item => maxElementReachedForElement[item] < totalElements);
                                                                                                                                                                                                        firstElement = prevStart;
                                                                                                                                                                                                        secondElement = maxElementReachedForElement[prevStart]; // Start from previous end
                                                                                                                                                                                                       } else {
                                                                                                                                                                                                        firstElement = (firstElement + 1) % totalElements;
                                                                                                                                                                                                        secondElement = firstElement; // No need to repeat the previous combinations.
                                                                                                                                                                                                       }
                                                                                                                                                                                                      }
                                                                                                                                                                                                    
                                                                                                                                                                                                      document.title = firstElement + '+' + secondElement + '|' + totalElements;
                                                                                                                                                                                                    }, 500); // TODO : Find a way other than delay
                                                                                                                                                                                                    • NAR8789 a year ago

                                                                                                                                                                                                      I think you can reduce state. Rather than tracking maxElementReached per-element, maintain a single maxElementReached for the first n elements. March the first n elements forward in lockstep, and grow n by 1 whenever you exhaust all available combinations for that set

                                                                                                                                                                                                        1. Combine the first element with every next element until exhausted.
                                                                                                                                                                                                        2. Catch up the second element to where the first element got to.
                                                                                                                                                                                                        3. Combine the first two elements with every next element, until exhausted.
                                                                                                                                                                                                        4. Catch up the third element.
                                                                                                                                                                                                        5. Combine the first three elements with every next element
                                                                                                                                                                                                        6. etc.
                                                                                                                                                                                                      
                                                                                                                                                                                                      In pseudocode...

                                                                                                                                                                                                        n = 1
                                                                                                                                                                                                        maxElementReached = -1
                                                                                                                                                                                                        
                                                                                                                                                                                                        while(n < totalElements()) {
                                                                                                                                                                                                          while(maxElementReached + 1 < totalElements()) {
                                                                                                                                                                                                            maxElementReached = maxElementReached + 1
                                                                                                                                                                                                            Combine each of the first n elements with element[maxElementReached]
                                                                                                                                                                                                          }
                                                                                                                                                                                                      
                                                                                                                                                                                                          // we've exhausted all possible combinations for the first n elements.
                                                                                                                                                                                                          // increase n by 1 and catch up the new element to keep going
                                                                                                                                                                                                          Combine element[n] with each element from n to maxElementReached
                                                                                                                                                                                                          n = n + 1
                                                                                                                                                                                                        }
                                                                                                                                                                                                      • saintradon a year ago

                                                                                                                                                                                                        minified version courtesy of GPT-4 (disclaimer I have no clue how this works)

                                                                                                                                                                                                        let m={},t=0,f=0,s=0;setInterval(function(){document.getElementsByClassName('mobile-item')[f].getElementsByClassName('item')[0].click();document.getElementsByClassName('mobile-item')[s].getElementsByClassName('item')[0].click();t=document.getElementsByClassName('mobile-item').length;s=(s+1)%t;if(s==0){m[f]=t;if(Object.keys(m).some(i=>m[i]<t)){let p=Object.keys(m).find(i=>m[i]<t);f=p;s=m[p];}else{f=(f+1)%t;s=f;}}document.title=f+'+'+s+'|'+t;},500);

                                                                                                                                                                                                        • thunderrabbit a year ago

                                                                                                                                                                                                          Thank you! I've let your script run for near 20 hours. It has discovered 3000 items including

                                                                                                                                                                                                          `One Does Not Simply Walk Into Mordor`

                                                                                                                                                                                                          • LonelyWolfe a year ago

                                                                                                                                                                                                            Your Welcome!

                                                                                                                                                                                                        • crazygringo a year ago

                                                                                                                                                                                                          I wish this were an actual game!

                                                                                                                                                                                                          Like keep showing me a desired item to craft, that requires crafting 2 or 3 items to get to -- e.g. combine 2 existing things, then with a third existing thing. Or combine 2 existing things, another 2 existing things, and then combine those.

                                                                                                                                                                                                          And obviously it keeps getting more complex the more items I acquire along the way.

                                                                                                                                                                                                          And each time I play it's randomized.

                                                                                                                                                                                                          (And let me play entirely with the keyboard by autocompleting each item as I type... dragging gets old real quick on a touchpad...)

                                                                                                                                                                                                          • wyre a year ago

                                                                                                                                                                                                            I remember there being a few phone games with this format. Joining elements together to make other things and using those to make other things.

                                                                                                                                                                                                            Quick google search tells me the game is called Little Alchemy (there’s a sequel now too)

                                                                                                                                                                                                            • whhuh a year ago

                                                                                                                                                                                                              Yes! Shoutout to Zed's Alchemy, a gem of an ancient iOS game with the same premise.

                                                                                                                                                                                                            • latexr a year ago

                                                                                                                                                                                                              You’ll probably enjoy Scribblenauts.

                                                                                                                                                                                                              https://en.wikipedia.org/wiki/Scribblenauts

                                                                                                                                                                                                              • vintermann a year ago

                                                                                                                                                                                                                The impressive thing about Scribblenauts was that of course, it didn't have anything like an LLM. They went through a dictionary and added everything they could, then they went through several rounds of playtesting and added everything the playtesters managed to think of that they didn't already have (minus copyrighted characters and other things that would get them into trouble)

                                                                                                                                                                                                              • wdh505 a year ago

                                                                                                                                                                                                                I played a game like this once, it was called "cow evolution:idle merge game". It wasn't randomized, but skinnerboxxed. Perhaps that is not quite what you meant.

                                                                                                                                                                                                                • TeMPOraL a year ago

                                                                                                                                                                                                                  Ah yes, Random + Malice -> Skinnerbox.

                                                                                                                                                                                                                • jv22222 a year ago

                                                                                                                                                                                                                  Doodle God works exactly this. Very satisfying, fully polished.

                                                                                                                                                                                                                • TheGlav a year ago

                                                                                                                                                                                                                  Some of my First Discoveries:

                                                                                                                                                                                                                  * Frankenstein + angel = Angelstein. (Then Angelstein + Baby = Angelina Jolie.)

                                                                                                                                                                                                                  * something + Something from Michael Jackson = Dangerous.

                                                                                                                                                                                                                  * Dangerous + Sherlock Holmes = Moriarty.

                                                                                                                                                                                                                  * Multiverse + White => Dark Multiverse + Law => Dark Law.

                                                                                                                                                                                                                  * Dark Law + us Constitution => Dark Constitution.

                                                                                                                                                                                                                  * Quark + Ocean -> Neutreno

                                                                                                                                                                                                                  * Thor + Guardian -> Heimdall

                                                                                                                                                                                                                  * Batman + vet => Batvet

                                                                                                                                                                                                                  * Avengers + Multiverse => Endgame + Dark Multiverse => Dark Engame

                                                                                                                                                                                                                  * Iron man + Star Lord -> Iron-lord

                                                                                                                                                                                                                  * Wandavision + Groot -> I Am Groot

                                                                                                                                                                                                                  * Cleanest + Terminator -> Cleaninator.

                                                                                                                                                                                                                  * A series of werepigeon, Space Pigeon, Mars Golem, Werehand, Icepigeon, Werechristmas Tree, Dust pigeon, Snow pigeon, Dust mosquito.

                                                                                                                                                                                                                  Some fun ones:

                                                                                                                                                                                                                  * us America + hole = Donut + hole => Doughnut

                                                                                                                                                                                                                  * Money Water -> Vodka + Casino => Roulette + Vodka -> Russian Roulette + Certainty -> Suicide.

                                                                                                                                                                                                                  * Toxic Waste + batman -> The Joker.

                                                                                                                                                                                                                  * Divorce + Ex-wife => Splitting headache.

                                                                                                                                                                                                                  * Lake + Batman -> Aquaman + Batman => Justice League

                                                                                                                                                                                                                  * Captain America + Thor -> Avengers

                                                                                                                                                                                                                  * Avengers + Justice League -> Superheroes + Galaxy -> Marvel + Galaxy -> Guardians of the Galaxy

                                                                                                                                                                                                                  * Guardians of the Galaxy + Guardian -> Groot

                                                                                                                                                                                                                  * Guardians of the galaxy + Nebula -> Gamora

                                                                                                                                                                                                                  * Guardians of the galaxy + Gamora -> Star Lord

                                                                                                                                                                                                                  * Time Travel + Iron Man -> Terminator.

                                                                                                                                                                                                                  * Government + Terminator -> Robocop.

                                                                                                                                                                                                                  * Terminator + Divorce -> Arnold Schwartzenegger.

                                                                                                                                                                                                                  Confusing ones:

                                                                                                                                                                                                                  * Darth vader + Toxic Waste => Superman?

                                                                                                                                                                                                                  * Pirate + Superman => Captain America

                                                                                                                                                                                                                  • Zobat a year ago

                                                                                                                                                                                                                    Super not confusing:

                                                                                                                                                                                                                    Lincoln + Wife = Lincoln's wife

                                                                                                                                                                                                                    Should have seen that one coming.

                                                                                                                                                                                                                  • whats_a_quasar a year ago

                                                                                                                                                                                                                    I went down a Kaiju rabbithole. Here are the monsters I created

                                                                                                                                                                                                                    - Dragon + Lazer = Dragonzord

                                                                                                                                                                                                                    - Dragonzord + Sandpunk = Sandzord

                                                                                                                                                                                                                    - Dragon-Rex + Hippopotamus = Hippodragon

                                                                                                                                                                                                                    - Mega Dragonzord (didn't see recipe)

                                                                                                                                                                                                                    - Hippodragon + Mega Dragonzord = Mega Hippodragonzord

                                                                                                                                                                                                                    - Mega Hippodragonzord + Flying Circus = Mega Flying Circus Hippodragonzord

                                                                                                                                                                                                                    - Zombie + Mega Dragonzord = Zombie Dragonzord

                                                                                                                                                                                                                    - Swan + Megazord = Swan Megazord

                                                                                                                                                                                                                    - Sandzord

                                                                                                                                                                                                                    - Steam Dragonzord

                                                                                                                                                                                                                    - Swan Dragonzombie Megazord

                                                                                                                                                                                                                    - Mega Swan Dragonzord Megazord

                                                                                                                                                                                                                    The more ridiculous this gets the more fun I'm having! Everything after dragonzord was a first discovery.

                                                                                                                                                                                                                    • thfuran a year ago

                                                                                                                                                                                                                      Perhaps you'd be interested in my research:

                                                                                                                                                                                                                      Ultrazord + lord of the salad = saladzord

                                                                                                                                                                                                                      Dragonzord + Godzilla = godzord

                                                                                                                                                                                                                      Godzord + lord of the salad = Godzord of the salad

                                                                                                                                                                                                                      Lord of the rings + godzord = gozord of the rings

                                                                                                                                                                                                                      Gozord of the rings + godzord = godzord of the rings

                                                                                                                                                                                                                      Godzord of the salad + godzord of the rings = godzord of the salad rings

                                                                                                                                                                                                                      Godzord of the salad rings + pirates of the Caribbean = godzord of the Caribbean

                                                                                                                                                                                                                      Godzord of the Caribbean + donkey Kong = donkey kongzilla

                                                                                                                                                                                                                      Megazord+megazord= mega megazord

                                                                                                                                                                                                                      Donkey kongzilla + mega megazord = donkey kongzilla megazord

                                                                                                                                                                                                                      (I forgot how lord of the salad happened)

                                                                                                                                                                                                                      • john-shaffer a year ago

                                                                                                                                                                                                                        Mostly playing around with stacking "powerful" words:

                                                                                                                                                                                                                          King Kong + Power Ranger = King Kong Ranger (first)
                                                                                                                                                                                                                          Megazord + Power Ranger = Power Megazord
                                                                                                                                                                                                                          Megazord + Power Megazord or Artzord + Megazord = Ultrazord
                                                                                                                                                                                                                          Dragonzord + Art = Artzord (first)
                                                                                                                                                                                                                          Groot + Mega Artzord = Grootzord
                                                                                                                                                                                                                          Megazord + Grootzord = Gigazord (first)
                                                                                                                                                                                                                          Godzord + Giga Artzord = Giga Godzord (first)
                                                                                                                                                                                                                          Giga Godzord + Giga Titanic Gigazord = Giga Titanic Godzord (first)
                                                                                                                                                                                                                          Giga Titanic Godzord + Mega Power Godzillazord = Super Giga Mega Titanic Power Godzillazord (first)
                                                                                                                                                                                                                        
                                                                                                                                                                                                                        I also got firsts on both Earthquake Laser and Laser Earthquake, but I'm not sure what the recipes were.

                                                                                                                                                                                                                        Trying to get Zebra was an interesting sequence.

                                                                                                                                                                                                                          Tamer + Africa = Tamerlane (first)
                                                                                                                                                                                                                          Tamerlane + Terror = Timur (first)
                                                                                                                                                                                                                          Timur + Asia = Genghis Khan
                                                                                                                                                                                                                          Genghis Khan + Bellerophon = Alexander the Great
                                                                                                                                                                                                                          Alexander the Great + Unicorn = Bucephalus (first)
                                                                                                                                                                                                                          Alexander the Great + Bucephalus = Horse
                                                                                                                                                                                                                          Horse + Africa = Zebra
                                                                                                                                                                                                                        • undefined a year ago
                                                                                                                                                                                                                          [deleted]
                                                                                                                                                                                                                          • ProllyInfamous a year ago

                                                                                                                                                                                                                            What happens if you combine Superman + Incredible Hulk?

                                                                                                                                                                                                                            • thfuran a year ago

                                                                                                                                                                                                                              I don't have the hulk, but Superman mostly refuses to combine with other superheroes (Deadpool, spider-man, wolverine, aquaman) or turns into the justice league (batman). Though Superman+ghost rider= super ghost rider.

                                                                                                                                                                                                                              • ProllyInfamous a year ago

                                                                                                                                                                                                                                I'll also accept:

                                                                                                                                                                                                                                Superman + Hulk

                                                                                                                                                                                                                                ...as well =D (instead of `Incredible Hulk`).

                                                                                                                                                                                                                                Thanks for "the hope" on ghost rider combining with Superman.

                                                                                                                                                                                                                        • undefined a year ago
                                                                                                                                                                                                                          [deleted]
                                                                                                                                                                                                                          • russdill a year ago

                                                                                                                                                                                                                            Oh dear... Sandy Hook + Cereal Killer = Adam Lanza

                                                                                                                                                                                                                            • edeion a year ago

                                                                                                                                                                                                                              Tangent: there are some incompatible words that don't add up. So far, I found:

                                                                                                                                                                                                                              - Dragon + Angel

                                                                                                                                                                                                                              - Train + Star

                                                                                                                                                                                                                              - Fish + Yin Yang

                                                                                                                                                                                                                              - Orc + Ninja

                                                                                                                                                                                                                            • gloosx a year ago

                                                                                                                                                                                                                              This shows quite well that AI has zero common sense whatsoever, the results of most combinations I made are just nonsense. The associations are really vague and to me it is not interesting at all to look at random pictures and words appearing out of totally unrelated stuff. I really like man-made alchemy games though where all combinations are pre-defined and actually feel right.

                                                                                                                                                                                                                              • csallen a year ago

                                                                                                                                                                                                                                One person's specific usage of AI, in a specific game, where the AI was constrained to only coming up with words that have an associated emoji, is not a referendum on whether or not AI itself has common sense. That's like saying paint is boring because someone made a crappy painting, or code is limited because someone made an app you don't like.

                                                                                                                                                                                                                                • gloosx a year ago

                                                                                                                                                                                                                                  >where the AI was constrained to only coming up with words that have an associated emoji

                                                                                                                                                                                                                                  Sorry but clearly the game description is about joining two things together into a logical craft and AI is contrained with that – not coming up with random words that have an associated emoji. In doing so the AI is not convincing, the combinations just feel random. And yes, you need common sense to come up with logical combinations which makes a game like this interesting in the first place.

                                                                                                                                                                                                                                  • deely3 a year ago

                                                                                                                                                                                                                                    Sure, its not a referendum, but its a prominent sign that even with this task AI can fail spectacularly.

                                                                                                                                                                                                                                    P.S. Today I learned from AI that Sphinx + Drunk = Sphinxter.

                                                                                                                                                                                                                                    • lanternfish a year ago

                                                                                                                                                                                                                                      That's a sick pun though - I'd definitely consider that a success

                                                                                                                                                                                                                                      • smfjaw a year ago

                                                                                                                                                                                                                                        My computer programs always crashed in my first year of college, clear sign computers fail spectacularly

                                                                                                                                                                                                                                        • halfmatthalfcat a year ago

                                                                                                                                                                                                                                          Did you tout your first year college programs as world changing and potentially a risk to the species because it's so intelligent/has awesome powers?

                                                                                                                                                                                                                                          • csallen a year ago

                                                                                                                                                                                                                                            Is the author of this game doing that?

                                                                                                                                                                                                                                        • thatguysaguy a year ago

                                                                                                                                                                                                                                          What would the right answer be?

                                                                                                                                                                                                                                          • deely3 a year ago

                                                                                                                                                                                                                                            Riddler, drunk game, no answer.

                                                                                                                                                                                                                                      • FredPret a year ago

                                                                                                                                                                                                                                        It's also pretty good at lots of combos. If you asked a human to come up with all of these, it'd be pretty hard.

                                                                                                                                                                                                                                        • KTibow a year ago

                                                                                                                                                                                                                                          I found it fun regardless. HN, I proudly produce to you my newest invention: Beer + Lens = Beer Goggles.

                                                                                                                                                                                                                                          • cubefox a year ago

                                                                                                                                                                                                                                            I wouldn't say that AI has "zero" common sense. Rather it has a lot of common sense. For example, I wondered what would happen with "wind" and "paper". Perhaps paper ... storm? No, "kite". It's better than me.

                                                                                                                                                                                                                                            • vintermann a year ago

                                                                                                                                                                                                                                              It also has a sense for puns sometimes. I somehow got Kaa, the snake from The Jungle Book, and combined it with money, getting "Kaa-ching" (new discovery)

                                                                                                                                                                                                                                              • gloosx a year ago

                                                                                                                                                                                                                                                paper windmill?

                                                                                                                                                                                                                                              • undefined a year ago
                                                                                                                                                                                                                                                [deleted]
                                                                                                                                                                                                                                                • willy_k a year ago

                                                                                                                                                                                                                                                  One man’s nonsense is another’s profound truth. mud + brick = Adobe, for example. Doesn’t seem to make sense, yet it does.

                                                                                                                                                                                                                                                  • gloosx a year ago

                                                                                                                                                                                                                                                    adobe is literally mudbrick, this is too easy – like fire and water = steam

                                                                                                                                                                                                                                                    • willy_k a year ago

                                                                                                                                                                                                                                                      Yeah, I probably should have googled that. In my defense, the emoji it chose was , so a tad misleading to the mudbrick-ignorant.

                                                                                                                                                                                                                                                • nedt a year ago

                                                                                                                                                                                                                                                  I just don't have enough time to do it manually. Writing a little script that automates crafting was quicker for me. It found me "Star Trek: The Rockapocalypse"

                                                                                                                                                                                                                                                      const sleep = (ms) => new Promise(resolve => setTimeout(resolve, ms)); 
                                                                                                                                                                                                                                                      
                                                                                                                                                                                                                                                      let elements = [
                                                                                                                                                                                                                                                          ' Water',
                                                                                                                                                                                                                                                          ' Fire',
                                                                                                                                                                                                                                                          ' Wind',
                                                                                                                                                                                                                                                          ' Earth'
                                                                                                                                                                                                                                                      ];
                                                                                                                                                                                                                                                      
                                                                                                                                                                                                                                                      let pairs = {};
                                                                                                                                                                                                                                                      
                                                                                                                                                                                                                                                      async function getResponse(left, right) {
                                                                                                                                                                                                                                                          const url = `https://neal.fun/api/infinite-craft/pair?first=${left}&second=${right}`;
                                                                                                                                                                                                                                                          return await (await fetch(url)).json();
                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                      
                                                                                                                                                                                                                                                      function getRandom() {
                                                                                                                                                                                                                                                          return elements[Math.floor(Math.random() * elements.length)];
                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                      
                                                                                                                                                                                                                                                      async function run() {
                                                                                                                                                                                                                                                          while (true) {
                                                                                                                                                                                                                                                              let left = getRandom();
                                                                                                                                                                                                                                                              let right = getRandom();
                                                                                                                                                                                                                                                              if (pairs[`${left} + ${right}`]) {
                                                                                                                                                                                                                                                                  continue;
                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                              let result = await getResponse(left.split(' ').slice(1).join(' '), right.split(' ').slice(1).join(' '));
                                                                                                                                                                                                                                                              if (result.isNew) {
                                                                                                                                                                                                                                                                  console.log('‼ new one ‼');
                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                              result = `${result.emoji} ${result.result}`;
                                                                                                                                                                                                                                                              console.log(`${left} + ${right} = ${result}`);
                                                                                                                                                                                                                                                              if (result != ' Nothing') {
                                                                                                                                                                                                                                                                  pairs[`${left} + ${right}`] = result;
                                                                                                                                                                                                                                                                  elements.push(result);          
                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                              await sleep(1000);      
                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                      
                                                                                                                                                                                                                                                      run();
                                                                                                                                                                                                                                                  • nedt a year ago

                                                                                                                                                                                                                                                    A check has been added to the API. So you will be getting "Not allowed" as response now. I won't state what the check is, that would be an arms race. But it was fun for a day.

                                                                                                                                                                                                                                                    • vfvfvfvhyyyy a year ago

                                                                                                                                                                                                                                                      where do i put that

                                                                                                                                                                                                                                                    • jordemort a year ago

                                                                                                                                                                                                                                                      Got really obsessed with this, need to close the tab now. Some notes:

                                                                                                                                                                                                                                                      - In general, play the game as if you are asking an 11 year old, "what do you get when you combine X and Y?" The LLM likes rhymes and similar-sounding syllables, i.e. The Godfather + Goth => Gothfather.

                                                                                                                                                                                                                                                      - Some concepts seem to be "weightier" than others; "Dracula" usually becomes "Vampire" and vice-versa, no matter what you combine it with. "Chtulhu" is also difficult to combine with other things; it tends to remain "Cthulhu". "Darth Vader" is good for generating lots of "Darth" things but tends to revert to "Darth Vader" at the slightest provocation. "Santa / Santa Claus / Christmas" is also weighty and tends to cycle. Similarly, the Mario characters all tend to turn into Mario eventually.

                                                                                                                                                                                                                                                      - The longer your token gets, the harder it is to get it to combine with other things. "Bumblefrostycatpocalypse" + most things => "Bumblefrostycatpocalypse"

                                                                                                                                                                                                                                                      - The LLM knows lots of movie titles, and these are good for generating super long tokens, especially if you can goad it into inserting a colon, i.e. "The Fall of Star Wars: The Flying Crabster"

                                                                                                                                                                                                                                                      - Once your token gets too long, the game won't even try to combine it with anything else. I'd like to keep going with "Freddy Mercury vs. Jason + Jedi Mind Trick" but it won't let me.

                                                                                                                                                                                                                                                      Finally, a few of my favorite first discoveries: "Super Evil Jackie Chan", "The Best Halloween Costume Ever", "Postpornmodernism"

                                                                                                                                                                                                                                                      • Cieric a year ago

                                                                                                                                                                                                                                                        Apparently I made 2 first discoveries, Meteorism and Rap God. Seems interesting, but after a while of things not combining it gets a little stale. I agree with others I kind of would like to see the lineage of the elements. I know of this video where Carykh graphed is own combination game, but all new element names were user provided. https://www.youtube.com/watch?v=rQWwfYSUckY

                                                                                                                                                                                                                                                        • Cieric a year ago

                                                                                                                                                                                                                                                          Well I guess I wasn't doing weird enough combinations before, I now have (Hip hop + Crusade) Crusade Hop, T-Pain, (T-Pain + Painting) T-Painting, Haikupoid, Rapping, Slim Shady and the others already mentioned. I do like that I can convince it to make completely new concepts as long as the 2 inputs are weird enough.

                                                                                                                                                                                                                                                          • Cieric a year ago

                                                                                                                                                                                                                                                            Okay truly done at this point, I have work to do. https://i.imgur.com/96rl0Ul.png

                                                                                                                                                                                                                                                            • undefined a year ago
                                                                                                                                                                                                                                                              [deleted]
                                                                                                                                                                                                                                                              • ProllyInfamous a year ago

                                                                                                                                                                                                                                                                You won the internet, last night, fren.

                                                                                                                                                                                                                                                                Best of luck in your attempts at working.

                                                                                                                                                                                                                                                              • avereveard a year ago

                                                                                                                                                                                                                                                                I've the entire solar system is there a way to know if it's a first?

                                                                                                                                                                                                                                                            • oops a year ago

                                                                                                                                                                                                                                                              i discovered monkey pox :(

                                                                                                                                                                                                                                                            • f1nlay a year ago

                                                                                                                                                                                                                                                              Was working on the very same idea alongside a friend of mine, we happened to launch a few weeks ago. Quite a lot more fleshed out than Neal's version, if anyone wants to check it out!

                                                                                                                                                                                                                                                              https://allchemy.io/

                                                                                                                                                                                                                                                              Edit: sorry if anyone is bumping into errors! We're running into bottlenecks with our supposedly auto-scaling database - working on it

                                                                                                                                                                                                                                                              • pantsforbirds a year ago

                                                                                                                                                                                                                                                                I think the slow animation + fullscreen notification removes a good portion of the fun of the game. The stats are neat, but I wonder if using a log feed (like a killfeed in call of duty) would be a more enjoyable experience for the user. I love how fast infinite craft is to iterate through the combinations while the "allchemy" approach makes it feel like I have a crafting time attached to every new combination

                                                                                                                                                                                                                                                                • enonimal a year ago

                                                                                                                                                                                                                                                                  Just tagging here to say I enjoy the site, but I agree with my parent ^ the popup slows me down

                                                                                                                                                                                                                                                                  • undefined a year ago
                                                                                                                                                                                                                                                                    [deleted]
                                                                                                                                                                                                                                                                    • rrr_oh_man a year ago

                                                                                                                                                                                                                                                                      Absolutely +1 Came here to say this

                                                                                                                                                                                                                                                                    • rgbrgb a year ago

                                                                                                                                                                                                                                                                      I love it and agree with other commenters on animations. Any traction on subscriptions? I'm always curious if there's a biz model that works for this kind of game on web (besides ads). It's funny because I think you could absolutely sell it for $4.99 on the app store if you throw it in a native shell but I have a hard time imagining people paying for it in their browser. Would be happily surprised if that's not the case!

                                                                                                                                                                                                                                                                      • jerbearito a year ago

                                                                                                                                                                                                                                                                        Love it. Would it be possible to speed up the animations?

                                                                                                                                                                                                                                                                        • f1nlay a year ago

                                                                                                                                                                                                                                                                          Will add an ability to speed up/outright disable animations in the next update! Was a bit of an oversight on our part as once you start amassing a decent amount of items you encounter the new item animation less frequently - but in the early game it's definitely quite irritating!

                                                                                                                                                                                                                                                                        • etrautmann a year ago

                                                                                                                                                                                                                                                                          is this completely independently developed? the literal exact same idea at the same time? crazy

                                                                                                                                                                                                                                                                          • hipadev23 a year ago

                                                                                                                                                                                                                                                                            They're both inspired by Little Alchemy 1 & 2, PopCap's Alchemy, or if we really squint, The Incredible Machine from 1993.

                                                                                                                                                                                                                                                                            https://en.wikipedia.org/wiki/The_Incredible_Machine

                                                                                                                                                                                                                                                                            • neuronexmachina a year ago

                                                                                                                                                                                                                                                                              Come to think of it, LLMs with the right prompts would be pretty handy for a Scribblenauts clone: https://en.wikipedia.org/wiki/Scribblenauts

                                                                                                                                                                                                                                                                              Probably outputting a format supporting the same characteristics as the Object Editor: https://scribblenauts.fandom.com/wiki/Object_editor

                                                                                                                                                                                                                                                                              • xerox13ster a year ago

                                                                                                                                                                                                                                                                                You have to reallllly squint to see Incredible Machine in these. These are basic associations, not physical interactions. The closest you get to IM is "what happens if I stick these two things together" but it's more guessing and less input output.

                                                                                                                                                                                                                                                                                In IM, you know what each thing does and see the output of each action, so you can iterate: placement, angle, special attributes like fire or light. It's not just stack two possibly related icons to see what you get. With these you either know the association exists or you're doing conceptual guesswork. There's no testing and iterating on a hypothesis, at a point once all known associations have been exhausted, iteration looks like permutation.

                                                                                                                                                                                                                                                                                • omoikane a year ago
                                                                                                                                                                                                                                                                                  • rrr_oh_man a year ago

                                                                                                                                                                                                                                                                                    OH GOD THANK YOU! I was playing this on a Packard Bell Windows '95 PC with integrated loud speakers and a mic. Super high tech for the time.

                                                                                                                                                                                                                                                                                    BUT: The German-language full version of that game had been pre-installed in the Start Menu (?!), so if you deleted the start menu entry by accident, you'd need to reinstall Windows to get that game back. Or at least, that was young me's solution to the problem.

                                                                                                                                                                                                                                                                                    • etrautmann a year ago

                                                                                                                                                                                                                                                                                      wow, I totally forgot, thanks! I remember playing that game or a derivative, I think on my father's 386 sometime around 1995?

                                                                                                                                                                                                                                                                                      • notso411 a year ago

                                                                                                                                                                                                                                                                                        [dead]

                                                                                                                                                                                                                                                                                      • SnooSux a year ago

                                                                                                                                                                                                                                                                                        This idea is pretty common, I remember playing a similar game on my iPod Touch nearly 10 years ago

                                                                                                                                                                                                                                                                                      • f1nlay a year ago

                                                                                                                                                                                                                                                                                        Completely independently! We're a team of two University students funding this out of our own pockets. About 8 months work (on and off) from first prototype.

                                                                                                                                                                                                                                                                                        • helboi4 a year ago

                                                                                                                                                                                                                                                                                          This idea is super old. There was a game like this that was popular like 10 years ago. This is a worse version.

                                                                                                                                                                                                                                                                                        • obiefernandez a year ago

                                                                                                                                                                                                                                                                                          This is so much fun.

                                                                                                                                                                                                                                                                                          I was just the first to craft MUCK ASTLEY... definitely gave me a good laugh

                                                                                                                                                                                                                                                                                          • f1nlay a year ago

                                                                                                                                                                                                                                                                                            Glad to hear you're enjoying it - an excellent item to discover!

                                                                                                                                                                                                                                                                                          • niceice a year ago

                                                                                                                                                                                                                                                                                            Good work! What kind of traction are you getting on the premium version? That approach is sensible given the underlying costs. Would love to get an idea of how it worked out in practice.

                                                                                                                                                                                                                                                                                            • bricemo a year ago

                                                                                                                                                                                                                                                                                              Does this also use generative AI to create the results?

                                                                                                                                                                                                                                                                                              • artemonster a year ago

                                                                                                                                                                                                                                                                                                the animations are tedious

                                                                                                                                                                                                                                                                                                • qwertox a year ago

                                                                                                                                                                                                                                                                                                  This is like Quake vs. modern games.

                                                                                                                                                                                                                                                                                                  In Quake, you get the story in the booklet and it's up to you to learn the game.

                                                                                                                                                                                                                                                                                                  In modern games you're constantly interrupted with an explanation of what you can do, should do, and so on.

                                                                                                                                                                                                                                                                                                  I love this one (Infinite Craft) because it's up to you to discover and discovery is really fast because nothing interrupts you.

                                                                                                                                                                                                                                                                                                  allchemy.io should have a mode without animations and explanations, maybe explanations when you hover over crafted objects on the right pane.

                                                                                                                                                                                                                                                                                                  • david422 a year ago

                                                                                                                                                                                                                                                                                                    > In Quake, you get the story in the booklet and it's up to you to learn the game.

                                                                                                                                                                                                                                                                                                    Or any old console game. Part of the fun was cracking open the little instruction pamphlet and reading all about each enemy and each weapon with little pictures etc.

                                                                                                                                                                                                                                                                                                    • f1nlay a year ago

                                                                                                                                                                                                                                                                                                      Worth noting that Allchemy lets you peer through every single item generated by anyone, via the Itempedia: https://allchemy.io/items

                                                                                                                                                                                                                                                                                                      You can find some interesting stuff!

                                                                                                                                                                                                                                                                                                    • undefined a year ago
                                                                                                                                                                                                                                                                                                      [deleted]
                                                                                                                                                                                                                                                                                                    • blorenz a year ago

                                                                                                                                                                                                                                                                                                      This. Duolingo is in the same vein which interrupts my flow. Animations shouldn't continuously block the interaction of the experience. The majority should probably be ancillary and be a visual flourish.

                                                                                                                                                                                                                                                                                                      • stronglikedan a year ago

                                                                                                                                                                                                                                                                                                        If you use Duolingo app on a phone that supports power saving mode, it significantly cuts down the animations.

                                                                                                                                                                                                                                                                                                      • duxup a year ago

                                                                                                                                                                                                                                                                                                        I like them.

                                                                                                                                                                                                                                                                                                        I assume these sites are about exploring lots of different things, even if they don't work as much as some would like.

                                                                                                                                                                                                                                                                                                        • f1nlay a year ago

                                                                                                                                                                                                                                                                                                          You should be able to click right through them - but agreed. Will add an option to disable them in the near future!

                                                                                                                                                                                                                                                                                                      • iandanforth a year ago

                                                                                                                                                                                                                                                                                                        Frankly I want to watch an animation of all the combinations as they are discovered/created over time from their backend. Seeing a growing 'tech tree' from the exploration and imaginations of users would be delightful.

                                                                                                                                                                                                                                                                                                        • itschrisyoko a year ago

                                                                                                                                                                                                                                                                                                          Seeing a list populated of the First Discoveries along with the elements combined to make them would be a lot of fun to see.

                                                                                                                                                                                                                                                                                                          • rkagerer a year ago

                                                                                                                                                                                                                                                                                                            Barackasaurus was fun.

                                                                                                                                                                                                                                                                                                          • jerbear4328 a year ago

                                                                                                                                                                                                                                                                                                            I got some funny ones, like:

                                                                                                                                                                                                                                                                                                            - Bread + Bread = Toast, + Fire = Burnt Toast, + Fire = Ash

                                                                                                                                                                                                                                                                                                            - Toast + Disaster = Pop Tart, + Fire = Hot Pocket, + Coffee = Coffee Pocket (First Discovery)

                                                                                                                                                                                                                                                                                                            - Hot Pocket + Cappuccino = Cappuccino Pocket (First Discovery), + Pop Tart = Cappuccino Pop Tart (First Discovery)

                                                                                                                                                                                                                                                                                                            - Coffee Pocket + Disaster = Coffee Spill (First Discovery), + Pop Art (sic) = Jackson Pollock

                                                                                                                                                                                                                                                                                                            - Jackson Pollock + Megadisaster = Jackson Pollock

                                                                                                                                                                                                                                                                                                            - Artist + Disaster = Picasso

                                                                                                                                                                                                                                                                                                            Apparently nobody else was insane enough to combine Coffee, Hot Pockets, and Pop Tarts. The AI is just confusing sometimes, though:

                                                                                                                                                                                                                                                                                                            - Pompeii + Kaleidoscope = Mosaic?

                                                                                                                                                                                                                                                                                                            - Burnt Toast + Water = Coffee, + Cake = Breakfast, + Mosaic = Cereal?

                                                                                                                                                                                                                                                                                                            - Coffee Pocket + Broken Window = Coffee? (though idk what I expected)

                                                                                                                                                                                                                                                                                                            • whats_a_quasar a year ago

                                                                                                                                                                                                                                                                                                              - Dragon + Lazer = Dragonzord

                                                                                                                                                                                                                                                                                                              I got Mega Dragonzord! First discovery. But I didn't see how.

                                                                                                                                                                                                                                                                                                              Here is a list of new kaiju I first discovered:

                                                                                                                                                                                                                                                                                                              - Dragonzord + Sandpunk = Sandzord

                                                                                                                                                                                                                                                                                                              - Dragon-Rex + Hippopotamus = Hippodragon

                                                                                                                                                                                                                                                                                                              - Hippodragon + Mega Dragonzord = Mega Hippodragonzord

                                                                                                                                                                                                                                                                                                              - Mega Hippodragonzord + Flying Circus = Mega Flying Circus Hippodragonzord

                                                                                                                                                                                                                                                                                                              - Zombie + Mega Dragonzord = Zombie Dragonzord

                                                                                                                                                                                                                                                                                                              - Swan + Megazord = Swan Megazord

                                                                                                                                                                                                                                                                                                              - Sandzord

                                                                                                                                                                                                                                                                                                              - Steam Dragonzord

                                                                                                                                                                                                                                                                                                              - Swan Dragonzombie Megazord

                                                                                                                                                                                                                                                                                                              - Mega Swan Dragonzord Megazord

                                                                                                                                                                                                                                                                                                              The more ridiculous this gets the more fun I'm having

                                                                                                                                                                                                                                                                                                              • karaterobot a year ago

                                                                                                                                                                                                                                                                                                                I was surprised that Penguin + Werewolf = Werepenguin. I mean, it makes sense, I just didn't expect it to be a valid response.

                                                                                                                                                                                                                                                                                                                • jampa a year ago

                                                                                                                                                                                                                                                                                                                  I got Tea + Dinossaur = Tea Rex

                                                                                                                                                                                                                                                                                                                  Thought it was pretty clever

                                                                                                                                                                                                                                                                                                                  • ProllyInfamous a year ago

                                                                                                                                                                                                                                                                                                                    "Humor" was Sam Altman's response to the question "What one word defines `human`?" What happens when AI becomes the ultimate Dad [joke]?

                                                                                                                                                                                                                                                                                                                  • felurx a year ago

                                                                                                                                                                                                                                                                                                                    I played around quite a lot and got many funny combos too. My memory is poor, but one of my favs was Gay + Vampire = Twilight

                                                                                                                                                                                                                                                                                                                    • jamager a year ago

                                                                                                                                                                                                                                                                                                                      Oh my this is so addictive. Got some first discoveries such as...

                                                                                                                                                                                                                                                                                                                      - The Abominable Ramen Pigman - The Colorblind Lama - The Dalai Llama - Pig of Thrones - The Purple Monkey With A Laser Beam Attached To Its Head

                                                                                                                                                                                                                                                                                                                      • warangel a year ago

                                                                                                                                                                                                                                                                                                                        how did you get monkey and laser beam? i assume that you need metal to make laser beam and I need metal

                                                                                                                                                                                                                                                                                                                      • MuffinMan2 a year ago

                                                                                                                                                                                                                                                                                                                        How do you get Bread

                                                                                                                                                                                                                                                                                                                        • bloaf a year ago

                                                                                                                                                                                                                                                                                                                          I have created the words:

                                                                                                                                                                                                                                                                                                                          - Slimy Palm

                                                                                                                                                                                                                                                                                                                          - Momfia

                                                                                                                                                                                                                                                                                                                          - Sand-T-Rump

                                                                                                                                                                                                                                                                                                                          - Stinkadult

                                                                                                                                                                                                                                                                                                                          - Cheesus vs Jesus

                                                                                                                                                                                                                                                                                                                          - Surfing Blues Brothers

                                                                                                                                                                                                                                                                                                                          - Gnomeo and Juliet

                                                                                                                                                                                                                                                                                                                          - Game of Thrones = Pornstar + Sword Fight

                                                                                                                                                                                                                                                                                                                          - Putin = Stool (with poop emoji) + Russia

                                                                                                                                                                                                                                                                                                                        • LonelyWolfe a year ago

                                                                                                                                                                                                                                                                                                                          I made this to play the game automatically. It's a simple WinForm application but I've left the JavaScript version in there too:

                                                                                                                                                                                                                                                                                                                          https://github.com/roman015/InfiniteCraftAutomation

                                                                                                                                                                                                                                                                                                                          • dgrin91 a year ago

                                                                                                                                                                                                                                                                                                                            Its fun, but annoying that you have to do a lot of mouse dragging. Some more click-based interface would be better.

                                                                                                                                                                                                                                                                                                                            Edit: some measure of progress would also be good. I cant know how much I missed

                                                                                                                                                                                                                                                                                                                            Edit2: Megalodon + Cemetery seems to break the system, spits back nothing.

                                                                                                                                                                                                                                                                                                                            • volemo a year ago

                                                                                                                                                                                                                                                                                                                              I don't think any measure of completion is applicable here: the combinations are generated by an LLM (and the game even claims to be infinite).

                                                                                                                                                                                                                                                                                                                              • supriyo-biswas a year ago

                                                                                                                                                                                                                                                                                                                                It seems like you can tap on mobile. I don’t know if the author changed this after your comment.

                                                                                                                                                                                                                                                                                                                                • slmjkdbtl a year ago

                                                                                                                                                                                                                                                                                                                                  This would work better on mobile where dragging is easier and more intuitive

                                                                                                                                                                                                                                                                                                                                  • thfuran a year ago

                                                                                                                                                                                                                                                                                                                                    On mobile you don't have to drag, just click one and then the other.

                                                                                                                                                                                                                                                                                                                                • nopeynone76 a year ago

                                                                                                                                                                                                                                                                                                                                  sharknado + time travel=sharknado2 + time travel = sharknado3 +time travel=Sharknado 3 Oh Hell No!+ time travel= sharknado4 The 4th Awakens +time travel =sharknado5 Global Swarming+ time travel = sharknado6: the last sharknado: It's about time. black hole+ wormhole = time travel wind + wind = tornado water + water =lake lake + water = ocean ocean+ water = fish fish + fish = shark shark +tornado = sharknado

                                                                                                                                                                                                                                                                                                                                  • Gimgulp a year ago

                                                                                                                                                                                                                                                                                                                                    trump + wall = mexico, mexico + candy = taco, taco + mexico = taco bell, taco bell + mario = mario bell, super mario + mario bell = super mario bell, super mario + taco bell = super taco + super mario = super mario taco, mario taco + taco bell = mario taco bell, super mario taco + taco bell = Super Mario Taco Bell. Bowser + rainbow = rainbow road + bowser = mario kart + mario taco = mario kart taco + , mario + santa = mario claus, mario kart taco + mario claus = mario kart 8 + mario kart 8 = mario kart 8 deluxe + super mario taco bell = taco bell mario kart 8 deluxe. LOLOLOLOLOLOL IM LAUGHING SOOOO HARD RIGHT NOW

                                                                                                                                                                                                                                                                                                                                    • nonbirithm a year ago

                                                                                                                                                                                                                                                                                                                                      This is really clever. "Football Jesus" is "Tebow", so I am now happily exploring the Tebowverse. There is even a robot incarnation named "Tebot".

                                                                                                                                                                                                                                                                                                                                      • microwavedair a year ago

                                                                                                                                                                                                                                                                                                                                        I made Ryan. I don't know who Ryan is or why you combine wind with _______ (I forgot)to get Ryan, but this is hilarious. Some of the other things I created and thought were funny: Tractor monster(first discovery!), Flying soggy toast, Flying dry toast, Abominable noodleman, Flying spaghetti monster, Unicorn toast, Iceland,

                                                                                                                                                                                                                                                                                                                                        • OwseiWT a year ago

                                                                                                                                                                                                                                                                                                                                          I love how you have several random descovires like Flying spaghetti monster and Abominable noodleman. Then just Iceland. Just. Iceland.

                                                                                                                                                                                                                                                                                                                                        • Ldorigo a year ago

                                                                                                                                                                                                                                                                                                                                          I know it's all LLM randomness, but some of these are pretty fun/quirky. E.g. sheep + murder gave me "silence" which puzzled me for a while until I thought of silence of the lambs.

                                                                                                                                                                                                                                                                                                                                          • shmageggy a year ago

                                                                                                                                                                                                                                                                                                                                            teenager + apple pie = pregnancy

                                                                                                                                                                                                                                                                                                                                            • ProllyInfamous a year ago

                                                                                                                                                                                                                                                                                                                                              [flagged]

                                                                                                                                                                                                                                                                                                                                              • DmnSlyr431 a year ago

                                                                                                                                                                                                                                                                                                                                                [flagged]

                                                                                                                                                                                                                                                                                                                                            • joshelgar a year ago

                                                                                                                                                                                                                                                                                                                                              Saw this on Neal's twitter a couple of days ago, it inspired me to make the food version :)

                                                                                                                                                                                                                                                                                                                                              https://twitter.com/joshelgar/status/1750141793377686000

                                                                                                                                                                                                                                                                                                                                              • undefined a year ago
                                                                                                                                                                                                                                                                                                                                                [deleted]
                                                                                                                                                                                                                                                                                                                                              • orenlindsey a year ago

                                                                                                                                                                                                                                                                                                                                                The LLM that powers this is surprisingly well trained (for what it is doing). I don't know if it's using a pre-existing one, but if you open dev tools and find the api you can play around with any combination of things.

                                                                                                                                                                                                                                                                                                                                                Just as an example, I put in "Protestant" and "Spiritual Experiences" and it gave "Pentecostal" which is exactly right, and I didn't expect it to know that. Now I have to find how to get that in the game.

                                                                                                                                                                                                                                                                                                                                                • Gimgulp a year ago

                                                                                                                                                                                                                                                                                                                                                  trump + wall = mexico, mexico + candy = taco, taco + mexico = taco bell, taco bell + mario = mario bell, super mario + mario bell = super mario bell, super mario + taco bell = super taco + super mario + super mario = super mario taco, mario taco + taco bell = mario taco bell, super mario taco + taco bell = Super Mario Taco Bell

                                                                                                                                                                                                                                                                                                                                                  • undefined a year ago
                                                                                                                                                                                                                                                                                                                                                    [deleted]
                                                                                                                                                                                                                                                                                                                                                    • GimKitersun a year ago

                                                                                                                                                                                                                                                                                                                                                      trump + wall = mexico, mexico + candy = taco, taco + mexico = taco bell, taco bell + mario = mario bell, super mario + mario bell = super mario bell, super mario + taco bell = super taco + super mario = super mario taco, mario taco + taco bell = mario taco bell, super mario taco + taco bell = Super Mario Taco Bell

                                                                                                                                                                                                                                                                                                                                                      • eshack94 a year ago

                                                                                                                                                                                                                                                                                                                                                        Angel + Zeus = God. o_O

                                                                                                                                                                                                                                                                                                                                                        This little game is too entertaining. I hope the author open sources it, or writes a technical blog post on how it's implemented.

                                                                                                                                                                                                                                                                                                                                                        • subarctic a year ago

                                                                                                                                                                                                                                                                                                                                                          How many greek gods have you managed to get? I got Zeus, Hera, Athena, and Poseidon, plus Achilles if he counts.

                                                                                                                                                                                                                                                                                                                                                          • grrr19 a year ago

                                                                                                                                                                                                                                                                                                                                                            I got Dionysus from God and drunk

                                                                                                                                                                                                                                                                                                                                                        • Kronopath a year ago

                                                                                                                                                                                                                                                                                                                                                          I managed to kinda break it. I managed to get “Steam Engine” and “Hacker”. I combined those to make “Steam Punk”. (Fair enough.)

                                                                                                                                                                                                                                                                                                                                                          Everything that’s combined with Steam Punk ends up being stupid and boring.

                                                                                                                                                                                                                                                                                                                                                          Steam Punk + Zombie = “Steam Zombie”

                                                                                                                                                                                                                                                                                                                                                          Steam Punk + Hacker = “Steam Hacker”

                                                                                                                                                                                                                                                                                                                                                          Steam Punk + UFO, which you’d think would be “Zeppelin” or something, is instead “Steam UFO”.

                                                                                                                                                                                                                                                                                                                                                          Steam Punk + Illusion is, bafflingly, “Steampunk”, all one word, and with a different emoji!

                                                                                                                                                                                                                                                                                                                                                          • athrowaway3z a year ago

                                                                                                                                                                                                                                                                                                                                                            I had a first discovery for 'Justice League of Mars', then one for 'Justice League of Moon', but not for the 'Justice League of Mars and Moon'

                                                                                                                                                                                                                                                                                                                                                          • nopeynone76 a year ago

                                                                                                                                                                                                                                                                                                                                                            I got first discovery for "Doctor Who-lloweeners"

                                                                                                                                                                                                                                                                                                                                                            • rawcal a year ago

                                                                                                                                                                                                                                                                                                                                                              Terminator + Robot = T1000 T1000 + T1000 = T2000 I'm at T-32000000 and still going

                                                                                                                                                                                                                                                                                                                                                              • joshfee a year ago

                                                                                                                                                                                                                                                                                                                                                                The most unexpected 2048 clone

                                                                                                                                                                                                                                                                                                                                                                • calebj0seph a year ago

                                                                                                                                                                                                                                                                                                                                                                  Same here with Monkey Island 2 + Monkey Island 3 = Monkey Island 4.

                                                                                                                                                                                                                                                                                                                                                                  I'm now at Monkey Island 12357990.

                                                                                                                                                                                                                                                                                                                                                                  • cudder a year ago

                                                                                                                                                                                                                                                                                                                                                                    I got Sharknado from shark + tornado.

                                                                                                                                                                                                                                                                                                                                                                    Then Sharknado 3 from sharknado + sharknado.

                                                                                                                                                                                                                                                                                                                                                                    Then Sharktopusnado 3 from sharknado 3 + octopus

                                                                                                                                                                                                                                                                                                                                                                    Now I'm going at Sharktopusnado 9400000000000.

                                                                                                                                                                                                                                                                                                                                                                    Great fun!

                                                                                                                                                                                                                                                                                                                                                                  • dysoco a year ago

                                                                                                                                                                                                                                                                                                                                                                    Woah this is extremely addictive and has a lot of potential, I love games like Little Alchemy and this goes to 11.

                                                                                                                                                                                                                                                                                                                                                                    Surely some things are weird and are to be expected from the usage of AI, for example, I managed to somehow create Neon Genesis Evangelion (try to!) but I can't seem to replicate any more animes, mangas or shows.

                                                                                                                                                                                                                                                                                                                                                                    • lilyball a year ago

                                                                                                                                                                                                                                                                                                                                                                      I combined Fish and Fire and got Sushi, which is a dish that is famously made without any fire whatsoever. The game also decided to pair the Wheat emoji with the word Amber.

                                                                                                                                                                                                                                                                                                                                                                      • lightbendover a year ago

                                                                                                                                                                                                                                                                                                                                                                        You should consider yourself lucky that you haven't witnessed the torched sushi craze [yet].

                                                                                                                                                                                                                                                                                                                                                                        • rishikeshs a year ago

                                                                                                                                                                                                                                                                                                                                                                          May be wasabi is fire?

                                                                                                                                                                                                                                                                                                                                                                          • lilyball a year ago

                                                                                                                                                                                                                                                                                                                                                                            I got wasabi by adding fire to sushi.

                                                                                                                                                                                                                                                                                                                                                                            • mym1990 a year ago

                                                                                                                                                                                                                                                                                                                                                                              Wasabi == spicy == hot == fire?

                                                                                                                                                                                                                                                                                                                                                                        • rabbits_2002 a year ago

                                                                                                                                                                                                                                                                                                                                                                          There used to be webgames with a similar premise. Pretty fun.

                                                                                                                                                                                                                                                                                                                                                                          I think some of the recipes don’t make sense and it would be a lot better if each thing only had one recipe to create it.

                                                                                                                                                                                                                                                                                                                                                                          • Minor49er a year ago

                                                                                                                                                                                                                                                                                                                                                                            Jane + Library creates a Content-Security-Policy error in Firefox 122 for Mac (looks like it should turn into Book normally)

                                                                                                                                                                                                                                                                                                                                                                            Also, ashes + water = soup. I need to try some more recipes

                                                                                                                                                                                                                                                                                                                                                                            • earth2mars a year ago

                                                                                                                                                                                                                                                                                                                                                                              How many man hours this entertained or wasted so far! So addictive and most probably everyone who played this probably has something better to do.

                                                                                                                                                                                                                                                                                                                                                                              • mbowcut2 a year ago

                                                                                                                                                                                                                                                                                                                                                                                This is fun. It would be interesting to build a single graph of concepts that all users contribute to. Then you wouldn't have to run LLM inference on every request, just the novel ones, plus you could publish the complete graph which would be something like an embedding space.

                                                                                                                                                                                                                                                                                                                                                                                • lilyball a year ago

                                                                                                                                                                                                                                                                                                                                                                                  A lot of combinations return instantly, so I assume that it is in fact caching a lot.

                                                                                                                                                                                                                                                                                                                                                                                  • mbowcut2 a year ago

                                                                                                                                                                                                                                                                                                                                                                                    oh I just realized that 'isNew' in the response refers to a global set, not the user set. So, I guess it's doing exactly what I said lol.

                                                                                                                                                                                                                                                                                                                                                                                    • lilyball a year ago

                                                                                                                                                                                                                                                                                                                                                                                      I just went back and did some new combinations with early ones and I'm still getting intermittent delays even though all early combinations must be done, so I assume part of this is just the server itself being a little overloaded and so even responses that are cached remotely but not locally may experience delays.

                                                                                                                                                                                                                                                                                                                                                                                • 20after4 a year ago

                                                                                                                                                                                                                                                                                                                                                                                  I played with llama2 for a bit to see if this was easy to recreate. It's surprisingly easy to get 90% of the way there but I have yet to get the results to be as appropriate. I wonder if there is some fine tuning or other forms of extended context (beyond a system prompt) to make this magic happen. Seems like most likely it's not just a vanilla llama2 model + a bit of prompt engineering..

                                                                                                                                                                                                                                                                                                                                                                                  • couto_aranha a year ago

                                                                                                                                                                                                                                                                                                                                                                                    I was playing with my friend and we wanted to merge our saves, so i got the script promiseofbeans posted here some days ago and i altered it to merge 2 saves and re=import them to one save. It's available here: https://github.com/Gabrielcouto1/inifnite_craft_save_merger

                                                                                                                                                                                                                                                                                                                                                                                    I'm still having a problem where after you import the save, you can no longer search in any way LOL. I tried both neal's search feature that he added a few days ago, and also procparam's script (he posted here 5 days ago)

                                                                                                                                                                                                                                                                                                                                                                                    Other "problem" i encountered is that in order to save the merged stuff, you have to craft one new element. After you do that, it autosaves and there is no further problems.

                                                                                                                                                                                                                                                                                                                                                                                    • digging a year ago

                                                                                                                                                                                                                                                                                                                                                                                      Games like this already exist and have comparable complexity, so calling it infinite and using an LLM backend feels overhyped.

                                                                                                                                                                                                                                                                                                                                                                                      For example, Castle + Fortress = Castle?

                                                                                                                                                                                                                                                                                                                                                                                      City + Town = Castle. Castle + Wall = City?

                                                                                                                                                                                                                                                                                                                                                                                      Metropolis + City = Megalopolis. Ok we're getting somewhere cool here, let's see how big it gets: Megalopolis + City = Metropolis?!

                                                                                                                                                                                                                                                                                                                                                                                      Finally, it just failed to combine War + Tunnel. It blinks for a minute and then gives up. I would have said "Sappers"? Edit: There are actually many such failures for higher-order combinations which is strictly not infinite. Other combinations described above might technically fit the bill but ceasing functionality does not : /

                                                                                                                                                                                                                                                                                                                                                                                      • Jare a year ago

                                                                                                                                                                                                                                                                                                                                                                                        I just described it to my colleagues as

                                                                                                                                                                                                                                                                                                                                                                                        > this uses GenAI in order to attempt being truly infinite, or at least not bounded by their ability to design and input combinations themselves

                                                                                                                                                                                                                                                                                                                                                                                        It's fair to go for that name imho. Not strictly correct, but 100% fair.

                                                                                                                                                                                                                                                                                                                                                                                        • digging a year ago

                                                                                                                                                                                                                                                                                                                                                                                          That's just generative or procedural though. It's ok of course that it's not truly infinite, I'm just posting because it was disappointingly finite. There were concepts I was trying to build up to that simply didn't exist. So I'm not even sure if it's less bounded than human design, just less manual effort to build.

                                                                                                                                                                                                                                                                                                                                                                                          All I'm saying really is, if it had just been called "AI Generative Craft" I would have had nothing to say in the comments. I would have gotten what I expected.

                                                                                                                                                                                                                                                                                                                                                                                          • thfuran a year ago

                                                                                                                                                                                                                                                                                                                                                                                            >There were concepts I was trying to build up to that simply didn't exist.

                                                                                                                                                                                                                                                                                                                                                                                            They may not, but that you didn't find them precisely where you expected doesn't really convince me that they don't.

                                                                                                                                                                                                                                                                                                                                                                                            • sprobertson a year ago

                                                                                                                                                                                                                                                                                                                                                                                              Couldn't build up to doesn't mean they didn't exist... it took me a while to make a "Sandwich". But after spending enough (too much) time with it, I was able to construct some things that show it's not disappointingly finite:

                                                                                                                                                                                                                                                                                                                                                                                              * "Bollygraff"

                                                                                                                                                                                                                                                                                                                                                                                              * "Teen Mom 12"

                                                                                                                                                                                                                                                                                                                                                                                              * "Hackimus Prime"

                                                                                                                                                                                                                                                                                                                                                                                              * "Billionaire King + Sushi Burger Venus" (sic)

                                                                                                                                                                                                                                                                                                                                                                                              One potentially frustrating part is that some things turn out to be black holes... for example, combine "Trump" with anything and it tends to return "Trump". There are also plenty of loops, and some that refuse to combine at all.

                                                                                                                                                                                                                                                                                                                                                                                              • TomK32 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                You can combine Trump with the Empire State Building to get Trump Tower. Also I think Trump + Money was Bankruptcy. And there's Trumpthuluh obviously.

                                                                                                                                                                                                                                                                                                                                                                                                • afranchuk a year ago

                                                                                                                                                                                                                                                                                                                                                                                                  I forget how I got Trump (it was a different formulation than others mentioned though). But Trump + Titanic = Sinking Ship

                                                                                                                                                                                                                                                                                                                                                                                                  • nwiswell a year ago

                                                                                                                                                                                                                                                                                                                                                                                                    I got

                                                                                                                                                                                                                                                                                                                                                                                                    Rich + Rich = Richer

                                                                                                                                                                                                                                                                                                                                                                                                    Richer + Richer = Richest

                                                                                                                                                                                                                                                                                                                                                                                                    Richest + Poop = Trump

                                                                                                                                                                                                                                                                                                                                                                                                    • ithkuil a year ago

                                                                                                                                                                                                                                                                                                                                                                                                      O got trump by making "god"+"a-hole"

                                                                                                                                                                                                                                                                                                                                                                                                      Then I did "T-Rex"+"trump" and I got "T-Rump"

                                                                                                                                                                                                                                                                                                                                                                                                      I was impressed by the creativity

                                                                                                                                                                                                                                                                                                                                                                                            • sprobertson a year ago

                                                                                                                                                                                                                                                                                                                                                                                              I've found retrying after a bit will often return the new result. I suspect the frontend is timing out before the backend comes up with a result, which is eventually cached by the time of the second attempt

                                                                                                                                                                                                                                                                                                                                                                                              • digging a year ago

                                                                                                                                                                                                                                                                                                                                                                                                Others have mentioned the same - I tried several times the same combination and got no result. However, it's now clear from other replies that eventually there will be some result (even if it's just one of the inputs), so I guess that argument doesn't hold.

                                                                                                                                                                                                                                                                                                                                                                                              • magneticnorth a year ago

                                                                                                                                                                                                                                                                                                                                                                                                I mean, there are only a finite number of words in the English language, so of course something like this isn't truly infinite.

                                                                                                                                                                                                                                                                                                                                                                                                But I've wandered off into a space of fantastical creatures: rainbow + explosion = unicorn, from there I've gotten phoenix, "steam unicorn", narwhalicorn.

                                                                                                                                                                                                                                                                                                                                                                                                Others have gotten into food items? I don't even know how I'd get there. And you've gotten into infrastructure and war.

                                                                                                                                                                                                                                                                                                                                                                                                There's enough to explore here that I'm ok with it being called infinite.

                                                                                                                                                                                                                                                                                                                                                                                                • etrautmann a year ago

                                                                                                                                                                                                                                                                                                                                                                                                  not the OP but as a fun exploratory hobby project, you don't think the presentation is reasonable? seems totally fair to me

                                                                                                                                                                                                                                                                                                                                                                                                  • digging a year ago

                                                                                                                                                                                                                                                                                                                                                                                                    I mean, not really, no. I'm not trying to be super critical here, just, it's not even presented as a exploratory LLM project. It's only presented as "infinite", and it's... not.

                                                                                                                                                                                                                                                                                                                                                                                                    • undefined a year ago
                                                                                                                                                                                                                                                                                                                                                                                                      [deleted]
                                                                                                                                                                                                                                                                                                                                                                                                  • furyofantares a year ago

                                                                                                                                                                                                                                                                                                                                                                                                    > There are actually many such failures for higher-order combinations which is strictly not infinite

                                                                                                                                                                                                                                                                                                                                                                                                    I suspect a service error, either the service/LLM not responding fast enough sometimes when a combination isn't already known, or the LLM not giving a usable result.

                                                                                                                                                                                                                                                                                                                                                                                                    I mean, there aren't infinite emojis or words so it isn't gonna be infinite but I think some of the errors I've seen have been more transient.

                                                                                                                                                                                                                                                                                                                                                                                                  • Gimgulp a year ago

                                                                                                                                                                                                                                                                                                                                                                                                    lolol, i somehow did: Bowser + rainbow = rainbow road + bowser = mario kart + mario taco = mario kart taco. and btw I discovered mario kart taco for the first time lol

                                                                                                                                                                                                                                                                                                                                                                                                    • wly_cdgr a year ago

                                                                                                                                                                                                                                                                                                                                                                                                      This is a clone of Little Alchemy, a game (that I happen to know about because it's made by someone I know and respect) that's been out for about a decade. https://littlealchemy.com/

                                                                                                                                                                                                                                                                                                                                                                                                      It's fine to clone existing games as a gamedev exercise and/or to iterate meaningfully on the design, and to be fair, maybe this game does the latter. However, it is good to pay respects to the shoulders you build on. Little Alchemy is not so well known that this is like making a game called Tetrizz.

                                                                                                                                                                                                                                                                                                                                                                                                      (Can someone make Tetrizz please?)

                                                                                                                                                                                                                                                                                                                                                                                                      • omoikane a year ago

                                                                                                                                                                                                                                                                                                                                                                                                        Little Alchemy might have itself been inspired by an earlier game:

                                                                                                                                                                                                                                                                                                                                                                                                        https://archive.org/details/msdos_Alchemy_Game_The_1997

                                                                                                                                                                                                                                                                                                                                                                                                        • wly_cdgr a year ago

                                                                                                                                                                                                                                                                                                                                                                                                          Ha, cool, thank you for the info. I was half suspecting (and hoping) that someone would point out something like this. Game history knowledge increased.

                                                                                                                                                                                                                                                                                                                                                                                                      • PrincePhoenix a year ago

                                                                                                                                                                                                                                                                                                                                                                                                        I got a few new discorveries. Silence of the lambs + Sharknado = Silence of the Sharks, Hannibal lecter + Quagmire = Hannibal quagmire, Hannibal Quagmire + Sharknado = Sharknibal.

                                                                                                                                                                                                                                                                                                                                                                                                        • PrincePhoenix a year ago

                                                                                                                                                                                                                                                                                                                                                                                                          Hannibal Sharknado, Sharknibaldo

                                                                                                                                                                                                                                                                                                                                                                                                        • burrish a year ago

                                                                                                                                                                                                                                                                                                                                                                                                          Classic game, but there is some merge that make no sense to me, how does fire and whale make a dragon ?

                                                                                                                                                                                                                                                                                                                                                                                                          • voxic11 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                            Its driven by a LLM. Apparently fire + whale = dragon according to multiple LLMs I was able to recreate the behavior with chatgpt https://chat.openai.com/share/a4b53cbf-904d-4f03-a8db-e7980d...

                                                                                                                                                                                                                                                                                                                                                                                                            • burrish a year ago

                                                                                                                                                                                                                                                                                                                                                                                                              ah make senses

                                                                                                                                                                                                                                                                                                                                                                                                            • theonething a year ago

                                                                                                                                                                                                                                                                                                                                                                                                              A biblical Leviathan has been depicted as a whale/dragon like fire breathing creature.

                                                                                                                                                                                                                                                                                                                                                                                                              https://en.wikipedia.org/wiki/Leviathan

                                                                                                                                                                                                                                                                                                                                                                                                              • thfuran a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                And there are definitely other (vaguely) biblical combinations like Big Bang + Clay = Adam

                                                                                                                                                                                                                                                                                                                                                                                                              • shawabawa3 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                Big animal + fire = fiery big animal

                                                                                                                                                                                                                                                                                                                                                                                                                • tvb12 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                  I got dragon from fire + swamp.

                                                                                                                                                                                                                                                                                                                                                                                                                  Another strange one was puddle + rock = pudding + dragon = custard.

                                                                                                                                                                                                                                                                                                                                                                                                                  • hombre_fatal a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                    What do you think a better response would be to Fire + Whale?

                                                                                                                                                                                                                                                                                                                                                                                                                    • burrish a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                      sushi

                                                                                                                                                                                                                                                                                                                                                                                                                      • lacerrr a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                        whale sushi? also fire and sushi don't seem very related to me.

                                                                                                                                                                                                                                                                                                                                                                                                                  • epiccoleman a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                    I am very proud to be the first discoverer of both Jerry Garcia and Trey Anastasio. It suits me. I also am the discoverer of a pretty good LLM pun - "Grateful Red," which I got by combining one of my various Grateful Dead related findings with "Mao Zedong."

                                                                                                                                                                                                                                                                                                                                                                                                                    I had some other interesting discoveries as well, including the "Abominable Crocodile", "Abominable Orc", and whatever the hell a "Pterodump" is.

                                                                                                                                                                                                                                                                                                                                                                                                                    • bricemo a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                      How do you know you are the first discoverer? Does it highlight this in some way?

                                                                                                                                                                                                                                                                                                                                                                                                                      • thfuran a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                        It says "First Discovery" under it.

                                                                                                                                                                                                                                                                                                                                                                                                                    • RedlineTriad a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                      Sadly the creator shut it down, but Elemental 3 was basically the same premise, but instead of AI for combinations it had user suggestions and ratings.

                                                                                                                                                                                                                                                                                                                                                                                                                      He made a video to visualize some of the final data though: https://youtu.be/rQWwfYSUckY

                                                                                                                                                                                                                                                                                                                                                                                                                      Also I vaguely remember a game with basically the same premise but the goal was to create life.

                                                                                                                                                                                                                                                                                                                                                                                                                      • yellowapple a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                        > fire + fish = sushi

                                                                                                                                                                                                                                                                                                                                                                                                                        Literally unplayable.

                                                                                                                                                                                                                                                                                                                                                                                                                        EDIT: apparently I'm the first to discover "Captain Tokyo"?

                                                                                                                                                                                                                                                                                                                                                                                                                        EDIT: and "Captain Tiamat". Had no idea those are even things.

                                                                                                                                                                                                                                                                                                                                                                                                                        Seems like I'm the designated captain discoverer. More to the list:

                                                                                                                                                                                                                                                                                                                                                                                                                        - Captain Penguin Universe

                                                                                                                                                                                                                                                                                                                                                                                                                        - Captain Penguin Planet

                                                                                                                                                                                                                                                                                                                                                                                                                        - Captain Penguin Multiverse

                                                                                                                                                                                                                                                                                                                                                                                                                        - Captain Poseidon Multiverse

                                                                                                                                                                                                                                                                                                                                                                                                                        - Captain Jack Poseidon

                                                                                                                                                                                                                                                                                                                                                                                                                        - Captain Jack Tiamat

                                                                                                                                                                                                                                                                                                                                                                                                                        - Captain Everything Jack Sparrow (which can't combine with anything, apparently)

                                                                                                                                                                                                                                                                                                                                                                                                                        - Captain Penguin Zombee

                                                                                                                                                                                                                                                                                                                                                                                                                        - Captain Penguin Zombee Universe (also can't combine with anything)

                                                                                                                                                                                                                                                                                                                                                                                                                        • urbandw311er a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                          Seems you’re playing with it quite a lot for somebody who’s described it as “literally unplayable”.

                                                                                                                                                                                                                                                                                                                                                                                                                          • yellowapple a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                            I see jokes at the expense of cooked fish in sushi don't get past you :)

                                                                                                                                                                                                                                                                                                                                                                                                                        • jomsk1e a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                          Very fun! Most hilarious result I found is James Bond + Tarzan = Jane Bond

                                                                                                                                                                                                                                                                                                                                                                                                                          • krick a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                            First I discovered Slaughterhouse Five. Then Slaughterhouse Ten. Then Slaughterhouse Fifteen…

                                                                                                                                                                                                                                                                                                                                                                                                                            Kinda got tired at Slaughterhouse One Hundred Thousand.

                                                                                                                                                                                                                                                                                                                                                                                                                            • PawgerZ a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                              Very cool. I combined 'double rainbow' and 'ocean'; thought I broke it as it loaded for like 20 seconds; then got Atlantis. Eventually I got to 'mermaid', combined it with 'fire', and got 'siren'. But the emoji was a police siren, not the mythical creature. I can see how the LLM would be confused, though.

                                                                                                                                                                                                                                                                                                                                                                                                                              • ilaksh a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                The LLM was not confused. It just fed "siren" into the image generator and that's an ambiguous term.

                                                                                                                                                                                                                                                                                                                                                                                                                                • PawgerZ a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                  Yes, that's the confusion I was talking about. Sorry, I meant to say the image generator was confused. The confusion how I came to the assumption that it was an LLM hooked to an image generator.

                                                                                                                                                                                                                                                                                                                                                                                                                                  Interestingly, I did break it on flower + eclipse.

                                                                                                                                                                                                                                                                                                                                                                                                                              • srackey a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                Hey! It’s that old game Doodle God!

                                                                                                                                                                                                                                                                                                                                                                                                                                • qnsoaejacniln a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                  Thank you! I swore that I played a game just like this, but was totally blanking on the name.

                                                                                                                                                                                                                                                                                                                                                                                                                                  • LilLegendGamerz a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                    Also Little Alchemy!

                                                                                                                                                                                                                                                                                                                                                                                                                                  • banana_giraffe a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                    Some of these combinations are really clever, some are really dubious, but still fun.

                                                                                                                                                                                                                                                                                                                                                                                                                                    At any rate, the first 1000 or so that a quick python script found: https://gist.github.com/Q726kbXuN/6620a12ade4b77dacce93d1c96...

                                                                                                                                                                                                                                                                                                                                                                                                                                    • BD103 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                      This reminds of Little Alchemy, which used to be popular a few years ago

                                                                                                                                                                                                                                                                                                                                                                                                                                      • Gimgulp a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                        super mario + burrito = burrito mario + mario kart 8 deluxe = burrito kart 8 deluxe

                                                                                                                                                                                                                                                                                                                                                                                                                                        • Gimgulp a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                          santa claus + mario = mario claus + taco bell = taco claus + nintendo = nintaco claus

                                                                                                                                                                                                                                                                                                                                                                                                                                          • okwhateverdude a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                            I can't seem to make anything more complicated than "Divorce Hammer + Super Mothra Unicorn Batman". As in, that's the name of the item which was indeed the two components I attempted to combine. Trying to combine that item with anything else simply doesn't do anything.

                                                                                                                                                                                                                                                                                                                                                                                                                                            • pfooti a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                              I had a similar problem. I think the + in the item name is causing the backend to throw a 500 error.

                                                                                                                                                                                                                                                                                                                                                                                                                                              • jenadine a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                The longer I got was: "Brusselsaurus Titanium Rex + Johnny Depp in Ukraine"

                                                                                                                                                                                                                                                                                                                                                                                                                                                • undefined a year ago
                                                                                                                                                                                                                                                                                                                                                                                                                                                  [deleted]
                                                                                                                                                                                                                                                                                                                                                                                                                                                • hfnfnkjnj23 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                  i got 2 first discoverys called pineapple taliban and little shop of jihad

                                                                                                                                                                                                                                                                                                                                                                                                                                                  • AlchemicAI a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                    We started years ago with the same idea but as mobile game app. And our product is more advanced - we mix up to 5 elements at a time, generate unique pics for every elements, have elements rarity, achievements and etc

                                                                                                                                                                                                                                                                                                                                                                                                                                                    Check it out - AlchemicAI:

                                                                                                                                                                                                                                                                                                                                                                                                                                                    https://play.google.com/store/apps/details?id=com.hostelguys...

                                                                                                                                                                                                                                                                                                                                                                                                                                                    https://apps.apple.com/us/app/alchemic-ai-infinity-mix/id646...

                                                                                                                                                                                                                                                                                                                                                                                                                                                    • mckn1ght a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                      This is like a solitaire version of a game I like called telepathy, where two people at a time will call out a word, and then two more people try to come up with a word that links the two… keep iterating until two people call out the same word! Super fun.

                                                                                                                                                                                                                                                                                                                                                                                                                                                      • zoba a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                        The game you mentioned was productized as "Medium: A Mind Reading Party Game." It is fun.

                                                                                                                                                                                                                                                                                                                                                                                                                                                      • cheesecheese30 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                        If you add trump + putin = bromance...

                                                                                                                                                                                                                                                                                                                                                                                                                                                        • fallinghawks a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                          I seem to have discovered a "steam garage" and I can't imagine what that might be. That has led to a "steam palace," which seems to have already existed.

                                                                                                                                                                                                                                                                                                                                                                                                                                                          ETA: also the Cinderham and Louis Prime

                                                                                                                                                                                                                                                                                                                                                                                                                                                          Fun little game and pretty silly, thanks

                                                                                                                                                                                                                                                                                                                                                                                                                                                          • undefined a year ago
                                                                                                                                                                                                                                                                                                                                                                                                                                                            [deleted]
                                                                                                                                                                                                                                                                                                                                                                                                                                                            • catapart a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Very fun!

                                                                                                                                                                                                                                                                                                                                                                                                                                                              I'm seeing tons of slowdown when I try to merge things like "Sagitarius" and "Archer" and "Storm" and "Centaur". I guess this is the nature of the build, but I'm at least a little surprised it's hitting this kind of performance issue after only tens of objects.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Anyway, all of that aside, I'm having a lot of fun seeing what emerges from the combinations and I love that the wackier the merge result, the more fun it is to try it against all of the previous objects. Quite an addicting little loop! Great job!

                                                                                                                                                                                                                                                                                                                                                                                                                                                              • cedws a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                This is really cool. I was wondering if you could build a multiplayer strategy game out of this. I'm thinking players would compete to destroy each other with elements, kind of like chess. Metas would evolve where people race to powerful elements while keeping an eye on the other player to try and guess what they're building and maybe try to sabotage them in the process. Since the game is apparently backed by an LLM, there's a huge number of possibilities as well.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                • xpil a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A friend asked his wife to create a horse and an accountant. It took her 1hr of playing to get the former, and 3hrs for the latter. I'm still laughing.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • ajsdhg a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    items = () => [...document.querySelectorAll('.items div.item')] show = (elt) => elt.style.display='' hide = (elt) => elt.style.display='none' search = (text) => (items().forEach(show), items().filter(e => !e.innerText.toLowerCase().includes(text.toLowerCase())).forEach(hide)) inputElt = document.createElement('input'); inputElt.type='text'; document.querySelector('.sidebar').prepend(inputElt) function handle(e) { search(e.target.value) } inputElt.addEventListener('input', handle) reply

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Afoonie a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Dragon + Narwhal= Dragon-Narwhal Werebear + Dragon-Narwhal=Werebearnarwhal(first) Werebearnarwhal + Yin yang= Ying Yang Werebearnarwhal Ying Yang Werebearnarwhal + Sea maid=???(literally says that and has space symbol)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • EA a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Update - author has added two new features:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1) progress is saved locally so you can reload browser (helpful on iOS) 2) search bar added to discovered items list

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Self-Perfection a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          I got curious how far one get using just one element as starting point. So far just Earth combined with itself gives you mountains, then volcano, weird semantic attractor with "Super Super Super Super Volcano" and "Super Super Super Super Earth", breakthrough with Stonehenge, then Druid, trees, books, knowledge, religion... Fun stuff.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • aranw a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                            I've some how managed to get down an infinite variation of "Ant-..."

                                                                                                                                                                                                                                                                                                                                                                                                                                                                            One of the more interesting ones is "Ant-smoke"?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Edit: Another interesting one is combing "Batman" and "Robin" to make "Dynamic Duo"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Edit 2: I've now managed to turn the game into a number generator and by combining numbers together I've ended up creating some very large numbers. Doesn't seem to be a limit to the size either

                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • wdfx a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              This is really fun, there's some fun combos which output amusingly strange results.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Some of my first discoveries:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                - Meteor Pot
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                - Meteor Soup
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                - Meteor Shower Soup
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                - Meteor Fish Soup
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                - Jabba The Soup-zeus
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                - Sith zeus
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                - Jabba The Slimer
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                - Sonic Chip
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                - Cheech The Hedgehog
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                - Darth Shrubber
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                - Chewbuster
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                - Darth Vader Fish Soup
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              I may have got heavily involved in combining Star Wars items :P
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • card_zero a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                When I added "Bigchicken" to "Beauty and the Chainsaw King", I got "???".

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • imtuff a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                How do I get eternity

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • hasoleju a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  At first I thought that I can use the elements from the sidebar to built something in the main area, since it is wider than the sidebar.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • chasingthewind a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    My favorite combo so far was Alien + Buddha = Yoda :D

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • launch_queue a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    And with the combination of Buddha and Ghost, I have reached Enlightenment. I will take that as a sign that I have completed the game.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Afoonie a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      I don't know how but I got "Dragon-maid-narwhal-rex + Yin Yang Wasabear Hyd" that is the literal name and I think it got cut off de to too many characters?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • irgjoib a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        How do you get putin

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Trogdor147 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Some of my first discoveries: -Big Little Shop of Mummies -Super Madagascar -Lemurpocolypse -Captain Lemur -The Mummy Returns to Madagascar -Captain Super Madagascar -Captain Lemurpocolypse -Black Pantherbeard -Black Pantherbeardbeard -Black Pantherbeardbeardbeard -Black Pantherbeardbeardbeardbeard

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Trogdor147 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Ok, so I discovered the Zombatmobile 2.0, then the Zombatmobile 3.0, then the 4.0, and let's just say now we're at the Zombatmobile 1000000000.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Trogdor147 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Some more: -Black Pantherwhal -Captain Black Pantherbeard -Supernova Narwhalicorn -Super Captain Narwhalicorn -Narwhalicornbeard -Captain Narwhalicornbeard -Captain Hookbeard -Captain Hookbeard and the Narwhalicorn -Rainbow Narwhalicornbeard -Double Rainbow Narwhalicornbeard -Trumpicornbeard

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • baq a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bug report: I got to 'Mega Mega Mega Mega Mega Mega Mega Mega Mega Mega' and it can't be combined with anything

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • ProllyInfamous a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                I believe most LLM APIs prevent you from repeating (or asking to repeat) identical words. It's in ChatGPT's TOS (because it seems to occassional lead to revealing original training text).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Either that or the backend is completely overloaded and/or unable to handle more than ten of somethings.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • baq a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  It looked like an UI issue of some sort. It didn’t even try to merge.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • not_math a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  It seems to be a limit on the input length of the elements, if they have a larger name then it does not work

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • promiseofbeans a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    It seems to be a combination of how many times it's been merged, and how long it is. I think sometimes the LLM just decides a word is a 'final' word and won't merge it. I've gotten final words that are just a couple characters, and ones that are 10+ words.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • udev4096 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  You can also put random character names in the API endpoint and get the result as well: https://neal.fun/api/infinite-craft/pair?first=dog&second=ca...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • its_jiggles a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    my requests return a 403 forbidden error. is anyone else having this problem?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • foota a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    I've had this idea that a game could generate unique crafting fields in some way like this. One of the things that I think limits simulation type games is that they are often restricted to real industries and recipes etc., but if they could make up believable fantasy industries, then there could be more variety.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • thfuran a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      But they'd also be riddled with bizarre nonsense like Flamethrower+Statue = Venus.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • foota a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        I think making it take a stream of thought approach might help here.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        If you ask it to explain the chain of events it can guide the solution. I think that part of the issue here is that there's no context (well, at least that we can see) to these combinations.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        But if you build up some context then it might make things make more sense.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        E.g., if you imagine that you're prompting in the context of a "crafting type" for statues, you might have flamethrower as a "tool" and statue as an "input" and it might lead to a better solution (e.g., burnt statue, melted statue, etc.,). Alternatively if you said flamethrower and statue were both inputs then maybe the result would be a statue holding a flamethrower.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        You could think about other context as well, maybe a welder with tool flamethrower + statue gets a metal statue welded to something, a demolition job with flamethrower + statue gets rubble, etc.,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • OJFord a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Mine has just descended into Darth Maul madness, with an ever increasing number - usually adding them, but Dart Maul 114 + Darth Maul 114 just gave me Darth Maul 134, so it's a 'bit' unpredictable..!

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Edit: and it's given up at Darth Maul 1310720000 combining no longer goes higher

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • FacilityHues a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Does anyone know how to make game? Im trying to make a bunch of video game titles (I got some through different means) but without computer, Nintendo, console, game etc its been tough

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • personjerry a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Ok I played this way too long, the most ridiculous straight up is `Steampunk Bahamut Batpunkestilla Rex`

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • ilikehurdles a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Well, I broke it. I have crafted 93 different Lethal Weapon movies - sequels well into the million+ range.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • cwkoss a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              I made Shrek 236144503

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • hfnfnkjnj23 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              i got two first discoverys

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • lubesGordi a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                We need something like this but with emergent phenotypes instead of hard-coded. How would that work?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • SamBam a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  That's what this is, it's driven by an LLM.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • erikerikson a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ...with caching

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • TV_Remote a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Some stuff I found:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Dragon + Black Hole = Dragon Ball

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Moonwalk + Truth = Michael Jackson

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Then I don't even remember what I did to get super saiyan, but I managed to get to Super Saiyan 8192

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Vegeta (I forgot how to get him or Goku) + Time Paradox = Trunks

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Steamboat + TV = Steamboat Willie

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • TV_Remote a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Yooooooo I got a new few new discoveries, Super Saiyan Blue God 9 and Steamboat Gohan.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • TV_Remote a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      I got another discovery, Cactus Jack + Space = Astro Jack

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • yaman492344 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    i made a first discovery which was the super infinity stoned buddha

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • acolderentity a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      I've gone on an infinite crab island tangent of first discoveries.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • grizzlymilk a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        I was able to get piranhaconda from sharknado and Jack Sparrow. Sharnado from shark and tornado and Jack Sparrow from sparrow and captain. I then got Ice piranhaconda (which was a first discovery) from iceberg and piranhaconda.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • grizzlymilk a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          This is just gonna be a list of first discoveries. Ice Piranhaconda, Jackie Chan in Pirate Of The Caribbean 4, Jackie Chan vs. Piranhaconda, Chest Piranhaconda, Pirates Of The Caribbean 4, Jackie Chan vs. Sharknado, Jackie Chan vs. Sharknado 2, Jackie Chan vs. Sharknado 3, Jackie Chan vs. Sharknado 4, Fire Alexa, Ghostbusters 14,15,29,30,60,120,240, (I'm stopping Ghostbusters now), Fire Ahab, Ghostbuster Pan, Stinky Gold, Ghost Whale, Fido, Ghost Narwhal, Superdogman, Superdogman and the Super Justice League, Stinkfly,Super Apple Pie Man,Superstump, Iphone Peice, Captain Piece, and Captain America Piece

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • grizzlymilk a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Just got Jackie Chan vs. Piranhaconda. First discovery as well.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • MuffinMan2 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            I just discovered Curious SpongeBob so I'm wondering if any of you got SpongeBob or Curious George.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Also I have Squidward and Patrick too

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • athrowaway3z a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              As a additional twist it might be fun to also have the option to 'remove' one concept from the other.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Currently i have 'Wind farm' and I'd wish i could try going to 'farm' by removing 'wind' from it.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • orbital-decay a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Hint: by going the Warrior-Spartan-King-Leonidas-300 route, you get the endless supply of numbers to combine, starting from 300. I wonder you can make it output anything with this, as it's definitely powered by a LLM.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Demonic_Creator a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  How the heck do you find the fossil. Also a weird combo Statue + Rock = Sphinx

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Grimm_Reaper a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    i think dino and death or dino and history or dino and lava or some other stuff with dino

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Grimm_Reaper a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      yeh dino and history

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • All4All a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Are some combinations just not possible, or am I doing something incorrectly here? For instance, "Dragon" and "Yin-Yang" do not seem to merge (yet logically seem ripe for combination).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Aerbil313 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The backend is probably overloaded right now. Wait some and try again.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • shostack a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Do I need to allow access through noscript to googlesyndication.com for this to work? If so, why? It doesn't seem to work when I enable the root domain in Firefox on mobile.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • o_pax a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Apocalypse + 2016 = 2017
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Apocalypse + 2017 = 2018
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Apocalypse + 2018 = 2019
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Apocalypse + 2019 = 2020
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        but ...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Apocalypse + 2030 = 2030
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Uh-oh!
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • kieron77 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          how do you get the years?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • atleastoptimal a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Like most nifty LLM apps it's cool but fun for maybe 45 seconds.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Open source LLM's exist at the Family Feud brain stage (instinctive first pass human verbal intuition) so its depth is limited by that.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • promiseofbeans a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            I don't know about you, but me and my co-workers have been playing with it for hours now

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • lilyball a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            I've now managed to get both "Spaceship" and "Space Ship". I feel like this game really needs to have some logic to avoid having two words that are essentially identical.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • soerxpso a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              I got "Santa" and "Santa Claus"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • csours a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              I'm sure there are others, but this reminds me of Stacklands

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              https://sokpop.itch.io/stacklands

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • sBqQu3U0wH a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Haha, I got "Trojan Cannonball", and it was marked as "First discovery.". Although it's not that rare, you can create hilarious combinations.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • qwertox a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                I love this. No explanation, nothing. Just drag, drop and see.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                If I could only store the state, maybe download a JSON file which I could later drop into the editor again to restore, that would be great.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • rgbrgb a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  love this! The sounds are great and the caching is smart. I'd add a little loading animation or something... as a dev I knew it was hitting the LLM but my friend thought it was just laggy. I prototyped a similar concept with a numi/soulver type of UI a few weeks ago :) https://twitter.com/_0_/status/1747756622494265397

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  What model is being used for the backend?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • rabbits_2002 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    I noticed that mixing a 2 word item with something else will often combine the words instead of looking at the meaning:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    super volcano + man = super human

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    but then it breaks if you mix further:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    super human + giraffe = super giraffe ?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • yxhuvud a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Well, that may explain dragonpope.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • graypegg a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Heheh, my favourite has been:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Sailor Moon + Sashimi = Sailor Mercury

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • brennopost a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Gonna steal some recipes for mine: https://elemental-emojis.vercel.app/

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • abathur a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Home alone seems to be perpetually recombinant. Over 10m :)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • jtolmar a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            This is very fun.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            I managed to make a "Captain Jack Ahab + Draculawhalezilla" that seems to refuse to combine with anything. Maybe because it has a + in it already?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • kajsdkjasd a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              sleeping beauty

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • microwavedair a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                I have made the monster of all monsters!!! Coffee Tractor Monster + Flying Spaghetti Monster (first discovery) imagining this irl is horrifying.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • undefined a year ago
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [deleted]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • C_Plus a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    I made way too many new things. including but not limited to: 420gaystalin Steamlincoln Shark Mafia Lincoln Shark Mafia Steamlin Express Werebearowlstien Bowling With The Fishes ibowl steamlin mafia Underground Werebowl. GOD HELP ME I NEED SAVING FROM STEAMLIN AND SHARKS

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • k0bE a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Art+Phobia = artphobia (first) Pterodactyl+phobia = pterodactylphobia (first) Freddy Krueger + Snap = Freddy Snaps (first)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • pauldprice a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Very fun, and silly. I created a "snot serpent" by combining a "sea serpent" and a "snot ball". Works for me...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • sagz a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Always a delight to see a Neal fun link here.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          I was able to get to Dandelion after many combos! Hoping it gets to human soon.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Will try to extract the full tree from the code :)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • JeremyNT a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            According to a tweet, this thing is actually using LLaMA II[0]. I guess he probably caches results so it doesn't recompute each time, but as you go further you start finding combinations that are apparently novel and take quite a while to generate (or fail completely).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [0] https://nitter.cz/nealagarwal/status/1747284257582506102#m

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • RA2lover a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              achieved with this:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              wind + earth -> dust + dust -> sand + fire -> glass + fire -> lens + lens -> telescope + lens -> galileo

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              glass + sand -> hourglass + sand -> time + gallileo -> einstein + time -> relativity + einstein -> theory + time -> evolution + time -> human

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              There's probably a shorter and less convoluted path somewhere.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • undefined a year ago
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [deleted]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • undefined a year ago
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [deleted]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • undefined a year ago
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [deleted]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • kajsdkjasd a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  sanata clsudr

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • kingadinga a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Double rainbow warrior and rainbow Dracula ninja

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Phoenix2747 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      How to get humans, i’ve been trying for like an hour. I have been able to get Jesus before getting humans.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • thih9 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        I must be missing something

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Angel + crocodile = Angelina Jolie

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • m_akane a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          I think I hit some sort of character limit with "Spongepunk Christmas Seapony + Steampunk Squidpunk Sph"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • simmschi a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Well if you ever run into the 'Fresh Prince of Bel Sashimi', that's my world first combination :-D

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • undefined a year ago
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [deleted]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • qwertycheese a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                They could have added a one piece reference when you put "Devil" + "Fruit"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • terabytest a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Something looks broken. As soon as you join two elements into an unusual combination it stops generating a response.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • crweemtae a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    I made a teenmummy and it said first discovery has anyone ever done it

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • 6cv a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      one of my favorite first discovery is definitely "sharknado 3: Oh hell no!"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • ijsqepjpoqjf a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        How do you make Twilight and vampire? and eclipse?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • ijsqepjpoqjf a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Please tell me

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • lagniappe a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          It appears that I was first to discover Mummy Statue and Zombie Pancake. Is it okay to put this on my CV?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • paradoxtown a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            I was first to discover Fishy News. Interesting.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • sawer a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Bye yall hope yall liked my help

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • kingadinga a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              i discovered a rainbow yogurt warrior, rainbow warrior, yogurt warrior,yogazen, rainzen and yogarainzen

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • iamthepieman a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A fun way to play this is to pick a specific result first and then see how quickly you can get there.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • AvImd a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Amazing! The funniest stuff it came up with for me were Pengwoman, Sushi Bird, Jezus (Jesus + Zeus).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • az226 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    I got a sign that looked like infinity and had ??? as its label. Did I win the game?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • kc71 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Pirates of the Caribbean and Pirates Of The Caribbean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      are different apparently, maybe add some logic to merge these

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • microwavedair a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        I somehow made Ryan. I do not remember how other than it's ______ + wind. Who is Ryan?!? lol

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • yellowapple a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          You created me, somehow.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • ProllyInfamous a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          It has A DOUBLE RAINBOW (I have no recollection of its creation, but it is a real emoji/combo).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Cybergenik a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Tutankhamun + Pirate = Captain Jack Sparrow

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Tutankhamun + Captain Jack Sparrow = Pirate King

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Pirate King + Mountain = One Piece

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            One Piece + Pirate King = Luffy

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            *perfect

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • ogaj a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Shark + Hurricane = Sharknado

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Telemakhos a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              You apparently can't mix Unicorn and Double Rainbow: they won't stack on each other.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • emmathenemma a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                I need a mosquito in infinite craft how do I get it?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • undefined a year ago
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [deleted]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • yaman492 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    i made the first super infinity stoner buddha by accident

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • ijsqepjpoqjf a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      I'm hacking right now want to join me?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • blah-yeah a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Super interesting. Who the heck is Neal?! Why and how?! hahaha

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Fun stuff. I wonder what the codebase looks like

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • bordercases a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          I’m guessing is autogenerated by LLMS completions, it’s non deterministic.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • ZealousIdeal a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          After just 30 minutes I've crafted an Apple Crumble Mudslide. My job is done.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Josh879 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Anyone know how to make a missile?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • danielvaughn a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              My mind immediately goes to video games. This could inspire some very interesting mechanics.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Xeyz0r a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Like crafting in Minecraft? :)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • danielvaughn a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  I might be revealing my ignorance - is this how crafting works in minecraft? I've never played it before.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • jabroni_salad a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    You craft in minecraft by arranging basic items on a 3x3 grid. If you do it right then a more complex item is created.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    For example, a pickaxe is shaped roughly like that (two vertical sticks as a handle, and 3 other materials on the top row as a blade). You can make a better pickaxe by using nicer/rarer materials on the top row.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    It isn't really improvisational, there are correct patterns and the UI has a recipe book now so you don't really need to use the grid if you do not want to. Back when the game was in beta these weren't documented and the community would just brute force the discovery.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • nneonneo a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                I now have a "Pina Thorada", a combination of Pina Colada and Thor. This is fun.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • snowram a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  "poltician + devil = democrat" Huh, what was the training data for this model?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • undefined a year ago
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [deleted]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • epnk a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      They totally missed it by not allowing two rainbows to make a double rainbow.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • _fw a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        My best so far are ‘Sharktopus Flytrap’… and ‘Suicide Bomber’, ‘Osama’ and ‘Terrorist’.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Not kidding!

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • MintPaw a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Dandelion Patch + Gold = timeout?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • sigmonsays a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            i think i killed it with tractor + lava. Somehow that's a volcano?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            This is weird without hard rules.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • thoys a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              First discovery finally!!! I got Blush!!! Face + Tomato!!

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              This is another awesome Neal.fun experience!!!

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Aerbil313 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Time Machine + Pyramid = Tomb Raider

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Tornado + Fish = Sharknado

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                and Terminator, Dark Fate, Mad Hatter... but I forgot how.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • sandworm101 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  As is usual for all things on the internet, fiddle around and you will find Star Wars.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  I just got a "first discovery": Garlic + Vampire = Dinner | Darth Vader + Dinner = Dark Dinner (whatever that means)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  And I don't know how, but how did I get from fire/earth/water to "racist"? How is that even a thing?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • tomaskafka a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    I don't get it either, you start with infinite energy singularity, and 14.5 billion years later you get Trump. Universe is stupid :).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • sandworm101 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Once you get to the Trump and Trump-related emojis ... that's when it gets properly weird.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • jollyllama a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Swamp + Prostitute = Politician

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • q3we a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Kraken+ dragon=titan

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • mynamesjeffy a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        I need to make god dude like i swear.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • q3we a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Siren+ fire= Phoenix

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • undefined a year ago
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [deleted]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • duxup a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The sound is really satisfying.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • cushpush a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Obsidian + Cook ... [thinking] took a few seconds and out popped: sushi! Love it

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • spacebacon a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Holy water + Dandelion = weed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • voc a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    First one to discover Ghoti!

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • unifyh a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      I somehow got Espanol, then I proceed to translate every word into Spainsh

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • erm1231231 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Abdominal omelet +dark phoenix= phoenix omelet (first discovery by me)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Aachen a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          How do you know if you're the first to discover something?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • miohtama a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The strange case of origami Yoda

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Batman vs. Prince of space sushi vampires

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Darth Paper Strikes Back + Vampire

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • miohtama a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The last of us part 3: The last diabeetus rat king.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Good luck getting there.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • bikitan a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            It broke once I got up to "Baconosaurwolfthulhucornicornthulhu"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • hnuser123456 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              discoveries: surf bowie VR, fakecraft, vrcave, santa claus simulator, gifticorn, abominable gifticorn, cain + monkey bomb, chess sandwich, captain chess, captain coincidence

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Midnightgamer a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                They have added a new search bar.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • tetris11 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Once you get to Cthulicorn, anything added to that takes a minute or two

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • mynamesjeffy a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Ice cream+pirate = captain hook

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Molly_janes a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Is there a way to keep your progress? If so please let me know.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • hinkley a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bug report:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Rainbow + Rainbow doesn't do anything

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        No double rainbow? Literally unplayable.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • august_6_1945 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          My first discovery

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Darth Vader+Postman=Darth Mailer
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Jolter a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            I managed to get both “Teapot” and “Tea Pot” at the same time.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • spacebacon a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              This contains every story ever told and that will be told. Logos.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Night_Thastus a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Some combinations seem to cause crashes, like Grand Canyon + Sea.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • fkyoureadthedoc a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  I was thinking they are combinations that haven't been generated and cached before (since this is llm powered (llama)) and the current load from HN front page is too much

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  My life won't be complete until I can combine big bang and rainbow bridge

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • riddley a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Speed+light isn't Einstein?? Chariot+God isn't UFO??

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • riddley a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Ok I stopped playing when Muslim+money was terrorist. Hard pass.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • cursedeclipse a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    wait. bacon+destruction= "baconator" and i'm not the first to create a baconator. what. Edit: bacon+pirate is captain hook what is this

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • m0rissette a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Reminds me of the first android game I played on my G1 alchemy

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • zharknado a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        “Pirate” is my favorite result so far. (Alcohol + Steamboat)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • tuzemec a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          In-Laws + Divorce = Outlaws made me chuckle a little bit...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Pretty addictive

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Rexxar a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            I smiled at "Brexit + Politician => Chaos"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Scorpion6638 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              someone PLEASE tell me how to make optimus prime

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • jimmy778hahah a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Ash + plant = tobacco Tobacco + clay = pipe Smoke + tobacco = cigarette Cigarette + smoking = smoker Cancer + pipe = crab Statue + cavity = venus

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Birdboy658 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  How do I make chuck norris

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • undefined a year ago
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [deleted]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • wildyneal a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      lava plus stone equeals obsidian (i play minecraft) also is the reason there is a delay because of the LLM algorithm searching for new combos?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • slmjkdbtl a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The sound effect for successful combination is 80% the fun

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Grimm_Reaper a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          my main goal is just to make an ICBM from this game but i havent yet

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • slowhadoken a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            I’m haunted by how much I love and hate crafting systems.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • FredPret a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Curse + unicorn = narwhal, hahahaha. This game is so fun

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • emarthinsen a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Can't believe I was the first to find "boobs". The 12 year-old combined "tomb raider" and "jiggle". LOL. It's actually a useful word. I can change anything male into female.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Lots of other funny combinations: Burger King + Business = McDonalds Disney + Motive = Money Princess + Cleavage = Disney

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Plenty of political ones: President + Dictator = Trump White House + Flame = Trump Trump + Bribe = Impeachment Trump + Impeachment = ??? (literally three question marks) Obama + Home = Change

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                And a few questionable: Slave + Plant = Cannabis Jamaica + Garden = Marijuana

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                This is actually great fun. I wish I could sort the words alphabetically. I also wish there was a save feature. Oh, and that first discoveries were highlighted in the word list.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • larschdk a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  My first discovery was "Santauron"!? - by combining Santa Claus and Sauron.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Midnightgamer a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  how do you make all the ingredients to make cocaine don't ask why.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • zaytuls a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    i did snow and weed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • mynamesjeffy a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Goddess and godess = god

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Birdboy658 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      How to make chuck norris

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Avicebron a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        It invented narlwhalicorn from narwhal + unicorn, cool

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • destroyer_Dubs a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lightsaber + Jedi = darth Vader

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          “One of the hardest ones to get”

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • undefined a year ago
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [deleted]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • undefined a year ago
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [deleted]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Aromasin a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Water + Fish Stew seemed to break everything for me!

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • jamespullar a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Kite + Mountain froze it for me as well. Refreshing then wiped all progress.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • not_a_dane a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  there's an issue with the algorithm, the more you play, longer it takes to calculate...neat example for time complexity analysis.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • jtsiskin a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    No - it’s just the more you play, the more likely you are to run into novel, uncached combinations that require invoking the LLM

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • 0x38B a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    I like that ‘Lightning + Earth’ is ‘Tesla (car)’.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • FireWall_2828 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      This is so cool, thanks for the tip! :D

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Silicicolous a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        life and evolution is human zombie and cure is human idk why I got flagged last time

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • hellommcmcmc a year ago
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • jimmy778hahah a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Mirror + happy = narcissus Dream + oedipus wrecks = the simpsons?? Steam cyborg + glutton = fat man Curse + happy = sad

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • schoen a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              There are a couple of things that seem to combine with others in a very general way... "were-", "[the] Impaler" (!), "Rich[est]"...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              I was able to get some things like "Were-jesus-pope-hamster-crusader", "Trump-jesus-trump", "Pope Impaler", "Trump Impaler", "Vlad the Werehamster", "Richest were-genghis Khan", and also "Were-were-werewolf"!

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              I think the willingness of the language model to make up character names like this is a bit of a defect in this context, but maybe it's useful for brainstorming movie sequels. :-)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • electroly a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                I've found "Muddy", "Zombie", and "Frat Party" to work as universal affixes too. e.g. I'm up to "Muddy Werejesus + Muddy Zombie Jesus Frat Party" (the single phrase includes the plus sign). At this point the UI refuses to mix additional ingredients.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • draculero a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  I got Trump Tower + Orange = Trump It used the 'pile of poo' emoji for Trump!! I love it.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • yxhuvud a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Dragonpope was not easy to combine with anything.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • mynamesjeffy a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    I got osama bin laden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • gibblezbloop a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      How do I get metal

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Grimm_Reaper a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        also if any of you have found out how to make it tell me

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • undefined a year ago
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [deleted]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • kingadinga a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            I got vampirecake

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Brodami a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              how do you get stand or sit or walk?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • kuttimaster a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                looks like Pancha Bhuta concept in Indian spirituality

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Prithvi/Bhumi, Apas/Varuna/Jala, Agni, Vayu, Akasha/Dyaus

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • motoxpro a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  neal.fun is just amazing. Man how awesome.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • intended a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Evil + NewYork … was inadvertently funny.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • spacebacon a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Challenge: least moves to “Happy Ending”

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • deathanatos a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Doctor Who + Sheep => Doctor Hooves

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • jimmy778hahah a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          anyone know how to make gay if so could you please tell me its important

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • souvlakee a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Cannot craft Pottery and Tobacco. Error.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • ijsqepjpoqjf a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              How are you doing?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • undefined a year ago
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [deleted]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Sir10l a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  How do you get eve im trying to

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • jacfewazdxdg a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    How do I get Asia?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • yaman492344 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      it says first discovery

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Xeyz0r a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        alligator + statue = gatorade ... okay

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Jean-Philipe a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          My fav: donkey + pope = ass

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • DanielLapidus a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Dinosaur + Clock = Clockosaurus Rex.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Eduard a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Dinosaur + Batman and Robin = Batman and Robinosaur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • undefined a year ago
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [deleted]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • q3we a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                lake + phoenix=firebird

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • kingadinga a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  i discovered rainbow yogurt warrior

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • kingadinga a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    shut up

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • SeanLuke a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Unicorn + Steamboat = Steam Unicorn

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • oneepic a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      In the beginning, there were four elements. Some asshole came over and banged them all together like rocks to see what fit together. The first life on Earth was dragons, plants, and vampires, somehow.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • kkukshtel a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Stuff like this a harbinger of the types of game that will start coming out of LLMs IMO - things that haven't necessarily _not_ been done before, but things where an LLM can act as a core weakly-type "kernel" that can be run to generate new output from arbitrary input. The people pointing out the prior examples are sort of missing the point, as all those require explicitly declaring the bounds of the game, whereas the bounds here are more a limitation of LLM understanding instead of direct effort to declare valid interactions.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • dudinax a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          gollum + schizophrenia = smeagol

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • eggroe a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ngl this guy makes some greattttt websites! Always fun and informative! Thank you “Neal”

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • OwseiWT a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              coral + coral = reef + apple pie = apple reef

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              now I can't stop thinking about apple pie with seafood

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • dgsm98 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Lost City + Earth broke infinity.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • undefined a year ago
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [deleted]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Phoenix2747 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The great wall of chine and moonwalk is Micheal Jackson

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • notfish a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Car + Darth Vader = Carth Vader

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • undefined a year ago
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [deleted]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • bulatov a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Norway + Darkness = Black Metal

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • sommerloot a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          I have discovered Red Paint!

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • q3we a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            titan+kaiju=godzilla

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • q3we a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              japan+ river=samurai

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • thatxliner a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Isn’t that just little alchemy

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • 22325ol a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  albatross + river = amazon? im so confused but it worked for me

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • bendyswin a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    does anyone know how to make a human?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • mushroomgueen a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      how do you make rebirth

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • rkagerer a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Titanic + Iceberg = nothing??

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • mushroomgueen a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          how do you make an atm

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • ijsqepjpoqjf a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            jnckjndaljecijecjncippqjfcfipuejcl

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • vbbthersg a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Hike mamaju

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • KR_-_-_27 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                My favouroute discovery was Mole King, Mole Queen and Mole Kingdom

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • zaytuls a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  hey guys i got racism

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • hugepuppy a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Why do i love this so much

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Molly_janes a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Also I made 4 new items

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • undefined a year ago
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [deleted]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • spacebacon a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Wine + water = holy water

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • volldittor a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            how do you get mario

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • vollittor a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              how do you get mario

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • blitzystolas a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                hey anyone know what to combine to make weed/marijuana?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • cursedeclipse a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  there is both a "pangea" and a "pangaea"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • cursedeclipse a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    there is both a "pangea" and a "Pangaea"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Brodami a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      how do you get sit?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • nurettin a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        I stopped at leviathan.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • rambanuelos a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          I was pleased with Prometheus

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • cwkoss a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Once I got "poop" i went ham and made a bunch of discoveries

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Poop truck, space poop truck, poop train, poop martini, fartdiana jones, fartman, poopacat

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          And my favorite:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          poopacabra (from chupacabra)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Also got some interesting failure modes:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Got "Fartacus Jones + Fire Poop Train", "" (galaxy emoji) and "???" (galaxy emoji) all of which refuse to combine with anything else.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          EDIT: Got chicken titty, nuclear porn, and pooporn

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • sandbags a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            mud + rainbow = pig ? I’m not sure I am seeing the point.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • TheCreatore a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              I have gotten so many jesuses. Werewolf + Jesus = Werejesus, Zombie + Jesus = Zombie Jesus, and Minotaur + Jesus = Minotaur Jesus

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • obiefernandez a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Surprisingly addictive

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • jacfewazdxdg a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  skibidi dop dop dop yes yes

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • thih9 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    I don’t remember how I got to “pedophile”, but I think one of the names of Hollywood actors was involved. Later I did “pedophile” + “jail” and got “priest”. “Priest” and “pedophile” yields “Catholic”. This game goes into unexpected territories.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Also:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    priest + diarrhea = holy shit

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    holy shit + diarrhea = holy diarrhea

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    holy diarrhea + sweet and sour = chinese food

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • blitzystolas a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      anyone know how to make marijuana? (in game obv)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • kimjune01 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        stone -> stoner + plant

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • jimmy778hahah a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        anyone seen the new update its so cool and i dont have to use ctrl+f anymore it also saves progress

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • pcthrowaway a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          was anyone able to figure out a way to save the game?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • cursedeclipse a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            new best: godzillazillazillazillazillazillazilla

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • bendyswin a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              how do you make a monkey?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Irribackiwai a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1981, was the year that A̶̢̼̹̞̺͈̖͕̱̘̔̎͆͌͗̾̄ͬ̚͜͢͟ͅȨ̶͕̰̙̹̱̤̞̰̱̗̒̒͗́͌ͤͬ̌ͣ̄ͧ͛͒͝A̴̶͙̙͈̱͖̻̼̯̰ͧ̆͊̿͋̓͂͜͞͞͡E̛͚͓̳̫̩̹̮͛ͪ̃́ͩ͊̓ͦͫ̃ͪ̊ͤ̌ͭ͢͠͡͝͠_̤̀_̡̛͕͕̗̪̦ͤ̑ͥ̾̋̀̚Ā̶̵̢̪̝̖̭̻ͪ̅̈́͛̋̏͋ͯ͊͠E̴̠̱̽ͫ͑͟Ȧ̵͇̠̬͚̱̥̮̳͖̟͇͉̥̰͑ͨ͋ͫͥͥͧ͌ͭͬ́ͦͩͪͣ̓͆̀ͣͮͧ͋̈́̇͢͞͡͠͞EͧȀ̛̲̖͍̀̕E̴̛̘͙̯̦̖̮̺̣ͥ̍̐̀̽ͬ̄̇͢͠A̙̦͖̜̰̤̜̗͌̎ͦͥͯ͗͌̐̌̊͜͜EẢ̴̠͖̗͕̩̆̇̀̓ͫ̓͑ͣ̏̊̿Ę̵̸̸̣̭͎͙̞͈̹̮̘̫̳̹̞̎͒̀̃ͯ́ͭ́̐̓ͤ̔͐̓͆͋̒̍͛ͦ̀͘͡ͅA̵̸̛̘̗͓̤͖̫̥͓̲̻̮̤͈̗͕̩̭̥ͬ̿̔ͫ̄ͧͤ̌̔͑̋̿ͩͬͪ̒̕͘͟͟͜͡͠Ḙ̸̵̬̗̗̹̰̪̫̻̅͆́͑ͩͦͨ̔̈́ͤ́̿̑ͦ͊̈́͘̚͘͞Ą̸̷̪̱̤̮͔̪̱̘̬̟̩̘̥͙̠͓ͯ̿ͮ̔̉̅̀͐ͬ̈ͧ͆͂̉̔̒ͧ͛̕͘Ę̷̸̸͓̰̼̳̟̻͈̱̄ͥͧ̅̀̉̈́̾ͤ̚͟Ą̧̢̧͇̰͕͈͈̦̤͖̠̲̺͓̩̄̍ͥ̇͊̑ͧͦͮͫ̐ͧ̔̔̋̕̕͘͟͟͢͢͢͝͞͠E̋̆ͤ_̵͓̈̀̚A̛̛̘̣̱̣̓͌̈́͂̎̊͆ͯ͑͋̔ͩ͘͠͡E̛̙ͥ͂A͍͚̮̪̩͙̐͘ͅȨ̸͉͎̪̭̙̑́ͮͥ̊͆ͪ̄̑̌͊ͯ͢͜͝͝A̵̡̳͉̖̖̻̜̰͒͋ͮ͛ͪȨ̸̵̷̵̧̛̛̯͉̬̰̝̼̩͇͎̲̗̮͌̓̌͊̄̿̍͒̔ͦ̈̋͑̐̾̐ͨ͌̇́̕͟͜͠ͅA̶̛̪̥̪̖̤̭̩̩̟͔̥̙͉̞̜̼̰̖̜̼̩̼̥̯̔̃ͥͯ͛̂̈ͬ͑͗̏͛̐̂͢͟͠͡͞Ę̛̛̼̳̰̞̬͔̆ͣ̏̾ͪ͊ͥ̑̀͌͘͝͝ͅA̵̶̶̢̧̳̳͇̳̻͈̰͈̲̘̺ͬ̓̒̈́̾̄̈́̉ͧ̈́̄̄ͨ̂͒ͭ̎̎ͦͬͫͪͥ͘͘̕͠͞Ȩ̢̪͔͚̫͉̖̦̦͉̩ͧͦ́ͥ̌̈̌ͤͩ̆̎̿̓̏ͬ͊̉́͛̀̕̕̚͟͢͡A̷̶̙̞͕͕̤͚ͣͦ͆͊͘͡E̪͙͆́͢Ă̧̨̲̙̟͍̠͎͓̟͙̩̞͚̬̳͕̤͇̐̓ͭ͗̌ͧ̐ͥ͘͜E̸̡̼̮̮̿̐̊͞A̴ͤE̴̡̛͈̐̄̂̏͋_̶̸̻̖̠͕͓̩̳̾̓͆ͧ̍͗̐ͣ̋̀́ͨͨͪ̕͜͜A̡̙͇̻͇̗̯͔͉ͧ̑ͪ͗ͥ͞_͓̪͚̔͑ͫ̈́̍̈́ͥ͢͢Ȩ̺͍͇̣͇̙̪̹̂ͦ̎ͭ̔ͭͫ̂ͫ̓ͮ̍ͭ̃̕͞͠_̡̻̦͇͉͓̰̳̙͂̀̈̏ͪͩ̄̅͢Â̸̵̧̛̛̟͈̖̫͕̫͈̰͔͇̟͔̯̝̰̥͈̯̫̞̆̈́͋̄̉ͯ̏͌̂ͮ̓̍̃́̉̇͘̚E͇͂_̡̱_̖̯̟̣̽ͧ̂͑̓̽̎͢͜͝͝͝Ạ̶̢̜̥̞̫͔̍͋͊̏ͤͣ̔͟EA̴̢̪̣̝̰ͤ͗͆ͧͣ͌͘͜E̢̢̛̩̩̘̱̼͎ͣ̉ͧ͆̊͊ͧͬ̚͟͞_̨͍͛͂A̸̹͍͎̳̞̩̮͊̅ͦ͗ͩͬ̏̈́̔ͫ͆̿̂̆̉́̅͜͠ͅE̷̢̝̰̯̻̼̻̫͉̙̟͙̙̖̥͂ͮ̄̏̓̌̀̽̋̇ͧͪͦͨ̊̑̌̃̚͘͘͟͝A̶͙̤̩̍̅͟Ȩ̵̧̑ͦͯ͝A̴͙͒Ḛ̤͚͍̞̪͍̍ͫ̈́̀ͮ̑ͤ͋̈́͛ͨ͝Ḁ̢͕͇̖̩̯̻̈́͆̌ͩ̇ͨͫ͘Ḛ̲̓̊A̷̶̡̢̢̤͇̤͍͓͉̪̩̟͍̲̮̻͇͌ͥ̀͒̃͒̇̒̽̓͢͞E͞ͅA̢͕͈̲̞̼͔̮̔̈́̈̿̌̈͋̇͟E̷̡̡̱̦̹̼̮͎͍͍̫͕͕̮ͥ̅̔́́̌̑ͫ̓ͣ̏̇̈̔́̿̎͂͘͜ͅĄ̪̙̮̿̍̒̽͌̕͜E̸̛̥̦̭͉̟̦͍̗͙̪̩̩͑͋ͭ̓̃̋̂͊͌͌̍ͫ̀ͥ͐̂̄̿ͤ̕͟͜͢͟Á̢̪͚̪̺̾Ą̶̧͚̼̘͉͈̺̜̞̘̬̊̃̇ͥ̆ͤȆ̝̺̠͓̤̦̺͊̂̂ͤA̤͢_̹̬͇̓ͫͧ̓ͬ͗̐̏ͨ̚E̶̴͔͎͎̬̞̥̰ͣ͒̓̇ͬ̂͝_̦̹͚͖͓̭̞̲͇̃̈ͫͩ͑̆̀͛ͪ̾́̀́̿̓ͯͧ̚͜͞A̛̠͉̫͋̓ͥA̼̥̹̖͘͜͝EÁ̢̘͇̪͚̘̩̦̟̲͎̫ͪ̐ͪ͐̿̒͊͘͘̚͞͞A̸̸̛͉̪̱͔͇̹̺̩ͦͫ͐́ͬ̑̾ͨ͆ͫ̒ͬͫͦͮ͑ͣ̌̀͂̐ͥ̚͜͝͡ͅE̕Ḁ̷̜̪͍͙͙̻̬͍ͥ̄ͥ̈́ͧ̓̀̑̏͗͆̉͘̕͢A̵̷̰̰̘̟̖̞͙̲͓̖̼̳̥ͬ̓̆ͨͩ́̈́ͫ̔́̀ͨ͌ͧ̔̽͘͢Ȩ̤͖̱̖͕̣̼̈́͗ͭ̌̏̉ͦ͐̒̌ͤ͛͆ͦͨ̎̄ͬͧ̽ͣ̒̈͘͞_̗̥̗̼ͦ͆̚Ȇ̞͙̪̺͐̈́E̪̩͎͋ͭ͗ͦ̊͋̕͢͢E̷̡̧̧̛̲͚̥̩̞̠̹̠̬ͧ͛̌ͫ͗̌̓̓ͭ̃̈̉̃͘͘͜ͅͅE̮̳͎̱̤͙̰ͭͫͨͬ̀ͥ̚Ȩ̱̰͍̳̲̪̖̜̐̇̎̎ͨͬ͝E̟̱̪̱̺̗͈͉͑̿̽̿̈́͌ͦͬ̐͝E̸̗̜̫̘̙͙͓̺̞̩͋͛͌̀͐̓͋̈́̂̎̍ͩEA̸̮̗̰̳̱͔̍͗̉͌̓̐̄ͧ͒͌̚_̷̡̱̻̯͛̿̓ͧ̔̋͋ͭ͛ͬͪ̎̄ͫ̿̽̽̚͞͡͡ͅA̡̨͇̣̜̱͖̗̩̦̣͖̰̝̣̖̗̺̪̻ͬͨ͛ͧ̀̓͂̂͒́͗ͧ̈̆́̾͗̔͊̈́͘̕͠Ę͚̯̠̙̤̲̞̗̝̘̰͇̠̘̈̌ͪͬ̊̉ͯ͋̓ͦ̀̔́ͩ̋ͮ̌͋͊̋̃̈́̔ͭ̚̕͘͘̚À̜̻̯̪̮̼̬͍̩̥̻̩̮̠̦͕̺̹ͯ͌̓ͬ̈̐̎ͧ̀͋͊ͩ̎̒̾ͭ̉̌̔͞E̷̢̦̣̜̬̣̝͓̲̼̻͓͍͚̯ͥ͗̍͂̌̇̀ͬͫ̄̈́͐ͬ͑̒ͬ̊̌̆̊̓͋́͟͢͡Ą̦͜Ȩ̸̢̨̛͈͕̼̙̱̦̟̻̳͉̮̪̣̲̜͖̖ͥ͒̈́̊ͦ̾̀ͫ͋ͮ̓̑͊̑̑͋́͘͟͝ͅA̶̼͖A̴̼̥̮͉̱͋ͩ̔́͟_̸͉̳̣͙̹͖͗͂͐͐ͭ̅̍̕͞͠Á̷̛͇̻̳̭̺̅͌ͣ̀ͫ͜E͓̭͇̬̜̗͊̓̉̈́̐̅ͦ̔̐ͪ͝͝Ą̶̺̜͙̼̙͉̭̤̩̠͇̥͕̩̳̺̤̹̙ͯ̄̊͛͊̆̄̀̀͛͗ͬ̑̂̌̐ͫ̀̂́̑̓̚̚͠͠E͚̳͓̟ͥͮͫͯĄ̷̡͎͚̭̳͎͉͕̟̲̱̙̗̞͖̗̱͍͈͋ͬ̑̐̌ͣ̎̐̈́̂͒ͭ͞͡͝͡A̺̙̹̲͎̟͌ͨ̊̄̆̓ͦ͗Ą̷̵̶̨̤̞̦̭̰͎̹͖̻̪̙̬̥̯̰̭͌̽̎͗̿ͨͦͮ̾̒̽̋ͫ́̂ͨ̊͒̚̕͜͡͞Ḙ͇̩̻͌̋̃͌͘_̷̵̴̢̨͔̟̻̖̟̻͙͔͚ͪ͊͛ͬ͋̃̋̿͝EA̵͓̱̰͉̮̙̥͉͚̦̲̹͈͆̆̐̎ͪ̂̂ͩ̇̍̑̄̈̐̌͒͆̆̅̌̚͝͞͞Ę̸̝̻͙ͧ́_͚̣̥̦̣͙̗͌͊ͮ̃̃̾̀̃̀͛͂́̅͑̏̂ͦ͐͞͠͞͞Ḣ̷̴̛͙̙̞̪̫͍̱̓ͯ̇ͧ̂̀ͤ̆͂̾̓̽̾ͧ̉̚̚͠Ģ̵̸̶̴̦̖̰͕̜̱̰̙̪͖̮̦̮͇̊͑̓ͭ̓̂͐ͣ͐̂ͦ̊͊̓̾̊̔ͮ͘͜͟͢͡ͅA̩̓͆̈Ȇ̵̢̨̧̼̭̘̝͓̲͙͖̦̲̮̟͍̥̤̦̽̃̾̂͊̓͆͑̊̈͊̈́ͥ̆̍͑̓ͮ̈́ͪ̕͢͜͞͠V̸̧̨̢̛̟͔͓͕̟̹̥̣͇̘̝͕̩̰̗ͬ̽ͤ͛͛̏ͬͪ̍́͊ͯ̔ͧ̂͜͠ͅS̖ͫ̃_̵̒ͮ̊̓̈́_̮͓͇̑̂͗́́͜D̟̭̰͇͈͇̫̦͔͇ͫ̀̋͌ͨ͂͆͛̉̂͑̈́͟͠X̹̦̟̰̫̝͔̤̌͂̄̿̔͒̈͊ͅͅ_̶̧̨͙̭̗̯͖͎͕͇͓͖̝̂ͦͨ̀ͥ̇͒S̡̛̹͙̭̳̺͖͎͍̻͒͋̅͌ͨ̊ͪ̍͑ͬ͆͆̀͌́ͧ̓͘͟͞͡͠͞ͅF̶̧̖̞̱̝͇̻͎͈̖̙̙̰͉̱̯̣̝ͭ̍̔͌͗̓̅̾ͣ̓̔̈̕͘͟ͅͅD̵̨͔̹̪͈̘́ͥͨͪͣ̌͋̃͑̇ͫ͜͠V̷̴̢̨̖̘͉̮̙͎̩̘̖̮̯̣͖́̃̾͛̐̇̐́͋͊̅͌̊͆̅͠͝͠N̷͉̟̣͓̩̤̭̖̺̘̹ͥ́͂͂ͥͤ̎̓ͮ͂̐́ͣͪ̔͒ͬ̕̚_̸͖̙̎̔͊Ṫ̢̙̀ͬ̀ͬ͌_̡̟͚̰̰̗͕͎͈̘̄͋̅ͫ̎ͪ͆ͥ̄͟͠Y̶̱̟̭̩͔͇̌͊̃͐̈ͣ̏ͭͨ́̕͡H̰G̶̶̢̛̗̗͚̫̰̤͚͍̖̩̰̜͓͚̬̣̱̬̭͇̊̎̓ͦ̽͊̀ͦ̀ͫ̎̒̉ͣ̀͗ͨ̕̕͜͝͞D̬Ẹ̡̲̟͖͔̫͙̃͗̓̓ͨ̚_̛͙̲̠̒͘͢Ŗ̷̳̦̘͓̱̖̃̓̍̃̔́̄ͪ̄̽̓ͭͩ̉͢͡ͅS̶̛̛̭̥͇̘̻̱̹͌͆ͪ͛͐̒̅͐̀͌̚͟͢͢ͅ_̵̠̇ͪ̊̓̕͠V̨͍̌̅̉͘H̵̩͚̖̜̼ͪͭ͑̄ͯ̍ͪ̾̒ͬ́̕ͅ_̷̧͍̬̻̇ͩ͐͂ͧ̆̈̽̚̚͞C̤͔ͦ͗J͕͇ͭB͔͚ͤ̆̊͋ͅ_̱_̴̵̨̧̛̛̗͍̻̦͍̮͖̰̘̭̰̟ͥͥ̏ͤ̇ͥ͋̃́͐͢͞͝͠K̢̪͋̾̾̇N̷̨̢͎͎̠̠͙̘̯̖͆͐́̿͛̒̆͒ͥͮ̌͂̔Ļ̧̢̘̥͇̳͕̻̖͇ͭͤͣͫͨ͒̉̀͒ͫ̓ͯ͠͝M̶̬̭̲̬̞͕ͫ̍̽͑̀̂̀̔͋͜͝Ǒ̸̢͍̰̦̖̳̬̬͔̪͂ͣͪ̿̆ͩ̈̅̿̂̅͐ͥͦ̕ͅI̧̧͔̘͍̤̞̦̠̯̼̖̜̪̬͍̞ͦ̽́ͫ̏͌̉̔͌̔̇͂̅̑̃͗̋̀̋̑͐̀́̕͟͜͢͡Ủ̸̸̡̥̮̜͕̝͕̲͙̮ͭ͑̉ͩ̏͗̏̽̌̊͘͠͡!̜̱̙͉̭͈́͛ͤ̋̓̈͟

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • plesner a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Some interesting finds.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Future + Time = Present (with a gift icon) Present + Present = Gift

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  (So it's using the words not the concepts)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Paradox + Snowman = Yeti

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  (Makes sense)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Arnold Schwarzenegger + Narwhal = Shwarzenwhaler

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  (Shwarzenwhaler has 0 hits on Google, it made it up)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Shwarzenwhaler + Time Machine = Hitler (with a crown icon)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  (I kid you not!)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Unicorn + Hitler = Unihitler

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  (I continue to kid you not!)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • plesner a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Future + Germany = Hitler

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Plant + Germany = Beer

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Flower + Germany = Hitler

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    (Harsh!)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • subarctic a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    water + earth = plant

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    plant + air = dandelion

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    dandelion + plant = weed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    wind + fire = smoke

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    smoke + weed = high

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    high + president = bush

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • teaearlgraycold a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Pornstar + Money = Politician

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Gold

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • jasonjmcghee a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        I propose Spock %

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Animats a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Restaurant + Empire -> McDonalds

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Resort + Empire -> Disney

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Obesity + Empire -> America

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          America + China -> War

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          China + Japan -> War

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          America + Japan -> Anime

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          America + Junk -> Trump

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • 643378268 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            how do you make glass?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • 45362 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              how do you make glass?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • 1959429 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                how do you make glass?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • boo-ga-ga a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  See anything from neal.fun -> upvote, then check out:).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • pfooti a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    i have discovered the mecha swamp witch

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • racingabout a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      how do I get drugs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • gyg8wrhfu9- a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        how to make pride

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Ringz a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Swamp + Surfer = Crocodile

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Nice!

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Reinan a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            how to make human?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • august_6_1945 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              how do you make love and humans?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • 12435 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                how to get wine

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • joe4565 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  he[[

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • mayilian a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Cool!

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • true_blue a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      >Love + Fire = Passion

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      I'm impressed that it's able to understand figurative combinations like this. On the other hand, some of them are confusing:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      >Steampunk Pirate Queen + Romance = Steam And Sorcery

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      What? Is this a reference?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • dylan604 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        fish + fire = sushi?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        is my concept of sushi wrong

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • orenlindsey a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          I think I broke it. America + Trump = ??? (with a galaxy emoji)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Edit: Also Trumpocalypse + Freedom = ??? (btw I got both of these in the game, not through the API)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • cursedeclipse a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            first discovery:icefishman

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • munchler a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              I wrote a program to explore. Here's a "first discovery":

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  'Jupiter' + 'Muddy Date' = 'Muddy Planet'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     'Foghorn' + 'Planet' = 'Jupiter'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        'Fog' + 'Ark' = 'Foghorn'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           'Smoke' + 'Water' = 'Fog'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              'Fire' + 'Wind' = 'Smoke'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           'Noah' + 'Dirt' = 'Ark'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              'Flood' + 'Fish' = 'Noah'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 'Tsunami' + 'Rain' = 'Flood'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    'Wave' + 'Water' = 'Tsunami'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       'Water' + 'Wind' = 'Wave'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    'Water' + 'Storm' = 'Rain'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       'Wave' + 'Wind' = 'Storm'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 'Explosion' + 'Water' = 'Fish'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    'Destruction' + 'Fire' = 'Explosion'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       'Tsunami' + 'Tornado' = 'Destruction'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          'Wind' + 'Hurricane' = 'Tornado'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             'Wind' + 'Tsunami' = 'Hurricane'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              'Sweat' + 'Dust' = 'Dirt'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 'Sauna' + 'Train' = 'Sweat'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    'Palm Tree' + 'Steam' = 'Sauna'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       'Plant' + 'Hurricane' = 'Palm Tree'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          'Earth' + 'Water' = 'Plant'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       'Fire' + 'Water' = 'Steam'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    'Steam' + 'Disaster' = 'Train'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       'Tsunami' + 'Hurricane' = 'Disaster'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 'Earth' + 'Wind' = 'Dust'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        'Earth' + 'Dust' = 'Planet'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     'Muddy Sushi' + 'Date' = 'Muddy Date'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        'Sushi' + 'Mud' = 'Muddy Sushi'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           'Eruption' + 'Fish' = 'Sushi'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              'Volcano' + 'Tornado' = 'Eruption'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 'Smoke' + 'Tornado' = 'Volcano'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           'Earth' + 'Steam' = 'Mud'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        'Oasis' + 'Coconut Milk' = 'Date'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           'Coconut Water' + 'Dune' = 'Oasis'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              'Flood' + 'Coconut Milk' = 'Coconut Water'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 'Tsunami' + 'Coconut' = 'Coconut Milk'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    'Palm Tree' + 'Earth' = 'Coconut'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              'Sand' + 'Wind' = 'Dune'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 'Earth' + 'Dust Storm' = 'Sand'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    'Wind' + 'Mudslide' = 'Dust Storm'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       'Hurricane' + 'Mud' = 'Mudslide'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • undefined a year ago
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [deleted]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Josh879 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  d

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • slater a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    i think we hugged it, folks

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • uzer_dave a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      how to make lightning

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • august_6_1945 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        how do you make people?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • antonio222 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          i got rainbow fischer

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • krunck a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            black hole + money = happiness

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            So deep.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • antonio222 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              i got rainbow fisher

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • bird4 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                argentina

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • bendyswin a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  flour

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • rkagerer a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Much sadness Hacker + News yields nothing.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    My favorites so far (unfortunately HN stripped out corresponding emojis):

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Trump + Internet = Fake News
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bitcoin + Jesus = Satoshi
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Bitcoin + Death = Taxes
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Windows + Error = Blue Screen
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Flying + Space Cowboy = Han Solo
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Captain Picard + Elon Musk = Captain Musk
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Borg + Cybersex = Borgasm
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      James Bond + Tantric Sex = 007 Seconds
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    As you can imagine it kind of went downhill from there...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • sophka a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      mistletoe

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • MlLES a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        sharknado + sharktopus = sharktopusnado

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • fb03 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          this is neal fun

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • alhimik45 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Aquaman + Amber = Amber Heard, lol

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • dfee a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              `???` seems to be almost apex. I discovered many new things. Thanks for the game.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • microwavedair a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Ah yes, the perfectly normal way to make a bigfoot. Cheese + Yeti. why cheese?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Razengan a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Needs a dark mode.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • undefined a year ago
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [deleted]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • wildyneal a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      hi

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • aspectmin a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Rofl - Rainforest + Dragon == Amazon (like an Amazon box)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • merlindru a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          I don't even know how I managed to do this, but I got this:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Monkey > Ape > Gorilla > King Kong > Queen Kong

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Yeah, Queen Kong. Queen. Kong.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ---

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          EDIT:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          - Gorilla Grodd

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          - Super Kong

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          - Tarzan

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          - Jane

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          - Jane Kong

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          - Woman Gorilla

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          - Super Gorilla

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • lacoolj a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Knowledge + Mud = Politics lol these are fun

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • mef51 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              America + Tank = Freedom lmao

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • green56 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Too many Trumps :)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • undefined a year ago
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [deleted]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • titaniumtown a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    fire + president = trump (with a poop emoji)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • margalabargala a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      "America" + "Emperor" yielded the same thing :(

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • rkagerer a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        I think Death + Obama also yields it. You can get Dino-Trump and T-Rump.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Metacelsus a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Burn + Santa = Coal. lol

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        also, I got to "Trumpcare" and the emoji is rather hilarious.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • robobro a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Funny that Putin gets a Russian flag emoji, while Trump gets a poop emoji

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • nudin a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            LMAO: Future + President = Trump, with Shit-emoji

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • octuplehomicide a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Rich + Hooker = Marriage

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Richest + Prostitute = Bill Gates

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Bill Gates + Marriage = Divorce

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Queen + Divorce = Behead

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Trillionaire + Behead = Decapitalism (lol!)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Narcissist + Money = Politician

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Peace + Trump = War

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • ben-hall123 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Slypy06 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [dead]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Slypy06 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [dead]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • lebean a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [dead]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • daguava a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [dead]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • kolkop a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [dead]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • DmnSlyr431 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          How do you make brick?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • DmnSlyr431 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            I can never get it.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • MilesGamer27 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              How do you get an axe?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • 1234654 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   You craft it with handle and iron. I just discovered   Super Fire Breathing SuperHero brand new discovery
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • 1234654 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Managed to get male productive organ . Lol

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • LucasVallejo a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • undefined a year ago
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [deleted]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • undefined a year ago
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [deleted]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • secreta a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Birdboy658 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [dead]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • samiam_iam a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [dead]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • grizzlymilk a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • grizzlymilk a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • asjsnsjknjd a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • lrios10 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • 55616852 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Reeker a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • THERykenado13 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • tjgeavf a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • footlover a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • cacafingers2323 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • footlover a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Jay_29 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • addhqwv7foydsyg a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • yeaeedy83285y45 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • FloatingShadow a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • bobmn55301894 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • th_long_stuff a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • 5edodgersfan46w a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • 5edodgersfan46w a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Grimm_Reaper a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • tjgeavf a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • peppashrekky a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • sdemeritt a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • bestmanLL a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Josh879 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • thezclements a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Silicicolous a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • 6cv a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • ethansknowland a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • yeaeedy83285y45 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • gabsterart a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • gabsterart6 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • eliescooper a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Grimm_Reaper a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • gabsterart6 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • esknowland a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • ethansulknowlan a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • ethanisnotcool a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • passwordgame a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • yaman492344 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • yaman492344 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Josh879 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • passwordgame a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • passwordgame a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • passwordgame a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • passwordgame a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • passwordgame a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Jay_29 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • passwordgame a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • user23556 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • starphobia a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • passwordgame a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • nealfunlover2 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • nealfunlover-7 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • nealfunlover-78 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • nealfunlover-35 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • user_ur_mom_lol a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Marcel14733 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • DmnSlyr431 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • HeOwnsTwitter a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • emmtrout a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • ballsacklover a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • yaman492344 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • King5 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • King5 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • passwordgame a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Marcel14733 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • TidalSurge a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • jellybananas a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • time_paradox a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • liboikk a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • ballsacklover a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • JellyCheeseNugs a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • JellyCheese a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • time_paradox a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • troutcod000 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • zaytuls a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • imnotahackermom a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • coy111 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • trina12 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • yaman492344 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • RM3578 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • bestmanLL a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • undefined a year ago
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [deleted]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • FloatingShadow a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • RM3578 a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Irribackiwai a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Irribackiwai a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [flagged]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • u_need_to_know a year ago

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [flagged]