Their work is always jaw-dropping. Here is some explanation of the tools they use: https://frankforce.com/tools/ And here's their work on the micro animation blog Dwitter: https://www.dwitter.net/u/KilledByAPixel Youtube explanation: https://www.youtube.com/watch?v=HV7Dmo277Rs
Show HN: Bitwise Liminal – A Short Film in 256 Bytes of Code
61–69 of 69 posts
Re: Show HN: Bitwise Liminal – A Short Film in 256 Bytes of Code
#62A minor note: this is the first time I've seen an svg embedded in a canvas purely for it's onload event. Within this context the canvas is referred to by its (bare) id. How strange and wonderful!
Why is that allowed? I didn’t realize one could do that in js.
Re: Show HN: Bitwise Liminal – A Short Film in 256 Bytes of Code
#63Re: Show HN: Bitwise Liminal – A Short Film in 256 Bytes of Code
#64Is there an annotated version breaking down each part of this for us lesser mortals?
I've had a stab at decompressing the code by hand, adding comments and meaningful var names where possible. I still don't understand the maths in it... https://github.com/callumlocke/bitwise-liminal-expanded
Re: Show HN: Bitwise Liminal – A Short Film in 256 Bytes of Code
#65Is there an annotated version breaking down each part of this for us lesser mortals?
I've had a stab at decompressing the code by hand, adding comments and meaningful var names where possible. I still don't understand the maths in it... https://github.com/callumlocke/bitwise-liminal-expanded
Re: Show HN: Bitwise Liminal – A Short Film in 256 Bytes of Code
#66Stuff like this makes me believe that the entirety of life really could be encoded in DNA. I've read that if you gzipped the human genome, the file would be about 4MB, which intuitively seems too small to represent a human. But if this behavior can emerge from 256 bytes, then clearly my intuition is off.
Is a misconception that DNA is enough by itself to replicate a living being, there are biological bases in the embryon that need to be pass down from the parent as biological infraestructure for the new being to form.
I mean, when we get infected by a virus, our cells are able to produce a completely different life form (if you consider viruses life forms), so why not going from a bacteria (which can also be infected by viruses) to a mammal. It will obviously take a lot more code, and evolution can't get us there, but the idea is similar.
Re: Show HN: Bitwise Liminal – A Short Film in 256 Bytes of Code
#67Their work is always jaw-dropping. Here is some explanation of the tools they use: https://frankforce.com/tools/ And here's their work on the micro animation blog Dwitter: https://www.dwitter.net/u/KilledByAPixel Youtube explanation: https://www.youtube.com/watch?v=HV7Dmo277Rs
That “YouTube explanation” doesn't actually explain how any of the Dweets work. Don't get me wrong, his work is amazing, I loved seeing it and I'm excited to listen to him show it off; I'm just saying that anyone looking for a detailed walkthrough of how any of it works, that video will disappoint.
Re: Show HN: Bitwise Liminal – A Short Film in 256 Bytes of Code
#68Can someone explain to me what are we seeing in the short film? I see some black and white animation with boxes moving and some noisy lines on it. But I'm not sure I understand what it means. Anyone can help me understand?
What's remarkable about it is how small the file size is.
It's 256 bytes!
To explain how impressive that is, the entire film itself is about 58 times smaller than a screenshot of the film's first frame. You could fit the entire film on a 1.44mb floppy disk over 5000 times and still have some space left over.
How?
Normally, videos are made up of a series of images with some information in between that says which part of an image goes where.
But this film contains no image data. It only has some math for drawing boxes at different brightnesses at different times.
Re: Show HN: Bitwise Liminal – A Short Film in 256 Bytes of Code
#69Can someone explain to me what are we seeing in the short film? I see some black and white animation with boxes moving and some noisy lines on it. But I'm not sure I understand what it means. Anyone can help me understand?
That IS the film. What's remarkable about it is how small the file size is. It's 256 bytes! To explain how impressive that is, the entire film itself is about 58 times smaller than a screenshot of the film's first frame. You could fit the entire film on a 1.44mb floppy disk over 5000 times and still have some space left over. How? Normally, videos are made up of a series of images with some information in between tha…