Jeremy Heiler

Results 8 issues of Jeremy Heiler

@technomancy I see that you've committed directly to master on this project. Does this project need a new maintainer? Rest in peace, Raynes.

Would you consider a patch that introduces a `:web-inf-resource-paths` key? This would allow someone to put arbitrary files inside `WEB-INF`. This is where you would put things that need to...

Long story short, I am using clj-http HeaderMap (which uses def-map-type) via Storm. However, I am getting a `java.io.NotSerializableException` when it's being serialized. Would you be interested in a patch...

It might be useful to split the conversion functions so that its easier to compose them and map over their results.

Current: ``` clojure (w/dash->upper-camel "i-foo") ;=> "" ``` Want: ``` clojure (w/dash->upper-camel "i-foo") ;=> "IFoo" ```

Current: ``` clojure (clojure.string/lower-case (w/camel->dash "SQLFoo")) ;=> "s-q-l-foo" ``` Want: ``` clojure (clojure.string/lower-case (w/camel->dash "SQLFoo")) ;=> "sql-foo" ``` This must remain the same: ``` clojure (clojure.string/lower-case (w/camel->dash "IFoo")) ;=> "i-foo"...

If you use tx ids for start and end with `read-log`, it never ends since it compares the `end-tx` with `t`, which is (effectively) always smaller. https://github.com/onyx-platform/onyx-datomic/blob/0.10.x/src/onyx/plugin/datomic.clj#L200 This leads me...