stdVBA VS peg-bootstrap

Compare stdVBA vs peg-bootstrap and see what are their differences.

stdVBA

VBA Standard Library - A Collection of libraries to form a common standard layer for modern VBA applications. (by sancarn)
Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
stdVBA peg-bootstrap
67 6
254 74
- -
8.5 0.0
4 days ago over 13 years ago
VBA JavaScript
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.

stdVBA

Posts with mentions or reviews of stdVBA. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-11-15.

peg-bootstrap

Posts with mentions or reviews of peg-bootstrap. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-11-07.
  • Writing a Compiler is Surprisingly Easy (part 1)
    5 projects | news.ycombinator.com | 7 Nov 2023
    a problem that a lot of these series run into is that the author runs out of steam before they finish writing them. crenshaw's otherwise excellent series suffers from this, for example

    so far the author of this one has only written the first chapter

    i've written a few didactic compilers that are complete enough to compile themselves, though nothing else

    https://github.com/kragen/stoneknifeforth (from a forth-like language to an i386 linux elf executable)

    https://github.com/kragen/peg-bootstrap/blob/master/peg.md (from a peg language description with semantic actions to javascript)

    http://canonical.org/~kragen/sw/urscheme (from a subset of scheme to at&t-syntax i386 assembly)

  • PEGs in a PEG
    1 project | news.ycombinator.com | 28 Jun 2023
  • Pegs in a Peg
    1 project | news.ycombinator.com | 5 May 2023
  • A complete compiler and VM in 150 lines of code
    4 projects | news.ycombinator.com | 16 Jul 2022
    That's powerful enough to conveniently write, for example, a numerical root finding program for an arbitrary arithmetic expression.

    But I think that within a complexity budget of 150 lines of code you can maybe be even more ambitious than that.

    The example compiler in https://github.com/darius/parson/blob/master/eg_calc_compile... is a bit more stripped down than that, but in its 32 lines of code it compiles arithmetic assignment statements to a three-address RISC-like code (though using an unbounded number of registers). https://github.com/darius/parson/blob/master/eg_calc_to_rpn.... is a 16-line version that compiles the same language to a stack machine like your tutorial example.

    In 66 lines of code in https://github.com/kragen/peg-bootstrap/blob/master/peg.md I wrote an example compiler which compiles a PEG grammar into a JavaScript parser for that grammar. Admittedly those 66 lines do not include an implementation of JavaScript to run the code on. It compiles the language it's written in.

    In 132 lines of code in https://github.com/kragen/stoneknifeforth/blob/master/tinybo... I wrote an example compiler which compiles a crippled Forth dialect into i386 machine code, including an ELF header so you can run the result. It also compiles the language it's written in. It also doesn't include an i386 emulator to run it on.

    In 83 lines of code in http://canonical.org/~kragen/sw/dev3/neelcompiler.ml Neel Krishnaswami wrote a compiler from the untyped λ-calculus to a simple assembly language for a register machine. It also doesn't include an implementation of the assembly language.

    In 18 lines of code in http://canonical.org/~kragen/sw/dev3/meta5ix.m5, a simplification of META-II, I wrote a compiler from grammar descriptions to an assembly code for a parsing-oriented virtual machine. It compiles the language it's written in. A Python interpreter for the machine is in http://canonical.org/~kragen/sw/dev3/meta5ixrun.py (109 lines of code) and a precompiled version of the compiler-compiler for bootstrapping is in http://canonical.org/~kragen/sw/dev3/meta5ix.generated.m5asm.

    A slightly incompatible variant of Meta5ix which instead compiles itself to C is in http://canonical.org/~kragen/sw/dev3/meta5ix2c.m5 (133 lines of code, depending on how you count). (No C compiler is included.) The precompiled C output for bootstrapping is in http://canonical.org/~kragen/sw/dev3/meta5ix2c.c.

    Meta5ix is extremely weak and limited, really only enough for a compiler front-end; it can't, for example, do the kinds of RPN tricks we're talking about above.

  • Understanding LSM Trees: What Powers Write-Heavy Databases
    3 projects | news.ycombinator.com | 9 Feb 2022
    Oh goodness, I never thought about using LuaLaTeX for that! I wrote handaxeweb.lua originally for https://github.com/kragen/peg-bootstrap/peg.md but have used it for various things since then.
  • First C compiler ported to GCC
    2 projects | news.ycombinator.com | 5 Apr 2021
    I did pretty much the same thing with https://github.com/kragen/peg-bootstrap/blob/master/peg.md, although admittedly hand-compiling to JS was noticeably less work than hand-compiling to assembly language would have taken. My friend Dave did something similar with Val Schorre's META-II: https://queue.acm.org/detail.cfm?id=2724586

What are some alternatives?

When comparing stdVBA and peg-bootstrap you can also consider the following projects:

ECPTextStream - ECPTextStream is a VBA text buffered reader designed to manage text streams in Microsoft Office applications, from VBA.

stoneknifeforth - a tiny self-hosted Forth implementation

VBAChromeDevProtocol - VBA (Excel) based wrapper for Chrome Developer Protocol (CDP) - sorta a VBA version of Puppeteer/Selenium

go-sstables - Go library for protobuf compatible sstables, a skiplist, a recordio format and other database building blocks like a write-ahead log. Ships now with an embedded key-value store.

Rubberduck - Every programmer needs a rubberduck. COM add-in for the VBA & VB6 IDE (VBE).

proofs - My personal repository of formally verified mathematics.

VBA-CSV-interface - The power you need to cleanse, filter, sort, reshape, manage and analyze data from CSV files.

parson - Yet another PEG parser combinator library and DSL

VBCorLib - The VBCorLib framework brings many of the powerful .NET classes to VB6.

first-cc-gcc - The first C compiler made to work under modern GCC

VBA-Project-Information - VBA Project Information

500lines - 500 Lines or Less