rhombus-brainstorming VS antlr-tsql

Compare rhombus-brainstorming vs antlr-tsql and see what are their differences.

rhombus-brainstorming

Brainstorming and draft proposals for Rhombus [Moved to: https://github.com/racket/rhombus-prototype] (by racket)
Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
rhombus-brainstorming antlr-tsql
7 1
151 7
- -
4.4 0.0
over 2 years ago over 4 years ago
Racket ANTLR
GNU General Public License v3.0 or later GNU Affero General Public License v3.0
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.

rhombus-brainstorming

Posts with mentions or reviews of rhombus-brainstorming. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2021-09-23.
  • My idea to achieve "lisp without so many parentheses"
    1 project | /r/ProgrammingLanguages | 22 Nov 2021
    The Racket team has been embarking on the Rhombus project with something they're calling shrubbery notation. The most recent Racket Con (https://con.racket-lang.org/) has several presentations on the topic, and there's a GitHub repo (https://github.com/racket/rhombus-brainstorming) tracking discussion. For what it's worth, I strongly dislike the heavy use of : in this notation.
  • Current brainstorming status of Rhombus (formerly Racket2)
    1 project | news.ycombinator.com | 26 Sep 2021
  • What drew you to Racket?
    3 projects | /r/Racket | 23 Sep 2021
    Once you become a skeptic, other warts began to appear such as the culture (1,2) of the language and one of the active academic members putting a lot of effort into changing the syntax. I concluded that I might as well spend my time just learning common lisp as then I might have a tool I could use. Everything is old in common lisp, and I am coming to recognize that as a good thing. Re-inventing the wheel is not always useful, and a few libraries that everyone uses means they probably function and build.
  • Thoughts on Lisp and Racket
    9 projects | news.ycombinator.com | 14 Aug 2021
    Matthew has been working on a [prototype](https://github.com/racket/rhombus-brainstorming/pull/163) that works on the current snapshot version of Racket.

    It is possible to use to write some basic things and most existing Racket libraries are usable with the prototype.

  • Racket v8.0
    7 projects | news.ycombinator.com | 14 Feb 2021
    It is called rhombus and there is an open discussion going on at https://github.com/racket/rhombus-brainstorming
  • On Lisp Syntax
    4 projects | dev.to | 26 Dec 2020
    rhombus-brainstorming

antlr-tsql

Posts with mentions or reviews of antlr-tsql. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2021-02-14.
  • Racket v8.0
    7 projects | news.ycombinator.com | 14 Feb 2021
    I'm currently working on a TSQL parser in Racket because I want to do some code analysis on a few huge stored proc files (some of which are over 30k lines of code). I didn't want to use existing parsers because the trees they produce are monstrous [1,2]. Tried doing some fancy grep work, but it was giving me way too many false matches and wasn't as sound as I would have liked.

    I could use any language with reasonable parsing tools, but I like how flexible Racket is about it. Currently using megaparsack[3], but there are many different parsing tools available depending on your needs. Also, once you have done parsing, there are lots of convenient ways to manipulate the parse trees into whatever shape you need.

    I also think Racket has a lot of tooling that would make it great for large code bases.

    -It has great offline docs (scribble) which don't force you to use some comment based system like JavaDoc.

    -It has a very powerful and fast contract system that can be attached either at definition time like most languages or only at module boundaries.

    - While it has a macro system, it has a really good macro debugger (it lets you view how the code is iteratively expanded with options to show/hide the expansion of various macros). Since even non-hygienic macros deal with syntax objects and not just datums, macros don't even screw up error messages since line/column info is preserved!

    - You compile to executables unlike most scripting languages.

    - You can write some code with types and some with them, but unlike say TypeScript the boundary between typed and untyped code is sound since contracts are used to verify these boundaries.

    - A lot of the time you don't even need types because most names (i.e. variables and functions) are verified at compile time (to be more specific, at macro expansion time).

    - It has very aggressive sandboxing tools that let you control not only what names are visible to some untrusted code, but also control how much memory it uses without creating a new process.

    - Safer global variables in the form of parameterize. Very convenient for stuff like when you need to temporarily change the stdout for a single call.

    [1]: https://github.com/datacamp/antlr-tsql/blob/master/antlr_tsq...

What are some alternatives?

When comparing rhombus-brainstorming and antlr-tsql you can also consider the following projects:

magic-racket - The best coding experience for Racket in VS Code

racket - The Racket repository

language-server-protocol - Defines a common protocol for language servers.

JSqlParser - JSqlParser parses an SQL statement and translate it into a hierarchy of Java classes. The generated hierarchy can be navigated using the Visitor Pattern

ActivityLog2 - Analyze data from swim, bike and run activities

racket-langserver

megaparsack - Racket parser combinators inspired by parsack and megaparsec

imgmac

history-of-lisp-parens - a history of Lisp's most notorious artifact, parentheses

drbayes - Dr. Bayes