This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2022-12-05
Channels
- # adventofcode (138)
- # announcements (1)
- # babashka (4)
- # beginners (71)
- # biff (2)
- # calva (7)
- # cider (20)
- # clj-kondo (4)
- # cljsrn (4)
- # clojure (36)
- # clojure-europe (37)
- # clojure-nl (2)
- # clojure-norway (27)
- # clojure-portugal (1)
- # clojure-uk (4)
- # clojurescript (8)
- # emacs (3)
- # graphql (1)
- # hugsql (4)
- # humbleui (6)
- # hyperfiddle (1)
- # jobs-discuss (18)
- # joyride (2)
- # malli (17)
- # meander (7)
- # membrane (8)
- # off-topic (16)
- # pathom (14)
- # portal (4)
- # rdf (36)
- # reitit (4)
- # releases (2)
- # remote-jobs (1)
- # scittle (15)
- # shadow-cljs (13)
- # tools-deps (40)
morning
I second that 🌈
Good morning, esteemed Clojure programmers! As the sun rises on this new day, may the immutable principles of our beloved language guide your thoughts and inspire your creations. May your functions be pure, your code concise, and your programs a joy to behold. Happy coding!
:rolling_on_the_floor_laughing: I was just going to ask if that was you or our new overlords
What’s the reference here?
The amazing new language model ChatGPT: https://chat.openai.com/chat
Ah, I see 🙂
That really is amazing!
It seems that ChatGPT’s word have now been immortalised in CIDER: https://github.com/clojure-emacs/cider/commit/7570876de5001158e101ad25601f08ef7d982427

Good morning!
It seems that ChatGPT’s word have now been immortalised in CIDER: https://github.com/clojure-emacs/cider/commit/7570876de5001158e101ad25601f08ef7d982427

I filed an issue on #C03DPCLCV9N that we should enable so that scripts could be written in JavaScript too. Only to then start implementing it and after having created a test (in my most manual TDD style) and discover that Joyride has supported this all the time. 😃 🤯 I am now making it so that JS files are reloaded to pick up changes, which will enable some interactive programming also for the poor souls using JS instead of Clojure.
At least #C03DPCLCV9N! It is amazing. I dare say this because most of the magic is not of my making. 😃
@U0ETXRFEW I don't think it's a good idea to reload the js by default since that has performance implications. But we could support it like this:
(ns foo (:require ["./foo.js"] :reload))
which is also how it's done in Clojure