• 0 Posts
  • 23 Comments
Joined 3 years ago
cake
Cake day: June 15th, 2023

help-circle
  • I really think tools like voiden, hurl, and verb make sense. They make it easier to troubleshoot a system later or to share requests with other developers without leaving the repo. The only real challenge becomes handling authentication scenarios without putting secrets in plain text.

    Speaking of writing a thesis, I imagine that leaves plenty of room for PTSD! I personally like the direnv support for emacs much more than other environments, and I’ve become a big fan of ripgrep and fuzzy finding.



















  • Dockerfiles act as instructions for the docker (or compatible) CLI to use for building OCI container images. Images may or may not have layers and can be exported as a tarball for inspection (with tools like dive).

    Nix provides native support for building container images, and the resulting archive must be loaded using docker load. There is another library (nix2container) that aims for better performance and relies on skopeo for copying the built image to a docker-compatible server, local or remote.

    Just wanted to share a some of the information I’ve learned. Cheers!


  • I currently use NixOS and nix-darwin, and I’ve enjoyed the ride so far. I use flakes with direnv for reproducible development environments, and this has been working out well. I’ve also been impressed with using Nix to build OCI containers.

    The learning curve isn’t flat, but the ecosystem is fantastic.