Dear Joyriders: joyride https://github.com/BetterThanTomorrow/joyride/releases/tag/v0.0.77 • Update SCI to 0.15.56, which JIT-compiles interpreted function bodies to JavaScript at runtime, speeding up loops and numerical code Thanks @borkdude for this amazing upgrade of SCI and also the PR for Joyride! ❤️
@me1445 asked for support for editscript. I have that working in nbb. We can do it in joyride too. Just needs a little tweak, but you can look at nbb how to make it work. It just needs a goog.math addition to the config now I believe
What’s editscript?
it's a library. https://github.com/juji-io/editscript it now runs from source in nbb
without changes to the lib
it's a lib to diff two pieces of code/edn
I’ll take a look at this later but why are you copying editscript’s sources?
Only way I know how to do it. Joyride doesn’t have any deps downloading facility…
so why are those files in there?
and why couldn't joyride have deps support. if we call out to the clojure on the system, we can get the classpath and add only the directories to the "classpath" - this is what I'm currently doing with squint and cherry too. only gitlibs or local/root support this way
I just added it as an example, no big reason around it. 😃
I hesitate to add Java as a dependency to Joyride. Not totally against it, but the reason I have never gone that way is that I hesitate about the Java dependency.
It's opt in right
But a workaround for now could be to just slurp + load the files from github in the right order
I removed the files and just slurp + load the files from github for now.