clojure-europe

For people in Europe... or elsewhere... UGT https://indieweb.org/Universal_Greeting_Time
jasonbell 2020-09-04T06:22:52.142100Z

@otfrom Alright, Iโ€™ll bite. No, what do you mean?โ€ฆโ€ฆ

2020-09-04T06:48:24.142300Z

morning

jasonbell 2020-09-04T07:06:39.142900Z

@otfrom Youโ€™re not referring to my Tess Daly cosplay costume, I thought we agreed you were never going to mention that ๐Ÿ™‚

synthomat 2020-09-04T07:10:14.143100Z

good morning!

2020-09-04T07:22:33.143700Z

Morning

thomas 2020-09-04T07:27:31.144500Z

Wooohooo @jasonbell on Strictly!!!! I'll vote for that!

thomas 2020-09-04T07:27:48.144900Z

morning btw

jasonbell 2020-09-04T07:27:50.145100Z

@otfrom I am aware of him, but was not aware that heโ€™s in the UK making an idiot of himself.

thomas 2020-09-04T07:28:11.145600Z

that is your job? isn't it?

jasonbell 2020-09-04T07:28:21.145900Z

@thomas you may well be wasting your money.

thomas 2020-09-04T07:28:34.146200Z

it would be a good cause!

jasonbell 2020-09-04T07:32:01.146500Z

Two left feetโ€ฆ.. https://www.youtube.com/watch?v=DC_PACr5cT8

๐Ÿ˜‚ 2
2020-09-04T07:38:35.146800Z

Morning

slipset 2020-09-04T07:42:23.147Z

late morning

raymcdermott 2020-09-04T10:07:02.147400Z

morning

mpenet 2020-09-04T11:03:33.149300Z

howdy

raymcdermott 2020-09-04T11:04:28.150100Z

fun Friday subject ... who thinks clojure.string/starts-with? which takes two args: s substr has those args in the right order? I don't know but I always get it wrong. So maybe I do know.

2020-09-04T11:09:19.150600Z

that is the correct way around as it is like all the other things that go nicely with ->

๐Ÿ˜ฎ 1
dominicm 2020-09-04T12:08:10.151300Z

I read it as "does s start with substr"

2020-09-04T13:50:38.151900Z

I think my only annoyance with the -> friendly functions is that they don't play well with partial, and I like partial

2020-09-04T13:50:53.152200Z

(partial to partial?)

raymcdermott 2020-09-04T14:07:53.152500Z

very partial

raymcdermott 2020-09-04T14:09:08.153200Z

personally, not sure that -> should drive all API design

borkdude 2020-09-04T14:09:33.153500Z

positional args are deprecated man

๐Ÿ˜ 1
raymcdermott 2020-09-04T14:10:07.154Z

is that what clj-kondo reports these days?

borkdude 2020-09-04T14:10:30.154300Z

don't tempt me

๐Ÿ˜ˆ 1
2020-09-04T14:55:51.154900Z

-> ->> and transducers would like to disagree

borkdude 2020-09-04T16:15:45.155400Z

@otfrom if everyone conformed to map in and map out we would only need -> and not ->> or confusing combinations thereof ;)

borkdude 2020-09-04T16:17:18.156500Z

I'm only half joking, using maps for every function call would probably be costly

2020-09-04T16:33:09.156700Z

๐Ÿ˜ƒ

dominicm 2020-09-04T16:58:03.157200Z

map in/out everywhere leads to global state, just in a map instead of at the ns-level. That's only barely better than global state.

raymcdermott 2020-09-04T19:12:08.158100Z

I assume it was a joke, who would do it for real?

raymcdermott 2020-09-04T19:48:55.158200Z

Goodnight

โค๏ธ 2
raymcdermott 2020-09-04T23:09:34.160400Z

(defn is-borkdudes-idea-sane? ([] (is-borkdudes-idea-sane? {})) ([{:keys [sane?] :or {sane? true}}] sane?)) => #'user/is-borkdudes-idea-sane? (is-borkdudes-idea-sane?) => true