clojurescript

ClojureScript, a dialect of Clojure that compiles to JavaScript http://clojurescript.org | Currently at 1.10.879
Idan Melamed 2021-01-09T11:00:55.242300Z

Hi all, About a year ago I created this https://hahimur.com/ for me and my friends to share predictions foe the upcoming Euro 2020, now Euro 2021. I'd like recreating this in clojurescript. A couple of questions... From what I see Reagent and Re-Frame are kind of a consensus... I'm guessing they will be OK here. Any reason not to use them? How do I include a UI Framework?

p-himik 2021-01-09T11:03:50.242400Z

> Any reason not to use them? Depends on you. Might be 0 or plenty. I would just go through Reagent and re-frame issue trackers and see if there's anything affecting me. > How do I include a UI Framework? Reagent has an extensive documentation and examples on the topic.

❤️ 1
william 2021-01-09T11:23:37.244900Z

good morning, I set up some instrumentation for a function in a cljs-shadow-cljs using emacs. When the function is executed, I get my error in the minibuffer, but not properly formatted. I could also do cider-eval-print-last-sexp and have the result in the buffer, but again cider is not able to format if properly with cider-format-region. How do you format spec errors?

Idan Melamed 2021-01-09T11:24:55.245Z

Thanks, I'll look it up in the docs

william 2021-01-09T15:39:03.246200Z

I'm using expound, doing (set! s/*explain-out* expound/printer) in one of my files, but not much seems to change

william 2021-01-09T18:25:05.247100Z

edit: it turns out that expound doesn't immediately work with shadow-cljs and I'm trying to figure why