Fork me on GitHub
#announcements
<
2021-04-08
>
Sam Ritchie15:04:36

SICMUtils 0.18.0 is out! As of today, the library can run everything from Sussman and Wisdom’s Functional Differential Geometry: http://xahlee.info/math/i/functional_geometry_2013_sussman_14322.pdf As a wild example that I don’t have my head around yet (thanks for the code, GJS!), here are Einstein’s field equations in Clojure: https://github.com/sicmutils/sicmutils/blob/master/test/sicmutils/fdg/einstein_test.cljc#L40 This is a big milestone toward a complete port of the original, massive scmutils library from Gerald Sussman. There are a couple of large pieces to go, mostly around making the simplifier smoking fast… but the end is in sight. Once the port is done I’ll turn full focus toward expanding the system’s ability to drive animations in the browser, and generate beautiful Vega charts during interactive investigations of these physical systems and calculus on manifolds. Here’s the CHANGELOG for the release: https://github.com/sicmutils/sicmutils/blob/master/CHANGELOG.md#0180 Come discuss in #sicmutils if any of this seems interesting!

🎉 63
lightsaber 15
🚀 18
👏 9
raspasov16:04:09

This looks very impressive.

🙏 3
Sam Ritchie16:04:59

Happy to answer any questions or be a guide for the library; there really is a ton here. CLJDocs are having trouble building, but here’s at least a skeletal overview of some of the library: https://cljdoc.org/d/sicmutils/sicmutils/0.18.0/doc/introduction

Setzer2217:04:38

For those using malli and missing spec's instrumentation, I wrote this small thing today (very early version!) 😄 I plan to continue improving it in the following weeks as I use it: https://github.com/setzer22/malli-instrument

👍 42
🎉 12
donyorm20:04:30

Releasing an alpha version of Clem -- a project to make clojure exception messages easier to understand, using a tool which integrates with users' REPLs. It's especially targeted at beginners, but I could use feedback from more experienced developers as well. Gitlab: https://gitlab.com/unc-app-lab/clem-repl ClojureVerse write up: https://clojureverse.org/t/introducing-clem-the-clojure-error-mediator/7468

🎉 48
Umur Gedik20:04:43

Does it also helps with the clojurescript stack traces?

donyorm20:04:28

Not working with ClojureScript yet, obviously somewhere we'd like to go, but the tooling is different so it will be a fairly substantial project

Umur Gedik20:04:56

I see thanks anyway ^^

donyorm20:04:54

@U050ECB92 Dang that's exactly what we did, down to https://clojurians-log.clojureverse.org/clojure/2018-03-28/1522264623.000274 describing the infrastructure. I don't believe the original creator of Clem was active on this slack when it started, but definitely great minds thinking a like there :)

em05:04:39

Very cool stuff! Is there any reason why this needs to be an online hosted server, rather than a downloadable local database of error messages? I'd imagine it's just useful for now to community outsource types of exceptions/error patterns etc., but to actually have people use this tool in more serious environments it should probably be entirely offline.

3
donyorm18:04:45

@UNRDXKBNY Thanks! And that would probably be very useful, but at the moment the database simply doesn't exist. Part of why I'm sharing this with the community is Clem not only provides messages on errors, but also adds them to the database so we know they exist. It'll need a bit of time to build up a useful database. It's simply a datomic database, so I imagine once we have a somewhat usable basis of errors we could allow downloading it. (You can also try running your own instance, though it's really only set up to do that for dev setups)