This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2022-05-12
Channels
- # announcements (4)
- # asami (3)
- # babashka (18)
- # babashka-sci-dev (2)
- # beginners (55)
- # calva (18)
- # clj-commons (23)
- # clj-kondo (2)
- # cljfx (7)
- # cljs-dev (15)
- # clojure (96)
- # clojure-europe (43)
- # clojure-losangeles (3)
- # clojure-nl (2)
- # clojure-uk (11)
- # clojurescript (1)
- # datalevin (2)
- # datomic (10)
- # events (1)
- # google-cloud (4)
- # gratitude (16)
- # helix (3)
- # hyperfiddle (63)
- # inf-clojure (13)
- # introduce-yourself (4)
- # ipfs (2)
- # jobs (2)
- # jobs-discuss (12)
- # leiningen (7)
- # lsp (15)
- # off-topic (38)
- # polylith (24)
- # portal (27)
- # remote-jobs (8)
- # sci (27)
- # spacemacs (5)
- # specter (1)
- # sql (5)
- # xtdb (41)
Hello, want to know someone have tried to use bb and edn to create automation install software script like ansible and its yaml playbook.
<https://epiccastle.io/spire/> might be in the ballpark of what you're looking for (available from clojure or a babashka pod)
@U013JFLRFS8 thanks. will try spire.
https://github.com/ansible/ansible https://github.com/adithyakhamithkar/ansible-playbooks thanks.
As promised a while back, here are the babashka Q1 2022 survey results! https://blog.michielborkent.nl/babashka-survey-q1-2022.html

Hi! Iām getting an error āMethod schedule on class java.util.concurrent.Executors$DelegatedScheduledExecutorService not allowed!ā on a piece of code that seems to work fine on the JVM - Iām guessing Iām just hitting a limit of what Babashka can do?https://github.com/babashka/babashka/blob/master/src/babashka/impl/classes.clj#L397 but I guess that doesnāt mean all of it is accessible? This isnāt anything critical, just trying to get my head around the āJava interopā bit of Babashka š
Iām actually quite a few versions behind Iāve realised so Iāll try to repro on latest babashka first
Thanks. This thing works btw: https://github.com/overtone/at-at
Ah great thanks! For now Iām getting away with putting a Thread/sleep
inside a future
and using future-cancel
š
The reason for this issue is that we have to explicitly add support for those classes. https://github.com/babashka/babashka/blob/5d47397ffca540733cd19eb78f74555e3236cc4e/src/babashka/impl/classes.clj#L361-L364