Justin Tirrell
Justin Tirrell
I think the problem is this line https://github.com/jeluard/hipo/blob/1c107002bc5d338050046e9d8be2d8eba3fa9187/src/hipo/core.clj#L21 Specifically, in `(hc/compile-create ~v ~m))`, the unquoted `v` is a symbol and `compile-create` cannot handle a symbol. This seems to be causing...
Took me a bit of playing around at first but here is a working example: ``` clojure (defmigration add-data-to-videos (up [] (alter :add (table :videos (int :duration) (double :frame_rate)))) (down...
Just wondering if there's been any further thought on this. I also am in a situation where I'd like to use an interceptor library instead of rolling my own, and...
One thing I've been wondering: does the interceptor pattern inherently imply that the context should contain a `:request` key, "make a request" then return with a `:response` key? Are these...
Also note that the `:chsk/recv` wrapping can be disabled by setting `wrap-recv-evs?` to false in the options map passed to `make-channel-socket!` on the client. Here is the relevant lines in...
Hi I'm sorry if this isn't on topic but since there is a range of dependency issues discussed here I thought it would be a good place for mine, when...
@jdf-id-au your sketch has been working good for me. I have [forked your gist](https://gist.github.com/jjttjj/6bc0b62ef1dbf29c1c69ea22f8eb7f55) to make a couple small changes and add a deps.edn, so that it can be used...
Currently, since our `client` unqualifies all incoming messages, all higher level functionality (for example, synchronous requests) must use unqualified keywords on the incoming message, but qualified keywords on the request,...
Thanks for the PR! Actually I think I prefer to get rid of the pom.xml entirely and just use `deps.edn` to manage deps. The pom file was leftover from an...
I will release a jar to clojars in a week or so when things stabilize a little bit. In the mean time would something like this work: https://github.com/RickMoynihan/lein-tools-deps ?