Karsten Schmidt

Results 212 comments of Karsten Schmidt

thanks @thheller - just pushed 0.2.3 release

Hi @Robsteranium - am so sorry, keep forgetting to update the readme for hdom and to deprecate this `create-hdom-app` skeleton. I will make a note to do one more round...

Hey @nkint - just checked out your fork and tried to build it, but the `data` import is missing (forgot to check in the file?). Am on the road this...

Will check it out and report back asap!

Instead of wildcards you could define a new validator, smth like this: ``` clojure (defn all* [pred msg] (v/validator (fn [_ v] (every? pred (seq v))) msg)) (def all-keywords (all*...

Hi @martinklepsch - this is a case of maybe unfortunate wording... when the docs talk about "applying to a key" it actually means "applying to a key's value"). Will have...

To elaborate a bit more _why_ there isn't any key validation itself. It's simply that I often just use this lib to validate `defrecords` and basically define a schema for...

Just thinking loud... how about adding a special key to a validation map which specifies key validators for that level, e.g. ``` clojure (v/validate {"abc" {:stat "efg"}} {::v/keys {:* (v/string)}...

Why would renaming `:*` break validators? Unless I'm missing something, this should only break existing validation maps in user code, but not the validators themselves... Another, possibly cleaner, alternative to...

Hi @arnaudchenyensu - sorry not much time to go into more detail right now, but I've prepared a new (more minimal) example with some hopefully helpful comments: Demo: https://demo.thi.ng/umbrella/rdom-klist/ Source:...