Go to file
2023-11-20 18:00:13 -06:00
site-files Initial commit - code done, other stuff partial 2023-11-20 18:00:13 -06:00
.gitignore Initial commit - code done, other stuff partial 2023-11-20 18:00:13 -06:00
dd-progress-to-file.py Initial commit - code done, other stuff partial 2023-11-20 18:00:13 -06:00
Dockerfile Initial commit - code done, other stuff partial 2023-11-20 18:00:13 -06:00
README.md Initial commit - code done, other stuff partial 2023-11-20 18:00:13 -06:00

F E E D T H E V O I D

Useful Linux Tips: Run dd if=/dev/zero of=/dev/null to feed nothing to the void

Witness the void consume zeroes for all eternity


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-together mess, but it works*

* Disclaimer: No idea if this works, I'm from the past where the program wasn't done yet.

Docker

docker run:

docker run -v .:/data registry.askiiart.net/askiiart/feed-the-void

docker-compose.yml:

version: "3.7"
services:
  feed-the-void:
    image: registry.askiiart.net/askiiart/feed-the-void
    volumes:
      - .:/data