Fork me on GitHub
#clojure-nl
<
2021-02-13
>
borkdude13:02:19

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

borkdude13:02:53

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

borkdude13:02:21

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

skuro14:02:17

sorry, cat typing

skuro14:02:36

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

skuro14:02:46

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

skuro14:02:44

(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))

gklijs14:02:36

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

gklijs14:02:13

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.

Kevin16:02:02

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

gklijs16:02:51

Thanks, will give it a try.

gklijs08:02:35

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

gklijs13:02:25

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