Top
Best
New

Posted by memalign 14 hours ago

The Xkcd thing, now interactive(editor.p5js.org)
1103 points | 146 commentspage 3
briansm 12 hours ago|
Just to mention the original was cited in the most recent Veritasium video:

"The Internet Was Weeks Away From Disaster and No One Knew"

https://www.youtube.com/watch?v=aoag03mSuXQ

(at about the 9:50 mark)

cnees 6 hours ago||
Challenge: Rearrange the blocks into a stable configuration without losing any offscreen
louisbourgault 12 hours ago||
Really cool! To be honest, when I clicked on this I had a hope that it would be possible to add things to the stack like the ongoing memes of just putting different things in there (maybe live with other people as a collaborative editor).
1e1a 13 hours ago||
It looks like the stroke/border is not taken into account in the physics simulation.
LoganDark 1 hour ago|
This can be fixed by:

       for (let re of rects) {
         push();
         translate(re.body.position.x, re.body.position.y);
         rotate(re.body.angle);
    -    rect(0, 0, re.w, re.h, 2);
    +    rect(0, 0, re.w - 1, re.h - 1, 2);
         pop();
       }
snalty 7 hours ago||
This reminds me of one of my favourite flash games, Fantastic Contraption, for some reason.
poolnoodle 4 hours ago||
The physics remind me of Little Inferno
c_hastings 8 hours ago||
That was a lot of fun actually. I used one block to wreck all the others. Thanks for sharing.
barddoo 10 hours ago||
Increase friction
bbx 11 hours ago|
I was expecting it to open the FFmpeg website at the end.
More comments...