Juho Teperi
Juho Teperi
That is interesting implementation. It could work. One note: it would be best to do get, assoc and dissoc in one "transaction": e.g. ``` clj (defn abortable-async-map [f c] (let...
Ring used to add content-type to the request map: https://github.com/ring-clojure/ring/blob/master/SPEC#L82 As it has been deprecated, maybe new Ring no longer does this? Muuntaja reads request content-type first and then reads...
@CmdrDats Check https://github.com/metosin/muuntaja
Somewhat related: https://github.com/ngrunwald/ring-middleware-format/commit/6f2930789c1bf43c4001bc4fb19fcab284884a99 and https://github.com/ngrunwald/ring-middleware-format/issues/32
After two years jsass finally supports Apple Silicon: https://gitlab.com/jsass/jsass/-/releases/5.11.0 (And while jsass 5 and libsass are still deprecated, there is new jsass 6 coming up.)
This is because boot-test runs tests in a new pod each time. This means that all namespaces need to be compiled each time, instead only the changed ones. Alternative (used...
I've already worked on this, but React 18 requires other changes also: https://github.com/reagent-project/reagent/pull/554
1.4 is what I'm using: ``` (defn parse-args "Given React style arguments, return [props-map children] tuple." [args] (if (map? (first args)) [(first args) (rest args)] [nil args])) (defn foobar [&...
- Hiccup performance is horrible, but using a macro support the format fully is complex (see Sablono). UIx2 `$` is much simpler. - Reagent can't differentiate between Reagent components (cljs...
TODO: Controlled inputs don't work inside defc / or just dereferencing ratoms values.