Fork me on GitHub
#babashka
<
2020-02-05
>
borkdude10:02:07

Are there any companies using babashka and/or sci I should mention in an upcoming presentation about it?

borkdude10:02:36

Feel free to mention your company + logo here: https://github.com/borkdude/babashka/issues/254

jeroenvandijk15:02:13

@U04V15CAJ Ah thanks, I'll response to it tomorrow i think

stijn11:02:24

what would it take to make something like the cognitect aws-api work under babashka? I assume using clj-http-lite? any resources that I can check to get started with looking if it is even possible at all?

stijn11:02:55

there's nothing exotic in the dependencies, and there is only one go block in the code

borkdude11:02:46

Go blocks don’t work at the moment since the go macro is quite involved, but I want to revisit that at some point

borkdude11:02:14

If you can fork that library and can get rid of the go block, it might work?

stijn11:02:49

sounds like a plan

borkdude14:02:50

@stijn I made some progress in the go-macro branch:

$ lein bb '(async/<!! (async/go 1))'
1
but one problem is that the go macro code uses tools.analyzer and tools.analyzer doesn't work with graalvm

borkdude14:02:13

so it's unlikely that it's going to be in bb anywhere soon

borkdude14:02:54

unless I or someone else can hack around that... guess I'll have to do a deep dive into the go macro