funcool

A channel for discussing and asking questions about Funcool libraries https://github.com/funcool/
mitchelkuijpers 2015-08-19T15:20:00.000266Z

Async works @niwinz I like the change of delegate, always felt a bit useless giving the context again

niwinz 2015-08-19T15:20:34.000267Z

Great!

niwinz 2015-08-19T15:20:46.000268Z

It needs some improvements for avoid unnecesary garbage creation

niwinz 2015-08-19T15:21:01.000269Z

creating useless ContextData objects in each chain...

mitchelkuijpers 2015-08-19T15:21:18.000270Z

Aha that's not so nice

mitchelkuijpers 2015-08-19T15:21:27.000271Z

But should be fixable ^^

niwinz 2015-08-19T15:21:52.000272Z

Yes, I have pending for the next release improve this aspect and remove duplicate catacumba context construction

niwinz 2015-08-19T15:22:06.000273Z

caching it on the first handler...

mitchelkuijpers 2015-08-19T15:22:09.000274Z

Sorry It look so long was moving from boot to leiningen for our project was a bit of a horrific experience. Leiningen drops dotfiles by default

mitchelkuijpers 2015-08-19T15:22:29.000275Z

so we might need to reconsider searching for .catacumba markerfile by default

niwinz 2015-08-19T15:22:32.000276Z

I have done it for catacumba and I have returned to lein...

niwinz 2015-08-19T15:22:47.000277Z

boot is too slow...

mitchelkuijpers 2015-08-19T15:22:48.000278Z

Now i can use clj-refactor ^^

mitchelkuijpers 2015-08-19T15:22:50.000279Z

Yes

mitchelkuijpers 2015-08-19T15:23:00.000280Z

and creating an uberjar is ridicilous

mitchelkuijpers 2015-08-19T15:23:05.000281Z

takes 3 minutes

niwinz 2015-08-19T15:23:35.000282Z

Lein for me works as expected

niwinz 2015-08-19T15:23:44.000283Z

it is not the best but it is not bad

mitchelkuijpers 2015-08-19T15:24:06.000284Z

Oh yeah I was talking about boot, creating uberjars there sucks

mitchelkuijpers 2015-08-19T15:24:13.000285Z

leiningen works absolutely fine now

mitchelkuijpers 2015-08-19T15:24:40.000286Z

I did have to add this to make it add the .catacumba file to my jar

:uberjar-exclusions [#"\.swp$"]
  :filespecs [{:type :path :path ".catacumba"}]