Fork me on GitHub
#off-topic
<
2018-04-18
>
orestis05:04:18

@alexmiller do you have a rough price for the Strangeloop tickets? It’d be extremely useful so someone coming in from Europe can be sure it’s within budget by booking flights and accommodation early...

Alex Miller (Clojure team)12:04:03

I am still trying to work the budget to drop that a bit but won’t be any higher than that

souenzzo14:04:19

Someone else implement functions like

const merge = (...ms) => ms.reduce((acc, m) => ({ ...acc, ...m }), {})
const assoc = (m, k, v) => merge(m, { [k]: v })
const update = (m, k, f, ...args) => assoc(m, k, f.apply(null, [m[k], ...args]))
when for some sad reason is obliged to code in JS?

8
sundarj14:04:03

although you could use Ramda

👌 8
souenzzo22:04:04

Sure. But it's a legacy project. I feel like any new deps that I add will break everything...

sundarj22:04:42

aha, fair enough. i get that.

fellshard23:04:08

Yeah, it's usually not great to drag Ramda into an existing project from experience; general JS is often too undisciplined with mutability etc. to cooperate well.

8
dpsutton20:04:50

planet clojure twitter is back with a vengeance

dpsutton21:04:31

http://planet.clojure.in/ and the domain is working again

🎉 4
parrot 4
yogidevbear07:04:01

Cool, I didn't know about this website. TIL simple_smile