sbstp
@sbstp@programming.dev
- Comment on Markdown everywhere 1 year ago:
Unfortunately there’s no way to have a generated TOC within the page itself. It’s usually in a sidebar or something like that.
- Comment on Relevant again with Federated Software: The Cathedral and the Bazaar 1 year ago:
Is there a place that has a list of classic programming articles like this? Such a fun read. I know PHK has another one of the design of Varnish vs Squid here varnish-cache.org/docs/trunk/phk/notes.html
- Comment on Linux Containers Forks LXD Project As "Incus" 1 year ago:
I used to use LXC maybe 5 years ago but I’ve since replaced everything with docker/compose. The main difference between LXC and Docker is that LXC is meant to be more like a Virtual Machine than a container. LXC containers run their own instance of systemd and can run multiple processes easily. Docker is meant to run a single process although people sometimes do hacks with supervisord or s6 overlay to run multiple processes.
At the time LXC didn’t really have a concept of images like Docker, it was just base images like Ubuntu 18.04 or Debian 9 and you’d shell in the container and install your stuff.
LXD is a tool built on top of LXC, confusingly enough the LXD client is called
lxc
… It’s higher level and might have the ability to use images, not sure, I never felt the need to learn it.