@@anime_erotika585Flashback to when my scratch 3d renderer made objects bigger with distance and also multiplied the velocity of everything by 2 instead of dividing it by 2 each frame I learned that day you could crash chromebooks
I like how it's so intense that the monitor can't even render it properly, so it started breaking and using misc colors instead of black and white since that's what each pixel is composed of
oh cool! i was actually trying to make SmoothLife but i was messing around with the cell values from 0 and 1 and i just tried to put each cell value as its distance to some point and it gave me that
@@cantthinkahandle I knew Cellular Automata was involved, I also get similar patterns when I messed something up. Cool stuff, hope the project works out.
from what i see is something with XOR fractal, using a xor blending style with gradients causes paterns like that to emerge (i used this technique in my profile picture and banner lol)
The pattern is very reminiscent of the pattern you get when you want to visualise the Hamming distance between bytes in the form of a matrix. The smaller the Hamming distance between two bytes (byte 1 is on the x axis and byte 2 on the y axis, each from 0×00 to 0×FF), the darker a cell should be. This will yield a very similar pattern. I also only know about this because a paper of mine will be published soon, which contains notes about similar behaviour in the context of hardware random number generators
This immediately makes me think of Cayley tables colored by some property. Cayley tables are basically special multiplication tables, I make a lot of them cause they make pretty patterns similar to this
That looks cool... But what IS it doing? And what is it SUPPOSED to be doing? :) It looks like some kind of sorting algorithm or some kind of Quad-tree algorithm or something?
It is very simple formula: color(x, y) = x xor y It gives you similar image. You can then evaluate the formula for adding time to x or y or both and get similar animation.
this is VERY common 2d-xor "fractal" on shadertoy. at its core it is a it is a 2d-xor,, where you do (y xor x) (after some modulo, any maybe other stuff) with different scaling blended together. usually this is far from being frtactal in any way, and it is just modulo-arithmetic instead (if only by ignoring some bits of the position-values).
Definitely some kind of diamond oriented fractal, it's recursive and amplifying depending on starting conditions, what kind of fractal I can't name but absolutely 100% a fractal
Oooooooooh, this pattern! I’ve seen it before, Yeah that’s basically happens when you’re dehydrated. Happened to me just last week. Good luck and drink up!
What may seems as an unfortunate malfunction in the video's producer's code, is actually a beautifully crafted artistic expression which signifies the cycle of life and the importance of one's journey, mistakes and uprisings. As we can see, the line is starts out as chaotic, monstrous and colorless and changes into a yellowish-gold, this signifies the process of childbearing and the development of the cranium. The squarish shape that is quickly formed into a line signifies the revision to adulthood from childhood, the line becomes clearer and so does one's goals, furthermore, the line will eventually cease to exist much like the end of life and chaos will abrupt again, much like birth. In essence, this video shows the adventure of living, and how one's choices can alter one's end. edit: sry for bad english
bro, if you can let only the 4th square in a full window and record it at 1080p, it would be a hell of a video, that I definitely would use as a wallpaper
Average graphics programming experience
When coding my game engine I’m making I did something wrong so a cube was stretched across the whole screen and it was really weird
@@5DPixel I was programming 2d wave sim and accidentally made an acid trip
@@anime_erotika585Flashback to when my scratch 3d renderer made objects bigger with distance and also multiplied the velocity of everything by 2 instead of dividing it by 2 each frame
I learned that day you could crash chromebooks
@@anime_erotika585upload a video showing it want to see
@@anime_erotika585Wanna see it
John RPG: Yiikes! This boss sure is giving me some trouble!
The wonderful battle background:
💀
yiik es
Earthbound:
@@loseControlGDlol actually every earthbound battle bg
Asriel Dreemurr, God of Hyperdeath...
0:41, the best carpet design I've seen.
honestly I was thinking the same thing lol
Fractal carpet
@@EugeneCat007 There's actually a fractal called "Sierpiński carpet"
(you probably knew this already, but if not, here you go)
@ I don’t, thank you for expanding my knowledge to torment my friends with metaphors they don’t understand
@@KristOFF-T just heard of the triangle but the carpet looks fancy as well xD
the undertale barrier
YES LMAO
i came here to write this
EXACTLY! 😂😂😂
omg ur so right
Ye
I like how it's so intense that the monitor can't even render it properly, so it started breaking and using misc colors instead of black and white since that's what each pixel is composed of
wow, i didn't know pixels were made of the color yellow. now i'll have to fix all those rgb functions since there's now an extra fourth color
Lol@@brightblackhole2442
more likely its some faulty color logic but yeah still really cool
@@brightblackhole2442RGBY
@@cerulity32kYeah if rshtg2019 was right it would look rainbow instead of yellow and red
"Light shines through The Barrier. You are filled with DETERMINATION" ass graphics
Do you wanna be a [BIG SHOT] ahh graphics
im here with you (if this was a sols rng aura it woul be golden light 600,000,000mil idk wat cutscene)
@@samuelbeneako4498 gambler detected
Ahh*
Ain't no way bro actually said the real A-word in 2024💀‼️💀
0:21 When the lobotomy, this is very unique and I love it :D
when a simple programming error makes something unintentionally cooler than what you were going for
Immediately thought of Conway's game of life. But as for answering what this is, my best guess is you stumbled upon a basic fractal drawing method.
I was thinking the same
oh cool! i was actually trying to make SmoothLife but i was messing around with the cell values from 0 and 1 and i just tried to put each cell value as its distance to some point and it gave me that
@@cantthinkahandle I knew Cellular Automata was involved, I also get similar patterns when I messed something up.
Cool stuff, hope the project works out.
@@cantthinkahandle Stephan Wolfram - New Kind of Science
Look that up.
the taskbar lmaoooo
honestly i've never seen a better taskbar, besides windows xp luna taskbar ofc
I just see Windows 10 Task bar but it looks like 7 or Vista. And the anime girl.
Weebs
atleast i have real taskbar
We need a tutorial
i believe this is an XOR fractal
you are correct
yep looking it up, seems to match almost perfectly (XOR is probably used somewhere)
@@speedgisn't it the horizontal and vertical lines crossing?
@@keppycs i believe not, it looks like a 4 by 4 squere, inside of another one, ... on and on
TYSM I need that name of this fractal
Perry the platypus, you've come just in time to witness my universal fractal-inator
from what i see is something with XOR fractal, using a xor blending style with gradients causes paterns like that to emerge (i used this technique in my profile picture and banner lol)
The pattern is very reminiscent of the pattern you get when you want to visualise the Hamming distance between bytes in the form of a matrix. The smaller the Hamming distance between two bytes (byte 1 is on the x axis and byte 2 on the y axis, each from 0×00 to 0×FF), the darker a cell should be. This will yield a very similar pattern. I also only know about this because a paper of mine will be published soon, which contains notes about similar behaviour in the context of hardware random number generators
its an XOR fractal, but it's centered incorrectly so you can see the other axis. It has some weird colors going on as well, which looks epic.
Carpet texture tutorial
You should use this as a loading screen. This is cool as fuck!
The thing is.. it would absolutely fry the computer.
And would absolutely destroy a person's..... well... epilepsy...
Or this would be too interesting, and you'd get annoyed at the game starting.
This immediately makes me think of Cayley tables colored by some property. Cayley tables are basically special multiplication tables, I make a lot of them cause they make pretty patterns similar to this
It’s probably not that exactly, but wouldn’t be surprised if some similar operation were happening somewhere
It feels like when Cooper in the movie Interstellar getting out of the 5 dimensional space.
Am I the only one who thought I watched this video before because of the red taskbar 😭😭
No
@ZphyZphyer Good to know, thanks
no lol i only warched it because i was confsued why i watched it
yes, I actually didn't realise there was a red taskbar, and just though that I watched this video before and just forgot about it
Yeah, finding this in my recommendation got me so confused-
Looks amazing. Foaming well.
"This is the barrier." - Asgore.
* *Insert loud sorting algorithm noises* *
as someone with 11 phds in coolness and cool activities, i can confirm that this, is indeed, cool.
A typical video about the death of a graphics card be like:
This is the barrier.
This is what keeps us all trapped underground.
We're underground?
@@DerfaelB
undertale
when the robots take over the world and replace humanity, all of their decorations will be bitwise XOR in shiny picture frames.
That looks cool...
But what IS it doing?
And what is it SUPPOSED to be doing? :)
It looks like some kind of sorting algorithm or some kind of Quad-tree algorithm or something?
i have a feeling this will drive the tally hall fans crazy
Minecraft far lands but 2d /j
Minecraft fer lands but 3D
i couldnt have been able to tell this was supposed to be funny if it werent for the "/j" tone indicator
/s
Uhh, what were you tryong to make? Its cool!
The geometrical patterns look really cool!
It is very simple formula:
color(x, y) = x xor y
It gives you similar image.
You can then evaluate the formula for adding time to x or y or both and get similar animation.
This looks very much like the "Munching Squares" algorithm, first discovered around 1962 on the PDP-1.
Munching Squares was what I first thought of too.
you accidentally made a carpet design generator
bro you broke the universe
the first secondss looked like the barrier in undertale
FYI this is an XOR fractal pattern, it was quite well known in the early days of computers
i actually knew it from some discord guy!
you could get some cool rug patterns from the square portion
this should be the next Minecraft world creation loading screen
this is VERY common 2d-xor "fractal" on shadertoy.
at its core it is a it is a 2d-xor,, where you do (y xor x) (after some modulo, any maybe other stuff) with different scaling blended together. usually this is far from being frtactal in any way, and it is just modulo-arithmetic instead (if only by ignoring some bits of the position-values).
that's how you know you're doing it right - when you feel like you're being drugged by your own code
We did not believe that the great discovery came from such a minor mistake.
Definitely some kind of diamond oriented fractal, it's recursive and amplifying depending on starting conditions, what kind of fractal I can't name but absolutely 100% a fractal
Me not understand programming.
Me not know what eye see.
Me see fancy shape and pretty light.
Me go "woah".
me accidentally discovering what the 4th dimension looks like while im doing a simple graphics test:
that's the XOR texture hell yes
- Do you know that movie Interstellar?
- Say no more
They factored the human experience into the game of life
"You cannot grasp the true form of Giygas' attack"
I love the OS being used and yes this is cool.
Glad you're still using Windows 7, I like it ❤
Seems like Win11 with fancy stuff to make it look like Win7. I like it tho
this is what endless void domain must feel like
as a person who lives, i can confirm this accurately represents life
went from death rays to grandma's rugs to death of universe. magnificent
The birth of the universe is simply a beautiful accident.
Violently pretty
it looks like knitting a wonderful pattern to be honest
I'm not even mad that I had an epileptic attack, that's awesome
My best guess is a fractal due to the nature of how it looks. it doesn't look like any cellular automata or marching squares to me.
kinda looks like the game of life, this is pretty cool i like the waves
Hey, what style are you using? It looks very neat
it does look cool... also what vscode theme is that
same question!
it kinda looks like monokai. Maybe a version of it.
That was, indeed, something cool!
Yeah, pretty good gradient! I think it can be popular in 11 years)
type of shit i see when i close my eyes and apply pressure with my hands
Earthbound battle backgrounds:
Perlin noise is beautiful algorithm :D
How the matrixes programming language would look if it were real
This reminds me of a old game called, catacombs of Solaris by Ian Maclarty. You should definitely check it out.
"It's just a small bug, we'll fix it after launch"
The bug:
Now this is art.
Oooooooooh, this pattern! I’ve seen it before, Yeah that’s basically happens when you’re dehydrated. Happened to me just last week. Good luck and drink up!
the math goes hard in this one LMAO
*stands up too fast*
my eyes:
What may seems as an unfortunate malfunction in the video's producer's code, is actually a beautifully crafted artistic expression which signifies the cycle of life and the importance of one's journey, mistakes and uprisings.
As we can see, the line is starts out as chaotic, monstrous and colorless and changes into a yellowish-gold, this signifies the process of childbearing and the development of the cranium. The squarish shape that is quickly formed into a line signifies the revision to adulthood from childhood, the line becomes clearer and so does one's goals, furthermore, the line will eventually cease to exist much like the end of life and chaos will abrupt again, much like birth.
In essence, this video shows the adventure of living, and how one's choices can alter one's end.
edit: sry for bad english
When your robot grandma comes for the family dinner and told you they programmed a knitted blanket just for you.
imagine seeing internet data in this form.
Every PSI move in Earthbound be like:
LOL 😂
What are you using Open Frameworks?
The Undertale Barrier
why?
come on i also stole that comment but i at least added something to it
Dunno why, but this is satisfying for me
I like your color scheme
imagine if one universe was creates, existed and died in this code
it's like munch, but, like, not. I love it.
looks like a combination of game of life and entropy
woah those are some colors (nice taskbar,, howd you get konata on there tho?)
bro, if you can let only the 4th square in a full window and record it at 1080p, it would be a hell of a video, that I definitely would use as a wallpaper
Congratulations, you're now a demoscener.
Veri Epik Graphics like u said
Wecome to the demoscene, lad.
How the barrier in undertale was made:
It's cool, no doubts. But what about CPU? Is that hot?
There are no mistakes, only happy little accidents.
_- Bob Ross_
cooler netflix intro
"when there is darkness, let there be light, when there is light, let there be darkness!" - compotor
i accidentily made the same fractal with checkboxes on JS a while ago! it must be a surprisingly easy one to make on accident
Perfect example of "its not a bug it's a feature"
This feels like I am imagining a new color
Source games when you go out of bound
Looks like a vampire survivors run after min 20 😂