Dominic Monroe

Results 195 issues of Dominic Monroe

I opened firefox from terminal, and when I hit q I get this: ``` Extension error: Error: Attempt to postMessage on disconnected port moz-extension://b9ea2c28-6460-4bc6-ba94-0b91439a1572/src/background.js 6 [[Exception stack @moz-extension://b9ea2c28-6460-4bc6-ba94-0b91439a1572/src/background.js:6:16 Current stack...

``` (def a (s/->source (java.util.concurrent.LinkedBlockingQueue. [1 2 3]))) (def b (s/batch 100 1 a)) (s/close! a) (s/description a) ;; {:type "java.util.concurrent.LinkedBlockingQueue", :buffer-size 0, :source? true} (s/description b) ;; {:pending-puts 1,...

bug

Just trying to integrate this into vim. To do so I need to configure an errorformat. It would be useful if grape could produce contextless output like grep, so the...

enhancement
help wanted

```clojure user=> (spec-tools.parse/parse-spec (s/nonconforming int?)) {:type nil} ``` I believe this defmethod is correct though, `s/nonconforming` only needs to delegate immediately to "pass through" the spec it is wrapping. ```clojure...

clj-time is excluded from ring-swagger, and ring-core no longer depends on clj-time, so you don't get clj-time on the classpath at all, resulting in an exception. Repro: ``` ❯ clojure...

This causes warnings on the host page console. The following lines probably should check that :x-frame-options value is truthy (and default to true) instead. The docs should also be updated...

I dropped the swagger section for now. I think this needs more consideration in the config.edn-driven world.

So you are unable to, e.g. make application/json a premium-only feature, or only available to internal clients.

For some reason, `representation` is `nil` rather than a value for "application/json". I suppose it is related to https://github.com/juxt/yada/blob/cea98cc6f5419c5ef0001b7fec0ce656af70cbd6/src/yada/handler.clj#L52-L56 which is unfortunately a non-extensible set.

Generally, you don't provide a different schema for `:post` and `:get` of `[:parameters :path]`, so it makes sense to define this at the top-level. I'm not sure there's a valid...