This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2022-08-29
Channels
- # announcements (5)
- # beginners (25)
- # calva (53)
- # clj-kondo (9)
- # clojure (25)
- # clojure-europe (14)
- # clojure-nl (1)
- # clojure-norway (21)
- # clojure-uk (1)
- # conjure (2)
- # data-science (1)
- # datalevin (4)
- # datascript (6)
- # deps-new (5)
- # emacs (5)
- # etaoin (6)
- # figwheel-main (1)
- # fulcro (46)
- # gratitude (3)
- # hyperfiddle (8)
- # introduce-yourself (13)
- # lsp (13)
- # nextjournal (5)
- # off-topic (2)
- # pathom (4)
- # polylith (11)
- # re-frame (16)
- # releases (4)
- # scittle (67)
- # shadow-cljs (38)
- # slack-help (4)
- # specter (13)
- # sql (29)
- # squint (21)
- # test-check (3)
- # vim (13)
- # xtdb (15)
Released first version of https://github.com/bortexz/resocket , a Clojure WebSocket client (wrapping JDK11 WebSocket) exposing a core.async API, a`reconnector` fn that keeps creating new connections when current ones are closed, automatic ping at given intervals, abort idle connections, etc
Thank you for this library. I used it for a prototype recently and loved the interface and simplicity.
Deep Diamond 0.25 released with RNN support on CPU and GPU! The fast Clojure Deep Learning library. https://github.com/uncomplicate/deep-diamondhttps://t.co/PVwsqO5ID1

Just released vim-iced ver 3.11.3086, Clojure Interactive Development Environment for Vim8/Neovim. https://github.com/liquidz/vim-iced Added evaluation in context like CIDER :) https://liquidz.github.io/vim-iced/#evaluate_in_context
This evaluate-in-context functionality is great. I really like being able to test in the REPL without having to make back and forth edits all the time. e.g. if I'm testing out a new query function, I can just provide the DB connection and query parameters using eval-in-context and repeat execution with the same context/paramers through as many iterations of the function as I need to get it right, never having to hardcode test values into the source code I'm testing. Thanks very much @UBL24PLE6.