Tim Clemons

Results 8 issues of Tim Clemons

Would it be possible to add support for the `org.threeteen.extra.scale.TaiInstant` and conversion between it and the `UTC` time basis? The assumption would be that the user would have added the...

enhancement
help wanted
community

Having an example or two of how to create preconditions, including `onFail` actions, would be extremely helpful.

First off, thank for providing these tools. They've been instrumental in my current work. I'd like to propose a feature request whereby type-based conversion with `encode` and `decode` can accommodate...

Given a setup like the following: ``` (s/def ::epoch (s/int-in Long/MIN_VALUE Long/MAX_VALUE) (s/def ::nano (s/int-in 0 (Math/pow 10 9))) (s/def ::time-basis #{:UTC :TAI}) (s/def ::instant (st/spec {:spec (s/keys [::epoch ::nano...

I have several closely-related libraries where it would be nice to have a common set of docs for them. I'm currently using `lein sub codox` to generate these docs but...

It would be useful to have client-side SSE processing work with both Clojure and ClojureScript. Our use case is a service that monitors an SSE stream from another service and...

Proposed fix for issue #38. To facilitate working with context stacks, changed the `render` function to evaluate the second argument to determine if it is an existing context stack (for...

Given the following params: ``` clojure {:history [{:text "foo"} {:text "bar}] :prefix "item:" :format-text (with-meta (fn [text context render] (clojure.string/uppercase (render text context))) {:stencil/pass-render true})} ``` And this template: ```...