Just found this video and I love it! Thank you so much! I tried out some random combos on the html version, I'm sharing my favorite one of the evening below. It cycles through several distinct stages, each with its own ecosystem of distinct creatures. I have now been looking at it for longer than I'm willing to admit. GG = 0.6098413900640252 GR = -0.8444835071089587 GY = -0.5775910736657488 RR = 0.175980727481992 RG = -0.8422224791415389 RY = 0.7055900675508573 YY = 0.34481592444663645 YG = -0.861504205435323 YR = -0.5811917392342245
@DevinGagnon-u1kКүн бұрын
it wont work
@darksidersm82 күн бұрын
god the keyboard noises are jarring.
@euqinuykcaj5 күн бұрын
Who would have known that a random seems-to-be beautiful coding video on KZbin would change the topic to the Big Bang and makes me thinking if one atom was at a different location when the Big Bang happened, our existence would have been removed and gives me an existential crisis. Thanks!
@coco888566 күн бұрын
I recommend to delete the loud noisy keyboard typing sound, or lower it a bit
@Leonmaffrand7 күн бұрын
Somehow this gave me inspiration to keep writing my novels.
@stockintellect313510 күн бұрын
What's the progress in 2025?
@Mvcrip_projectx15413 күн бұрын
I have a theory what if life has a rule but we play the game at free will and to put the rule doesnt mean we create the universe but observe the universe🤔
@honhm519714 күн бұрын
By one click on delet everything become nothing...so nothing is other face for everything.
@dragofight980215 күн бұрын
Is there a seed where all rules are 0?
@Chazulu217 күн бұрын
No
@DheerajAeshdj17 күн бұрын
The most underrated work and channel. Thanks for existing
@pairtialfocus929318 күн бұрын
HOLY FCK UR CRAZY DUDE
@Kagoncraft20 күн бұрын
You opend my eyes on so many levels, crazy. I love your way of thinking it feels like state of mind I am striving for. It matches mine, but I feel like the seed and your the fruit. I would love more videos of yours, you put me in a state of thinking in which ideas just flow, even when they are just distantly linked to what you are talking about. Maybe one day I would like to show you some things I am working on, but its still developing and more a concept way of thinking.
@hamzacasdasdasd20 күн бұрын
1:03 bro's harvesting nuclear energy
@IagoLikeRice23 күн бұрын
bro just created the game of life 2
@michaldlugosz196525 күн бұрын
14:47 It was Nicolaus Copernicus who first stated that, Galileo was only defending his claim >:(
@riverenddelpiero418028 күн бұрын
bro started from what are neural networks to get to gpt wow
@Ryn-h5vАй бұрын
guys I just realized how much we are lucky that we still living here
@Ryn-h5vАй бұрын
wow that was awesome bro you made me understand how does everything works
@forevertoremainАй бұрын
Anyone remember the life program in the late 80s which tried to do the same stuff in a more basic level?
@Ethangonzalezahh1Ай бұрын
We simulating the solar system with this one
@Trance_Ай бұрын
9:11 suddenly, this is a Veritasium video. But seriously, great video!
@ckrumbachАй бұрын
With the right amount of different particles and the right tuning of the parameters, you can make a living ecosystem with decision making individuals. This is a work of art.
@sematoghemАй бұрын
it's improved so mush from 'game of life'.... 🙂
@LuckyFortunes-b3qАй бұрын
I have an interesting idea. You can draw a transparent path of where the particles move so then you start visualizing their orbitals. Also try the natural 1/r^2 attenuation that most forces have. The unstable formations might be similar to radioactive atoms that fall apart.
@LightVibrationPresenseKindness2 ай бұрын
I've started a PhD in cellular automata
@soyunoforinfo32472 ай бұрын
great vid
@goofy.ahh.6442 ай бұрын
53:37
@Krektonix2 ай бұрын
this isn't life it could just be called magnets 😭😭😭
@howtocenter18433 ай бұрын
Love you're proccess and view❤
@djalexander9683 ай бұрын
This is very fascinating how it emulates cosmic activity so well 😅
@hazardousharmonies3 ай бұрын
Excellent Video Sir! Respect
@Elmownz3 ай бұрын
I fixed your life code from notepad with ChatGPT. Now instead of a fast fly, it's a slow fly that is more easily viewable. <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Fixed Particle Life</title> <style> body { background-color: black; margin: 0; overflow: hidden; } canvas { display: block; margin: auto; border-radius: 50%; } </style> </head> <body> <canvas id="life"></canvas> <script> // Elmowns const canvas = document.getElementById("life"); const m = canvas.getContext('2d'); // Resize canvas to fit the window const resizeCanvas = () => { const size = Math.min(window.innerWidth, window.innerHeight); canvas.width = size; canvas.height = size; }; window.addEventListener('resize', resizeCanvas); resizeCanvas(); // Helper function to draw particles const draw = (x, y, c, s) => { m.fillStyle = c; m.beginPath(); m.arc(x, y, s, 0, Math.PI * 2); m.fill(); }; // Particle class for easier particle management class Particle { constructor(x, y, color) { this.x = x; this.y = y; this.vx = 0; this.vy = 0; this.color = color; } } const random = (max) => Math.random() * max; const atoms = []; // Create particles const create = (number, color) => { const group = []; const spawnX = (canvas.width / 2) + (Math.random() * 5 - 2.5); const spawnY = (canvas.height / 2) + (Math.random() * 5 - 2.5); for (let i = 0; i < number; i++) { const atom = new Particle(spawnX, spawnY, color); group.push(atom); atoms.push(atom); } return group; }; // Apply attraction/repulsion rules const rule = (atoms1, atoms2, g) => { for (let i = 0; i < atoms1.length; i++) { let fx = 0; let fy = 0; const a = atoms1[i]; for (let j = 0; j < atoms2.length; j++) { const b = atoms2[j]; const dx = a.x - b.x; const dy = a.y - b.y; const d = Math.sqrt(dx * dx + dy * dy); if (d > 0 && d < 80) { const F = g / d; fx += F * dx; fy += F * dy; } } a.vx = (a.vx + fx) * 0.5; a.vy = (a.vy + fy) * 0.5; a.x += a.vx; a.y += a.vy; // Keep particles within bounds of the circular canvas const centerX = canvas.width / 2; const centerY = canvas.height / 2; const radius = canvas.width / 2; const distToCenter = Math.sqrt((a.x - centerX) ** 2 + (a.y - centerY) ** 2); if (distToCenter > radius - 5) { const angle = Math.atan2(a.y - centerY, a.x - centerX); a.vx = -Math.cos(angle) * Math.abs(a.vx); a.vy = -Math.sin(angle) * Math.abs(a.vy); a.x = centerX + (radius - 5) * Math.cos(angle); a.y = centerY + (radius - 5) * Math.sin(angle); } } }; // Create particles of different colors const yellow = create(7, "yellow"); const red = create(12, "red"); const green = create(40, "green"); // Update loop const update = () => { rule(green, green, -0.32); rule(green, red, -0.17); rule(green, yellow, 0.34); rule(red, red, -0.10); rule(red, green, -0.34); rule(yellow, yellow, 0.15); rule(yellow, green, -0.20); // Clear canvas and redraw all particles m.clearRect(0, 0, canvas.width, canvas.height); for (let i = 0; i < atoms.length; i++) { draw(atoms[i].x, atoms[i].y, atoms[i].color, 3); } requestAnimationFrame(update); }; update(); </script> </body> </html>
@DrMohammedKhoshnaw3 ай бұрын
Another WTF video , Thanks mate.
@Tokyo.mp43 ай бұрын
This is amazing, love it so much 😍
@jpdevs4 ай бұрын
I will definitely try it out
@onedeepdive4 ай бұрын
Thank you. Brilliant.
@MrBigjuggs4 ай бұрын
hey next time can you make the music even louder?
@NavJordaan4 ай бұрын
ridiculous, been playing around with this and it all feels so alive!
@Zenpsyqi5 ай бұрын
Fascinating video! Please keep on making more of these types of educational video, also, what's your thought on the Quantum Neural Networks (QNNs) and their ability to predict the future using Superposition? Also thoughts on Artificial Super Intelligence in the near future which will hold enough computational power to predict and also simulate reality! Stay blessed 🙏🏼
@muzzletov5 ай бұрын
a neural network can in theory render the mandelbrot set
@brainxyz5 ай бұрын
Yes, in theory, a neural net can emulate any finite function (including the Mandelbrot set). However, you can't use a neural network to predict a zooming Mandelbrot set with 100% accuracy because of the emergent patterns. No neural network of any size can generalize to any of the irreducible rules. See the demo at the end of the video to see what I mean.
@loveisthekey5 ай бұрын
Hi. everything only spiral. Maybe
@possantti5 ай бұрын
Smart guy. Now tell us how the hell brain activity shows up like a holography we call "consciousness"
@arkgamer7425 ай бұрын
13:37 out of all those Rules, Rule 34 is probably the craziest. I cant explain it, cuz its too long so you need to search it up
@the_hanged_clown5 ай бұрын
wouldn't the multi-verse itself just be the new universe? it could be said that there is only one multi-verse.
@HoD999x5 ай бұрын
some ideas: chaotic systems cannot be predicted, but that's fine - contrary to an organized, predictable system, the chaotic parts are not collaborating, so the system cannot "achieve" anything. it's just producing noise, so there is no need to predict the details.
@0ptimal5 ай бұрын
This is a very deep rabbit hole.
@Whatdoumean917265 ай бұрын
2:11 Red and green shows fight or flight behavior of adrenaline. Shows how adrenaline can evolve naturally.
@thickthickitythickface5 ай бұрын
That was one hell of an interesting video. I subscribed and am looking forward to watching more of your work. Thanks for the time and effort you put into the making.