Valentin Waeselynck
Valentin Waeselynck
I'm getting started with ClojureScript development and this sample is quite a useful resource to set up a development environment. However, I think it would be also good to add...
Apparently there is no way to customize the text of the upload button (currently 'Select File'), would be nice to have an option for that (especially when you have i18n...
The reader should understand: - what information is created and accessed by what processes, and where it's stored. - how spy / letsc / defsc work
In order to make breakpoints available to non-blocking execution environments such as ClojureScript, the macro-expansion of `sc.api/brk` needs to be customized by some green-threading mechanism. Currently, the most popular /...
Wondering if you'd be open to a function `index-and-map-by` generalizing over `index-by` like the following: ```clojure (defn index-and-map-by [kf vf coll] (into {} (map (fn [x] [(kf x) (vf x)]))...
It may be interesting to offer the user the choice 2 implementations: atom-based and agent-based (currently there's only atom-based). Potential benefits: 1. In the atom-based implementation, when the `.transact()` or...
Would be nice to have a Java wrapper, maybe something like a datomock.java.Datomock class with `mock` and `fork` static methods
## The problem I'm observing some Reflection Warnings at the REPL when calling the `s-de/fn` macro, e.g ```clojure (do (set! *warn-on-reflection* true) (s-de/fn [(x ?y)] (+ x (or y 0))))...
It looks like this library does non-trivial key rewriting when (de)-serializing JSON: transforming strings to keywords, kebab-case, etc. Could we opt out of this? When it comes to API wrappers,...