2023-11-20 18:00:13 -06:00
# F E E D T H E V O I D
<!-- Note that there's a zero - width space between the spaces so that all 3 render -->
2023-11-21 11:53:00 -06:00
![Useful Linux Tips: Run dd if=/dev/zero of=/dev/null to feed nothing to the void ](/site-files/feed-the-void.png )
<!-- Source of meme is unknown -->
2023-11-20 18:00:13 -06:00
2023-11-21 11:53:00 -06:00
< p style = "font-size: 36px;" > < b > Witness the void consume zeroes for all eternity< / b > < / p >
2023-11-20 18:00:13 -06:00
---
2023-11-21 11:53:00 -06:00
This puts the output of `dd` into a file, which is then read and made into a webpage every second. It's just a [bodged ](https://www.youtube.com/watch?v=lIFE7h3m40U )-together mess and it's super CPU-heavy, but it works*
2023-11-20 18:00:13 -06:00
\* Disclaimer: No idea if this works, I'm from the past where the program wasn't done yet.
## Docker
2023-11-21 11:53:00 -06:00
1. Clone the repo - `git clone https://git.askiiart.net/askiiart/feed-the-void.git && cd feed-the-void`
2023-11-20 18:00:13 -06:00
`docker run` :
```sh
2023-11-21 11:53:00 -06:00
docker run -it --rm --restart unless-stopped -v .:/data registry.askiiart.net/askiiart/feed-the-void
2023-11-20 18:00:13 -06:00
```
2023-11-21 11:53:00 -06:00
`docker-compose.yml` : See [docker-compose.yml ](docker-compose.yml )