This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2021-06-22
Channels
- # announcements (3)
- # babashka (6)
- # beginners (29)
- # calva (10)
- # cider (14)
- # clj-kondo (67)
- # cljfx (6)
- # clojure (34)
- # clojure-australia (1)
- # clojure-europe (46)
- # clojure-italy (5)
- # clojure-nl (3)
- # clojure-spec (6)
- # clojure-uk (27)
- # clojured (1)
- # clojurescript (26)
- # conjure (14)
- # cursive (5)
- # data-science (1)
- # datomic (26)
- # deps-new (10)
- # editors (1)
- # events (2)
- # fulcro (23)
- # graalvm (41)
- # honeysql (5)
- # introduce-yourself (1)
- # jobs (1)
- # jobs-discuss (1)
- # luminus (2)
- # malli (22)
- # meander (5)
- # observability (3)
- # podcasts-discuss (1)
- # rdf (3)
- # re-frame (27)
- # remote-jobs (7)
- # reveal (6)
- # shadow-cljs (45)
- # xtdb (8)
Hi there! @pez Your :clojureD 2021 talk is online! https://youtube.com/watch?v=NIk5hVzA_fY 🍻
Wow, not sure how to put it, but I never realized that what from my side was, as you put it, basically acting as a rubber duck, was so important (and dare I say fruitful) for you. There is definitively an important/interesting asymmetry here, as the effort I put in was negligible for me, but the output was obviously important for you 🙂
Anyways, I really love your vision for Calva, and the work you put in to make Clojure accessible for beginners is both super impressive and very important.
Remember, when I first was made aware of Calva, it had the capability of freezing all bash-terminals. Today it’s a no-brainer to recommend it as an editor for any Clojure programmer. Well done!
Good morning!
Morning! Is there somebody in the channel whose (european) company sponsors projects / maintainers on GitHub? I’m wondering about things like VAT, taxes etc. etc. and cannot find anything online.
I recall seeing someone on twitter saying that they stopped using GitHub sponsors, because it didn’t handle those things properly. They may have been wrong/overly scrupulous/out of date, though
As far as I see it, the sponsoring fees are part of the monthly GitHub bill. As long as GitHub creates valid invoices, this should work tax-wise. Guess I won’t be able to deduct the donations from taxes, but that’s not that important…
Morning
Good morning 🙂
Didn’t know you were in here too, vvvalvalval (is that right?)
Morning! French it is
Is that a Polish name?
good afternoon :male_zombie:
what are some publicly accessible code bases you find particularly elegant ?
The VS Code team is tougher to convince they have a bug than the Java team is. 😃 Please upvote this on Github, folks: https://github.com/microsoft/vscode/issues/126306
thanks ! I'll have a look !
(defn split? [hand]
(and (= 2 (count (vals hand)))
(apply = (map :rank (vals hand)))))
(defn split? [hand]
(let [vs (vals hand)]
(and (= 2 (count vs)) (apply = (map :rank vs)))))