Max Rothman
Max Rothman
Would it be out-of-scope for this ticket to request that the other payout triggers (created, failed, etc.) get added as well?
This should be possible by giving the classes a `__reduce__` method. See [this StackOverflow question](http://stackoverflow.com/questions/11658511/pickling-dynamically-generated-classes) and [the Python docs](https://docs.python.org/2/library/pickle.html#pickling-and-unpickling-extension-types) for more info.
I might be interested in contributing a patch for this issue if someone could help orient me in the codebase so I can find the callable that generates resources. @jamesls...
@jamesls ping. Any update on this?
@jamesls ping
I'm working on a patch for this. Is there any way currently that given a resource object you can get a reference to the ServiceContext that was used to create...
@jamesls any insight on the above question?
Ping. Is there any way I can get some support on this? I've expressed interest in submitting a patch, but I have some questions (above).
Just throwing in my 2c, I've been calling this fn `to->` because it can be used to adapt thread-last-style fns (e.g. `map`) to thread-first style: ```clojure (defn to-> "Adapt f...
You're right, upon closer inspection, `to->` only allows you to traverse one level of nesting. For example, `(update {:a [1 2 3]} :a to-> map inc)` works fine, but `(update...