babashka

https://github.com/babashka/babashka. Also see #sci, #nbb and #babashka-circleci-builds .
Jakub Holý 2021-06-11T11:05:56.016200Z

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!

borkdude 2021-06-11T11:07:13.017300Z

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

2👍1🙏
emilaasa 2021-06-11T15:22:16.018800Z

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

3😆
emilaasa 2021-06-11T15:31:12.019200Z

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

emilaasa 2021-06-11T15:31:24.019400Z

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