Fork me on GitHub
#clojure
<
2018-10-13
>
jetzajac01:10:31

If anyone is interested in faster startup: I’ve deconflicted old @richhickey’s branch https://dev.clojure.org/display/design/Lazy+var+loading https://github.com/zajac/clojure branch fastload

jetzajac01:10:02

As mentioned on confluence, it has performance consequences. But they apply only if not direct linked.

emccue02:10:31

@hiredman If you have python 3 as your system default that command is python -m http.server

seancorfield03:10:51

@ag Asking in #tools-deps during the UK day time will probably get you the best answers there since Rick can help you...

zilti14:10:42

If someone here is a bit familiar in creating JavaFXPorts projects with gradle-clojure, I need some help with my project. I created one using clj -A:new gradle-clj-app lyrion/cec and modified build.gradle and the main clj file as follows: https://gist.github.com/zilti/b08e73841f17a899e5730d901ca8ced1 Now my problem is that I get Exception in thread "JavaFX Application Thread" Exception in thread "main" java.lang.NoClassDefFoundError: clojure/lang/Var when trying to run it.

ajoberstar21:10:49

What task are you running when you get that message?

emccue17:10:08

I'm thinking of publishing some macros of mine as a library, but I kinda doubt people would find them useful

emccue17:10:56

specifically they are really simple macros that let you avoid a tiny bit of typing when making records

emccue17:10:35

is there any interest in something like this?

val_waeselynck17:10:48

I've made and then stopped using similar macros, as they weren't a big improvement on readability, and broke my IDE's refactoring

joelsanchez18:10:33

plus, it's a mystery how it would deal with namespaced keywords

emccue19:10:42

cool, solid nope

gfredericks20:10:54

plumbing has something similar

gfredericks20:10:04

I added it to the library and subsequently never used it

lwhorton00:10:25

i find leaning toward long-term readability is good for the health of a codebase, and most things outside of the core libs are different enough to be troublesome for readability

lwhorton00:10:14

save a few chars here and there, but takes you a few minutes (each revisit) to remember all your custom macros… worth it?