This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2021-10-31
Channels
- # aleph (8)
- # announcements (11)
- # aws (1)
- # babashka (7)
- # beginners (104)
- # calva (52)
- # clara (1)
- # clj-kondo (28)
- # cljdoc (8)
- # cljsrn (2)
- # clojure (20)
- # clojure-europe (8)
- # clojure-uk (1)
- # clojurescript (26)
- # core-typed (3)
- # datomic (6)
- # holy-lambda (1)
- # jobs (1)
- # jobs-discuss (14)
- # malli (7)
- # pathom (31)
- # polylith (19)
- # re-frame (8)
- # reitit (1)
- # releases (1)
- # shadow-cljs (5)
- # tools-build (92)
Hey y'all, first proper stable release for BinF, a Clojure(script) + Babashka library for all your binary needs: https://github.com/helins/binf.cljc Very useful for lower-level protocols and stuff like that. I've used it for some funky projects like processing MIDI or WebAssembly files 🙂
I'd say you'd rather use that to build something higher-level and more specific like Protobuf if needed. I keep it as generic as possible because it was my frustrating experience that there wasn't any good tooling when you needed freedom and efficiency when doing something lower-level like parsing a binary file.
I released today the version 0.7.0 of Mirabelle, a stream processing engine written in Clojure. You can find more information about the tool on the documentation (https://www.mirabelle.mcorbin.fr/), and about this release on the changelog (https://www.mirabelle.mcorbin.fr/changelog/).
I remember reading [0] about Mirabelle and it's been on my radar to build something with at some point. Is there a Slack channel where Mirabelle users hang out? [0] https://www.mcorbin.fr/posts/2021-03-01-mirabelle-stream-processing/
No, I don't have a slack channel for it. For now the easiest way to reach to me is to create github issues with questions etc..., or with direct messages here
nbb-lambda-adapter is an NPM package that enables loading and running CLJS code on AWS Lambda NodeJS runtime using @borkdude’s nbb https://github.com/vharmain/nbb-lambda-adapter This enables rapid CLJS development directly in the Lambda console. There’s no need to pre-compile CLJS to JS so the feedback loop is very quick. See @borkdude’s tweet with a gif: https://twitter.com/borkdude/status/1454836645279186946 Thanks to @karol.wojcik @borkdude and @viesti!






@U6N4HSMFW idea:
Can handlerProxy accept the array of handlers, and in that situation create a object of {handlerName1: handler1, handlerName2: handler2}
?
Example:
module.exports = {
...handlerProxy("demo.cljs", ["handler1", "handler2"]),
};
Today I'm releasing some more Lambda goodness 😄 NBB is a nice motivation 😄