sicmutils VS clerk

Compare sicmutils vs clerk and see what are their differences.

Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
sicmutils clerk
13 22
750 1,697
0.0% 1.6%
0.0 8.5
about 1 year ago 3 days ago
Clojure Clojure
GNU General Public License v3.0 only ISC License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

sicmutils

Posts with mentions or reviews of sicmutils. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-01-26.
  • Sicmutils: Computer Algebra, Physics and Differential Geometry in Clojure
    1 project | news.ycombinator.com | 19 Jan 2024
  • mentat-collective/emmy: The Emmy Computer Algebra System.
    2 projects | /r/Clojure | 26 Jan 2023
    They seem to be in the middle of transitioning from the old repo.
  • Ask HN: What Is the SICP of Physics?
    1 project | news.ycombinator.com | 17 Jun 2022
    There are some good resources here including some nicely formatted HTML versions of the book: https://github.com/sicmutils/sicmutils/wiki/SICM-and-FDG-Lea...

    ^ The Github repo contains a Clojure version of the Scheme library used by the book.

  • Space Math
    2 projects | news.ycombinator.com | 18 Apr 2022
    If you want to try this out, give the sicmutils Computer Algebra System a go (I’m the maintainer). Repo lives here: https://github.com/sicmutils/sicmutils

    The library works in the browser as well, so interactive TeX rendering from Clojure symbolic expressions and functions is available at the quickstart page here: https://nextjournal.com/try/samritchie/sicmutils

  • Math notation library for CojureScript
    3 projects | /r/Clojure | 29 Mar 2022
    I am the maintainer of the "sicmutils" computer algebra system in Clojure, and I think that you'll find it very nice for your project: https://github.com/sicmutils/sicmutils
  • A, perhaps, naive question on (Common) Lisp
    2 projects | /r/lisp | 29 Mar 2022
    https://github.com/sicmutils/sicmutils is a really interesting development in the direction(s) you stated in b. Since terms can be rendered in various ways (latex, js, etc.), they can be embedded in documents, web pages, etc. You can go from symbolic expressions to animated dynamic systems with relevant formulae.
  • Literate programming is much more than just commenting code
    15 projects | news.ycombinator.com | 21 Mar 2022
    - multiple stories about the same piece of code, but all with the ability to IMPORT the story as a library

    I've been writing sicmutils[0] as a "literate library"; see the automatic differentiation implementation as an example[1].

    A talk I gave yesterday at ELS demos a much more powerful host that uses Nextjournal's Clerk to power physics animations, TeX rendering etc, but all derived from a piece of Clojure source that you can pull in as a library, ignoring all of these presentation effects.

    Code should perform itself, and it would be great if when people thought "LP" they imagined the full range of media through which that performance could happen.

    [0] sicmutils: https://github.com/sicmutils/sicmutils

    [1] autodiff namespace: https://github.com/sicmutils/sicmutils/blob/main/src/sicmuti...

    [2] Talk code: https://github.com/sritchie/programming-2022

    [3] Clerk: https://github.com/nextjournal/clerk

  • Physics in Clojure: Elliptical Paths
    3 projects | news.ycombinator.com | 15 Mar 2022
    Hey, so fun to see this here! These demos feature work from https://github.com/sicmutils/sicmutils and the newly maintained-by-me Mathbox library.

    I’m around and happy to answer any questions about the library, future plans, etc.

  • Neural network capable of solving university-level Mathematics problems at scale
    1 project | news.ycombinator.com | 8 Jan 2022
    Give my SICMUtils computer algebra system a look as well, if you like Lisp / Clojure: https://github.com/sicmutils/sicmutils

    Works on the web too, which is a big boost for sharing work.

  • MIT Scheme on Apple Silicon
    7 projects | news.ycombinator.com | 28 Dec 2021
    It is good enough! Almost all code forms from the book live in the tests (see the FDG directory[0], for example), and there are a few nice environments like Nextjournal[1] where everything from the books works in the browser.

    The Clojure port is quite fast, faster than the original for all benchmarks GJS has sent me, and more fleshed out. (That will change, as I've been pushing bugfixes and performance improvements back upstream as I go, as a meager gift to GJS for making this huge, amazing library in the first place.)

    I actually wrote to GJS this morning asking for instructions on how to compile the original "scmutils", since I have the same problem. He responded saying he'll get back to me this afternoon, so I'll post here once I have details.

    If you are still interested in getting the books going with MIT-Scheme, I put a decent amount of work into the exercises using the original codebase here[2], including a dockerized version of mit-scheme[3] and the scmutils package[4] that might be useful.

    - [0] https://github.com/sicmutils/sicmutils/tree/main/test/sicmut...

    - [1] https://nextjournal.com/try/samritchie/sicmutils/

    - [2] https://github.com/sicmutils/sicm-exercises

    - [3] https://hub.docker.com/r/sritchie/mit-scheme

    - [4] https://hub.docker.com/r/sritchie/mechanics

clerk

Posts with mentions or reviews of clerk. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-04-07.
  • The Current State of Clojure's Machine Learning Ecosystem
    4 projects | news.ycombinator.com | 7 Apr 2024
    Something I really like in the Clojure data science stack that isn't mentioned is Clerk* — an interesting take on notebooks. I think it's a good gateway into Clojure for those coming from a Python or R background.

    *https://clerk.vision/

  • Improve Jupyter Notebook Reruns by Caching Cells
    5 projects | news.ycombinator.com | 19 Dec 2023
  • Critique of Lazy Sequences in Clojure
    5 projects | news.ycombinator.com | 7 Aug 2023
    Clojure's lazy sequences by default are wonderful ergonomically, but it provides many ways to use strict evaluation if you want to. They aren't really a hassle either. I've been doing Clojure for the last few years and have a few grievances, but overall it's the most coherent, well thought out language I've used and I can't recommend it enough.

    There is the issue of startup time with the JVM, but you can also do AOT compilation now so that really isn't a problem. Here are some other cool projects to look at if you're interested:

    Malli: https://github.com/metosin/malli

    Babashka: https://github.com/babashka/babashka

    Clerk: https://github.com/nextjournal/clerk

  • Moldable Live Programming for Clojure
    1 project | /r/hypeurls | 18 Jun 2023
    2 projects | news.ycombinator.com | 18 Jun 2023
  • Morse, an open-source interactive tool for inspecting Clojure
    2 projects | news.ycombinator.com | 28 Apr 2023
    I'm really enjoying using Clojure with Clerk: https://github.com/nextjournal/clerk

    It's a bit like a Jupyter notebook, but you get to use your own editor, you still have a normal Clojure REPL, it's stored in git like "normal" code, etc.

  • Adding Clerk to a Leiningen Project
    1 project | /r/Clojure | 8 Mar 2023
    Hey all, I'm new to Clojure and would appreciate your help with a few questions I had getting started. I'm using Leiningen to setup my projects and manage my packages as recommended in Brave & True. So far I've been able to add any dependencies I've needed without much issue, Neanderthal, tech.v3.dataset, etc. I'm interested in data science, and was hoping to set up a notebook environment to be able to quickly produce data visualizations on the fly since I'm used to working with Jupyter. I came across Clerk, but I'm having some trouble adding it to my project. Here's what I tried:
  • Clojure Turns 15 panel discussion video
    24 projects | news.ycombinator.com | 13 Feb 2023
  • The program is the database is the interface
    1 project | news.ycombinator.com | 13 Feb 2023
    Clojure also has Clerk, which is like Jupyter, but more befitting Clojure's overall philosophy: https://clerk.vision/
  • Clojure conventions for writing complicated mathematical calculations?
    2 projects | /r/Clojure | 20 Jan 2023
    If I were working long enough with gnarly enough equations I'd look into using Clerk to visualize the equations with MathJax or similar, probably following Sam Ritchie's footsteps with SICMUtils. To me this is the true readability answer: lisp notation for precise implementations, compiling to a rich & familiar visual representation.

What are some alternatives?

When comparing sicmutils and clerk you can also consider the following projects:

sicm-scheme-exercises - Exercises and notes on Structure and Interpretation of Classical Mechanics.

next-auth - Authentication for the Web.

ChezScheme - Chez Scheme

portal - A clojure tool to navigate through your data.

clj-maxima - Maxima as a clojure library

libpython-clj - Python bindings for Clojure

programming-2022 - Talks at the <Programming> 2022 Conference in Porto, Portugal

JD Esurvey - JD eSurvey is an open source enterprise survey web application written in Java and based on the Spring Framework. Check out the tutorial videos to find out more about the application features.

Algebird - Abstract Algebra for Scala

leo-editor - Leo is an Outliner, Editor, IDE and PIM written in 100% Python.

fdg-book - Executable version of Functional Differential Geometry.

pytudes - Python programs, usually short, of considerable difficulty, to perfect particular skills.