Damian Hryniewicz
Damian Hryniewicz
Hello! Here in Magnet we noticed that figwheel complained about a path not being on classpath despite the that that it was held in `resources/` that were added to resources...
Implement a namespace for exporting a PDF or PDDocument to a BufferedImage [Re #55] This PR also slightly changes the prerequisites for split function Previously it only allowed strings as...
First of all - kudos for this library! It proves to be very useful to our project in Magnet. However we need an export to image functionality that Apache's PDFbox...
`merge-configs` function, deeper down, uses a `pick-prioritized` function that, among other scenarios, picks a `non-nil` value over a `nil` value. I suppose this is to deal with k-v pairs missing...
`:count` is placed in `(-> fsm ::tk/process)` and not `fsm` itself. Without the change: ```clojure (->> ["abaaabc" "aaacb" "bbbcab"] (map (partial reduce tk/apply-signal count-ab)) (map :count)) Error printing return value...
```clojure (json-schema/transform (set (keys {:a 1 :b 2}))) => {:enum [:b :a]} (s/def ::available-actions (set (keys {:a 1 :b 2}))) => :dev/available-actions (json-schema/transform ::available-actions) => {} ``` The problems seem...
My particular use-case is marking some enums as deprecated. Like in here: https://github.com/json-schema-org/json-schema-spec/issues/1386 But I'm sure there should be a more generic solution. https://github.com/json-schema-org/json-schema-spec/pull/737 https://json-schema.org/draft/2020-12/draft-bhutton-json-schema-validation-01#name-deprecated
```clojure (defmulti event-type :action) (s/def :event.payload.add/action #{:add}) (s/def :event.payload.add/payload int?) (defmethod event-type :add [_] (s/keys :req-un [:event.payload.add/action :event.payload.add/payload])) (s/def :event.payload.result/action #{:result}) (s/def :event.payload.result/payload nil?) (defmethod event-type :result [_] (s/keys :req-un...