Email or username:

Password:

Forgot your password?
Mikko Koski ๐Ÿ‡ซ๐Ÿ‡ฎ

Hey people, what are the parts in Clojure that you find unfriendly?

"derived vars" is the number one thing that comes to my mind.

But what else comes to your mind? How do you work around them?

4 comments
Yogthos

@rap1ds I've settled on using refresh from tools.namespace and keeping my code reloadable

Mikko Koski ๐Ÿ‡ซ๐Ÿ‡ฎ

@yogthos same here, Iโ€™ve been using reloaded.repl, but recently Iโ€™ve felt that itโ€™s not feasible anymore. Since our codebase has grown, reload takes some seconds and it makes the feedback loop slow

Yogthos

@rap1ds ah I see, I tend to use reload for cases where protocols or defmethods change, and otherwise just send the individual forms for eval.

One way to speed it up could be to restrict the folders it watches for reload.

Go Up