Live data from Hacker News

Infinite Craft

neal.fun

651–660 of 831 posts

Re: Infinite Craft

#651

Earlier quoted context omitted.

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

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

Campfire + Sushi = Fish

Re: Infinite Craft

#654
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

Re: Infinite Craft

#658
post #93

Earlier quoted context omitted.

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

Forest + fire = smoke Mud + water = swamp Swamp + plant = Venus Flytrap Okay, okay. Venus Flytrap + Smoke = smoke detector

[flagged]
Post reply on HN