clojure-nl

Companies working with Clojure in The Netherlands: https://docs.google.com/spreadsheets/d/1NzOqY1v-OReB1IquUgHuT3Kh8K8jhPdlwBM6ds7id6Y/edit?usp=sharing
borkdude 2021-02-13T13:34:19.102600Z

Btw has the video from last meetup been made available or was it decided not to publish?

borkdude 2021-02-13T13:37:53.103Z

@skuro can I ask you, how do you record meetings on jitsi?

borkdude 2021-02-13T13:38:21.103600Z

I'm looking for a fun way to add some perk for people sponsoring me on Github or elsewhere and some pairing video might be fun

skuro 2021-02-13T14:17:01.103800Z

L yidf

skuro 2021-02-13T14:17:17.104400Z

sorry, cat typing

skuro 2021-02-13T14:17:36.104900Z

@borkdude with jitsi, you link your dropbox account to it and it will put the recordings there automagically

skuro 2021-02-13T14:18:46.105800Z

re: threading macros, it's interesting that no one came up with as-> which is IMHO a valid in-betweener

skuro 2021-02-13T14:19:44.106700Z

(as-> lots-of-maps THINGS
    (filter beautiful-things THINGS)
    (sort-by :very-important-key THINGS)
    (first THINGS)
    (:actual-important-key THINGS)
    (or THINGS meaningful-default))

gklijs 2021-02-13T14:39:36.107700Z

I wasn’t aware of as-> but seems like a nice macro doing threading when it isn’t always first or last.

gklijs 2021-02-13T14:41:13.109400Z

Anyone know a ‘modern’ way of doing ‘modules’ with clojure? I used lein-modules before, but it broke with leiningen 2.9.3. Might want to change it to deps.edn, but would be some work.

kwrooijen 2021-02-13T16:27:02.110500Z

@gklijs Ragtime uses this: https://github.com/kumarshantanu/lein-sub Is that something you could use?

gklijs 2021-02-14T08:24:35.111200Z

Seems to miss the shared dependencies part, but Walmart labs got something that works with lein-sub. https://github.com/walmartlabs/shared-deps

gklijs 2021-02-14T13:21:25.111500Z

Ended up with them both, works nicely. https://github.com/gklijs/bob2021

gklijs 2021-02-13T16:57:51.111Z

Thanks, will give it a try.