Live data from Hacker News

I’m Not a Robot

neal.fun

141–150 of 278 posts

Re: I’m Not a Robot

#141

Earlier quoted context omitted.

It's very easy if you've played rhythm games before, like Stepmania or osu!mania. I noticed that the music was very desynced, and playing with arrows is really hard on a laptop, so I remapped arrows to DF JK (how I played in osu!mania), and easily passed it (97% acc) without sound on the first try.

It was pretty hard to do on mobile

I'm on mobile, and I think this is where I'm gonna stop.

Re: I’m Not a Robot

#143
level 47 cheat ``` // Keep track of already hit notes const hitNotesSet = new WeakSet();

// Define hit zone (adjust based on your game layout) const hitZoneY = window.innerHeight - 150; // ~150px from bottom const tolerance = 20; // allowed error in pixels

function hitNotes() { document.querySelectorAll('.note').forEach(note => { if (hitNotesSet.has(note)) return; // already triggered

    const rect = note.getBoundingClientRect();
    const noteY = rect.top;

    // Check if note is in hit zone
    if (Math.abs(noteY - hitZoneY) 
}

setInterval(hitNotes, 20); // check 50x per second ```

Re: I’m Not a Robot

#144

Got to level 39 then it asked me for a webcam photo expressing happiness. No. i hate the internet i am quitting

It seems you can skip that one if you don't have a webcam enabled (I just clicked verify).

Re: I’m Not a Robot

#146
I laughed so hard when I opened the game!

I made it to level 20 on mobile, then switched to PC, urrently at level 30, but I don't have any patience/energy left to assemble that stop sign! :(

Re: I’m Not a Robot

#147
post #41

Earlier quoted context omitted.

Since when are grapes or bananas vegetables?

https://en.wikipedia.org/wiki/Vegetable > Vegetables are edible parts of plants that are consumed by humans or other animals as food. This original meaning is still commonly used, and is applied to plants collectively to refer to all edible plant matter, including flowers, fruits, stems, leaves, roots, and seeds. An alternative definition is applied somewhat arbitrarily, often by culinary and cultural tradition; it m…

So the meat of a banana would be a vegetable but not its skin? Never heard this definition.

Re: I’m Not a Robot

#149

The amount of work that Neal clearly puts into these is incredible. Does he earn money from them?

Seem to be stuck on level 19 (In the Dark), so of course I went to the webdev console for hints where I saw that it was blocked loading Google Ads by my adblocker.

I apologize to the author for blocking ads. It's a legitimately creative and very well executed site.

Post reply on HN