babashka

richiardiandrea 2025-12-08T22:44:05.519389Z

Dear all, is anybody using nippy here and is able to use the library from babashka?

borkdude 2025-12-08T22:44:40.163339Z

nippy currently isn't available in bb, but there is a nippy pod

richiardiandrea 2025-12-08T22:45:04.084579Z

oh - yeah I was trying to find it ... is it this one? https://github.com/justone/brisk/releases

borkdude 2025-12-08T22:45:20.852939Z

yes

richiardiandrea 2025-12-08T22:45:36.291329Z

kk cool thanks - I wasn't sure - thanks for confirming

richiardiandrea 2025-12-10T18:20:49.670739Z

Hi borkdude, a question - I have a pod that must use a database connection via pod-babashka-sql ... Naive question - can a pod use another pod? My first hunch tells me that this would not be possible as the connection is within the sql pod and cannot be "moved around"

borkdude 2025-12-10T18:22:04.672729Z

a pod can't use another pod, unless the pod is programmed to do so :)

👍 1
richiardiandrea 2025-12-10T18:26:23.106659Z

I guess my only option is for my pod (a clojure jvm process) to call the pod-babashka-sql/execute! with the query I want to run - that should work correct?