Hi! What is the difference between https://github.com/babashka/pod-babashka-aws/releases/download/v0.0.6/pod-babashka-aws-0.0.6-linux-amd64-static.zip and pod-babashka-aws-0.0.6-linux-amd64.zip ? (aside of the 0.7MB) Which should I prefer to bake in into my AWS Lambda? Thank you!
@holyjak The static one has been compiled with musl and is suited for non-glibc images (or environments like nixOS). Pods in the registry are slowly moving all towards that, so I'd say use the static one.
Holy BORK it's pretty addictive this scripting, I've made a tmuxinator thing now that creates tmux sessions in bb 🙂
Right now it sort of looks like this:
(comment
(def cfg {:session-name "test"
:windows [{:window-name "vim"
:dir ["cd ~/src/github.com/emilaasa/tmp"]
:cmd ["nvim"]}
{:window-name "repl"
:dir ["cd ~/src/github.com/emilaasa/tmp"]
:cmd ["lein repl"]}]})
(tmuxinate cfg))
kind of cool that it was so quick and dirty to set up!