schmu VS Forscape

Compare schmu vs Forscape and see what are their differences.

InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
schmu Forscape
3 20
24 54
- -
9.5 5.3
2 days ago 7 months ago
OCaml C++
European Union Public License 1.2 MIT 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.

schmu

Posts with mentions or reviews of schmu. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-11-03.
  • November 2022 monthly "What are you working on?" thread
    25 projects | /r/ProgrammingLanguages | 3 Nov 2022
    Since the last time I posted, I finished implementing pattern matching for schmu. To make matching on multiple columns less confusing I also added a tuple syntax to the language (finally), which are treated as anonymous records in codegen. Since then, I'm trying to overhaul my memory management, as my RAII-like solution only worked for linear code. In my first big departure from OCaml semantics, I decided to implement mutable value semantics. The paper linked in the Val language introduction makes a strong case for value semantics and after watching a couple of talks by Dave Abrahams, I wanted to try see how it feels. By making mutability be transitive and explicit, it also fixes one of the (few) gripes I have with OCaml that an array can never be really const as it is a reference type (it's possible to enforce constness with modules, but that's not exactly lightweight, syntax wise). Implementing mutable value semantics was pretty straight forward on the typing side, but I'm still not completely done with the codegen. This is due to 1. Assumptions about immutability I made in a lot of places are now wrong, and I had to completely change the way I pass values to functions. 2. I had to implement reference counted arrays, which was more work than I thought it would be. There are still edge-cases coming up in testing from time to time. Yesterday I finally managed it work for tail recursion, yay! I'm looking forward to getting rid of unneeded reference count updates in the future, by moving them to compile time, at least for linear code, lobster style. That's also an excuse to read that Perceus paper again. For the rest of November, I want to enhance my module system a bit. In particular, I want to add signatures and allow locally abstract types. I hope to have this in place before December to do the Advent of Code in my language.
  • September 2022 monthly "What are you working on?" thread
    10 projects | /r/ProgrammingLanguages | 1 Sep 2022
    I'm still working on my toy language schmu, an ML-inspired language which uses LLVM as backend.
  • May 2022 monthly "What are you working on?" thread
    15 projects | /r/ProgrammingLanguages | 1 May 2022
    I spent the time off over the Easter break to write the first program in my language which is not an explicit test and ended up implementing Ray Tracing In One Weekend. It was very rewarding to see how usable the language is already.

Forscape

Posts with mentions or reviews of Forscape. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-05-01.
  • Why Wolfram uses square brackets for function calls
    1 project | /r/ProgrammingLanguages | 14 Jul 2023
    And if you like mathematical languages, you should check out Forscape :)
  • What's the best way to get my language stress tested?
    2 projects | /r/ProgrammingLanguages | 1 May 2023
    You can use the free GitHub runners to execute regression tests on Linux, Windows, and Mac. I recommend testing with 32bit compilation as well as 64bit- it has a way of smoking out bugs. You could take a look at the GitHub actions on my Forscape repo in the .github folder, although it's probably not the most idiomatic runner scripting, but it is a C++ project like yours.
  • Word Processor from scratch WYSIWYG with Web Assembly
    1 project | /r/cpp_questions | 13 Feb 2023
    When I was developing a typesetting text editor for Forscape, I struggled to get traction until stumbling on the following plan: 1) Implement the document data structure and get it rendering to the screen 2) Support non-mutating interactions, such as clicking to move the text cursor, selecting, copying, etcetera 3) Support mutating interactions, such as keyboard input, deleting, and pasting. You'll probably use the Command pattern to support undo/redo of mutations
  • Which phases/stages does your programming language use?
    5 projects | /r/ProgrammingLanguages | 5 Feb 2023
    The project is Forscape, although the language part is made a bit complicated because a goal of the project is creating an editor that supports typeset code with IDE interaction
  • [Weekly] What is everybody working on? Share your progress, discoveries, tips and tricks!
    2 projects | /r/QtFramework | 25 Dec 2022
    Finally adding multi-file support to Forscape. The frontend UI aspects are completed and I'm quite happy with the result. The app is Unicode heavy and QString's UTF-16 encoding is an annoyance; I would much prefer if Qt relied on std::string even. But the signal/slot mechanism lets you achieve some complicated behaviour with minimal complexity, and Qt looks great.
  • Build Qt Project w/GitHub Actions
    2 projects | /r/QtFramework | 3 Dec 2022
    Here's an example from a project. The first step installs Qt, the second step clones my repo on the runner, then a bit more setup with Conan, then building and running.
  • C++ Show and Tell - November 2022
    16 projects | /r/cpp | 1 Nov 2022
    I've been working on the Key CAS project (Imgur Screenshot), CAS being an acronym for Computer Algebra System, and "Key" a judiciously chosen title. This was my third time attempting CAS- this iteration was a huge improvement, but I still find it to be a damn hard problem. The GUI comes from the open source project Forscape, a scientific computing environment written in C++.
  • What Operators Do You WISH Programming Languages Had? [Discussion]
    4 projects | /r/ProgrammingLanguages | 21 Oct 2022
    It gets fun when you go beyond flat symbols and start supporting 2D notation, like fractions and matrices. Probably not worth the hassle for most things, but I think it makes matrix expressions more compact with better readability.
  • What Are You Working On? August 29, 2022
    1 project | /r/math | 29 Aug 2022
    I've been working on a mathematical programming language, Forscape. Currently it's entirely numerical, but I'm building a CAS separately which I hope to use in the language.
  • Forscape: what features are in your ideal scientific language?
    2 projects | /r/programming | 11 Aug 2022
    Forscape is a scientific computing language in development. It supports first-class matrices and common matrix operations. The language reached a milestone when it achieved similar performance to other prominent scientific langs on a computationally involved numerical problem from my graduate school years. At this point, I am unsure where the development should go next and I would appreciate advice. What do you find missing in scientific computing languages? What are essential features that you need/enjoy?

What are some alternatives?

When comparing schmu and Forscape you can also consider the following projects:

vult - Vult is a transcompiler well suited to write high-performance DSP code

boba - A general purpose statically-typed concatenative programming language.

GLhf - OpenGL Application Abstraction

xvm - Ecstasy and XVM

peridot - A fast functional language based on two level type theory

awesome-low-level-programming-languages - A curated list of low level programming languages (i.e. suitable for OS and game programming)

Argon - Argon programming language

Cwerg - The best C-like language that can be implemented in 10kLOC.

Vale - Compiler for the Vale programming language - http://vale.dev/

creed-tui - A tui editor with creed integration. WIP

kalk - Scientific calculator with math syntax that supports user-defined variables and functions, complex numbers, and estimation of derivatives and integrals