Jeroen van Dijk
Jeroen van Dijk
> Bb supports protocols and reify on protocols, but we're dealing with serialized objects from bb pod which might complicate things since you can't serialize functions? Ah yeah, forgot about...
I think supporting the protocol is not too complicated after all (see #57). I have some issues in the tests (see CI results of #57). At the moment I'm not...
Ok it seems the behaviour has changed or I had the wrong observation before. I'm not sure. I'll update this issue as I gain more experience with this middleware
Sorry for the noise, the behaviour is still there, not sure why my patch behaves differently than the original code [here](https://github.com/RickMoynihan/nrebl.middleware/blob/53a193a719b3da5413cca2fd81256bde26210529/src/nrebl/middleware.clj#L27)
What about having a convenience function accessible from the REPL namespace that takes a ring-app as argument and starts a server? E.g. ``` (start-app #'my-namespace/my-ring-app) ``` This function would add...
(Dutch, really? haha. Klinkt goed :) ) I'll look into the --pretty option. That might be good enough. I'll just start working with it and comment here as soon as...
In my opinion the apply version isn't that ugly. Especially since we would use it in scripts only. Also it can be made slightly less ugly: ```clojure (apply sh-str* "git"...
Another wild idea (similar to planck), generate a binary via GraalVM that can 1) evaluate ClojureScript by evaluating it in self-hosted Clojurescript in Graal's ScriptEngineManager 2) and precompile it with...
Sorry I wasn't clear. 1) Yes, so we can have a stand alone js engine of around 74mb. This thing can run any javascript file (I assume). The full example...
Good question, not sure actually. When Closh would be used as a dependency to something else and there are conflicts in the dependencies AOT might give issues (e.g. clojure version),...