Fork me on GitHub
#babashka
<
2021-06-11
>
Jakub Holý (HolyJak)11:06:56

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!

borkdude11:06:13

@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.

👍 5
🙏 3
emilaasa15:06:16

Holy BORK it's pretty addictive this scripting, I've made a tmuxinator thing now that creates tmux sessions in bb 🙂

😆 7
emilaasa15:06:12

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))

emilaasa15:06:24

kind of cool that it was so quick and dirty to set up!