Miguel Ping

Results 19 comments of Miguel Ping

Cool, I did a little research should be a matter of passing a js map / `ReadableMap` to the class that builds the pickers and setting min/max date. Thanks for...

I'm using 5.0.0, I dont want to use codepoint 133 as linebreak. I am parsing json and if I have that codepoint on a string, it will break and parse...

@ztellman any update on this?

I believe the problem is in `compojure.api.coercion.spec/coerce-request` implementation of `Coercion` protocol. I think `st/conform` should be called upon the `coerced` value, not the original one. Here's the code, with my...

I've written on this subject exactly because it was very hard for me to set up an editor. I'd be happy to contribute, with your guys' guidance. Here's what I...

Ring has support for async middleware through asynchronous handlers: https://github.com/ring-clojure/ring/wiki/Concepts#handlers. Can't this be supported through that? It's a matter of supplying a 3-arity middleware fn, I guess.

Here's my attempt in case someone wants to quickly hack it: Go to `metrics.ring.instrument`: ``` (defn- time-request [thunk metrics request] (let [{:keys [active-requests requests responses schemes statuses times request-methods]} metrics]...