This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2016-06-30
Channels
- # admin-announcements (3)
- # aws-lambda (12)
- # beginners (88)
- # boot (73)
- # capetown (6)
- # carry (16)
- # cider (8)
- # cljsjs (7)
- # clojure (90)
- # clojure-belgium (4)
- # clojure-dev (19)
- # clojure-greece (41)
- # clojure-portugal (1)
- # clojure-quebec (4)
- # clojure-russia (25)
- # clojure-spec (172)
- # clojure-taiwan (1)
- # clojure-uk (76)
- # clojurescript (82)
- # cursive (37)
- # datavis (2)
- # datomic (46)
- # devcards (1)
- # emacs (4)
- # euroclojure (6)
- # events (1)
- # hoplon (31)
- # jobs (1)
- # keechma (9)
- # off-topic (4)
- # om (7)
- # onyx (65)
- # other-languages (15)
- # pedestal (1)
- # planck (50)
- # proton (1)
- # re-frame (40)
- # reagent (7)
- # spacemacs (14)
- # spirituality-ethics (37)
- # testing (1)
- # untangled (2)
- # yada (44)
@seancorfield: Well, as I wrote there I disagree, but I don’t think we’ll get anywhere going over it again. I think it’s going to be more Kotlin for me, which makes me sad.
Yours is definitely a very interesting "edge case" in terms of Clojure projects, so deeply embedded with existing Java code, so full of null
values.
I wondered whether you could build a sort of Kotlin "wall" around the Java and have happy Clojure inside that?
Well, a lot of people using Cursive are using it because it has good interop support. This must be hurting them too. Rich made the decision to embrace the host - interop is generally considered idiomatic.
I mean, I’ll have to when I talk to nREPL or lein or whatever, but for application logic I’m starting to feel like I’m fighting the language.
^ I didn’t realize that. What sort of changes have you made?
And what version of Clojure is it forked from?
I have two new forms, define-class and extend-class, which allow me to extend abstract classes, call super methods etc. One is like deftype which allows class extension, and the other is like reify but allows class extension.
It’s based on 1.7 right now, I’ve actually rebased it to 1.8 but haven’t tested and started using that yet.
It has various other niceties, some of which have made it into Clojure proper now (allowing a deftype to load its containing namespace when the class is initialised, and a few others)
Interesting.