Fork me on GitHub
#clojure-uk
<
2018-11-23
>
Rachel Westmacott08:11:34

IDEs are great…. but I just opened a project, made my code change, committed and pushed - and IntelliJ is still indexing the project… 😄

3Jane09:11:52

The charms of caching :)

thomas10:11:03

so... @peterwestmacott, you want your IDE to be as frictionless as possible?

practicalli-johnny10:11:23

At ClojureX this year we have a panel session as usual. Rather than just be my curation, please reply as a thread if there are speakers you would like to see on the panel this year.

jasonbell10:11:47

Is that on the Monday or Tuesday @jr0cket?

jasonbell10:11:17

I’ll miss it, that’s a shame 😞

practicalli-johnny11:11:10

so long as you dont miss your own talk, it will be the best one anyway ❤️

practicalli-johnny11:11:27

dont tell the other speakers I said so...

thomas11:11:51

but will that be due to my heckling?

jasonbell11:11:06

Oh behave yourself @jr0cket all the talks look great. I’m really looking forward to it.

jasonbell11:11:54

@thomas no, your heckling is merely emotional scarring, not the reason I leave the building 🙂

practicalli-johnny11:11:38

Heckling of any form other than chanting "We love Jase" with a loving tone with be met with stern and sustained hugging, from both myself and @U0525KG62 lisphug

jasonbell11:11:19

Hugs from @jr0cket and @U0525KG62 - is that at the same time?

jasonbell11:11:04

And I am now officially scared of the intro on the 3rd.

thomas11:11:55

I am very much looking forward to this now!!!

jasonbell13:11:56

I am too @thomas and the heckling obviously

practicalli-johnny13:11:28

Warm and positive hugs are freely available from myself and @U0525KG62, on your consent of course. If you ask us nicely we can also pair hug you.

thomas11:11:17

@jr0cket do we need to sign up somewhere for the workshop on Sunday?

flefik14:11:22

@seancorfield hey sean. This project saved my skin today: https://github.com/seancorfield/boot-tools-deps ! Much obliged

👍 8
practicalli-johnny16:11:46

Any recommendations for a (free) working space in London, with wifi and whiteboards ? Would like to do some face to face coaching with one of my students. Or if anyone is cool with two people hanging out in a corner of their office on Monday afternoon and talking about Clojure, then please let me know.

seancorfield17:11:36

@cfeckardt Great to hear that it's useful! It's a bit of a funny story behind it... We started with lein at work back in 2011 and switched everything to boot at the end of 2015. Once we were on Boot, we moved our dependencies out to EDN files and had a .properties file with all our "pinned" dependencies (shared across all the subprojects in our monorepo). When deps.edn and tools.deps appeared, I wanted to align our tooling with that new "standard" (we were already using deps.edn as our filename, but with a different format). So I wrote boot-tools-deps thinking I'd just swap the format over and continue using Boot...

seancorfield17:11:53

...but in the end we decided to completely switch to the new CLI and deps.edn, so we're not actually using boot-tools-deps now 😐 But! Our dev/test/build pipeline is much simpler (and faster) now. We no longer have to deal with weird edge cases caused by Boot's "shadow filesystem" abstraction and the asynchronous classpath refreshing stuff in pods (both of which had caused us pain).