Ulrik Sandberg
Ulrik Sandberg
According to the [json_path tests](https://github.com/gga/json-path/blob/master/test/json_path/test/json_path_test.clj), this is how to get an array: ``` clojure (at-path "$.foo[*]" {:foo ["a", "b", "c"]}) => ["a", "b", "c"] ``` Whenever I select an element...
In the [Emit](https://github.com/taylorSando/pedestal-todo/blob/master/beginners.md#emit) section, the text says "The default emitter can take a single parameter", but in fact that parameter is not optional. The text then states that using a...
The existing `new-task-handler` in [Transform](https://github.com/taylorSando/pedestal-todo/blob/master/beginners.md#transform) is: ``` clojure ;; transform function (defn new-task-handler [old-todo msg] (assoc old-todo :tasks (conj (:tasks old-todo) {:details (:details msg) :id (gensym "id")}))) ``` Would this...
I think the `src/logback.xml` should be placed in `test` or somewhere where it's not included in the released jar. Otherwise it's not deterministic which file is used on the classpath....
There's a println in update-at!: https://github.com/daveray/seesaw/blob/develop/src/seesaw/table.clj#L218 Must be an accident. Right?
I tried a query with a constant value 29M for the price, and it worked fine. When I made it a parameter named `?price` it appeared in the parameter area....
Formatted the code at the top as a block. Using single backquotes on inline code in table.