Oga VS inko

Compare Oga vs inko and see what are their differences.

Oga

Oga is an XML/HTML parser written in Ruby. (by yorickpeterse)

inko

A language for building concurrent software with confidence (by inko-lang)
Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
Oga inko
1 11
1,162 735
- 6.0%
4.0 9.4
11 months ago 4 days ago
Ruby Rust
Mozilla Public License 2.0 Mozilla Public License 2.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.

Oga

Posts with mentions or reviews of Oga. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2021-12-26.
  • How to write a compiler or interpreter in rust
    8 projects | /r/rust | 26 Dec 2021
    In terms of parsing style I suggest sticking with a hand-written recursive-descent parser. Parser generators seem appealing at first, but I always ran into annoying limitations when using them (I wrote one in Ruby myself as well, and used this for this project). Parsing combinators are useful for small inputs, but I find them difficult to use for anything but simple cases.

inko

Posts with mentions or reviews of inko. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-11-14.
  • A language like C, but with a borrow-checker
    1 project | news.ycombinator.com | 18 Nov 2023
  • Ask HN: Which language will you try for this year's Advent of Code and why?
    1 project | news.ycombinator.com | 15 Nov 2023
  • Inko Programming Language
    4 projects | news.ycombinator.com | 14 Nov 2023
    I have mixed feelings on Rust's syntax, especially around generics, lifetimes, and the `modifier -> keyword` syntax (i.e. `async fn` or `pub fn`). For Inko, I wanted something that's easy to parse by hand, and no context specific parsing (e.g. `QUOTE -> something` being the start of a lifetime in one place, but a char literal in another place).

    Another motivator for that is that years ago I worked on Rubinius for a while (an implementation of Ruby), and helped out with a parser for Ruby (https://github.com/whitequark/parser). The Ruby developers really liked changing their already impossible syntax in even more impossible ways on a regular basis, making it a real challenge to provide syntax related tools that support multiple Ruby versions. I wanted to avoid making the same mistake with Inko, hence I'm actively trying to keep the syntax as simple as is reasonable.

    As for the specific examples:

    - `fn async` means your parser only needs to look for `A | B | fn` in a certain scope, instead of `A | B | fn | async fn`. This cuts down the amount of repetition in the parser. An example is found at https://github.com/inko-lang/inko/blob/8f5ad1e56756fe00325a3..., which parses the body of a class definition.

    - Skipping parentheses is directly lifted from Ruby, because I really like it. Older versions took this further by also letting you write `function arg1 arg2`, but I got rid of that to make parsing easier. It's especially nice so you can do things like `if foo.bar.baz? { ... }` instead of `if foo().bar().baz?()`, though I suspect opinions will differ on this :)

    - Until recently we did in fact use `::` as a namespace separator, but I changed that to `.` to keep things consistent with the call syntax, and because it removes the need for remembering "Oh for namespaces I need to use ::, but for calls .".

    - `[T]` for generics is because most editors automatically insert a closing `]` if you type `[`, but not when you type `<`. If they do, then trying to write `10<20` is annoying because you'd end up with `10<>20`. I also just like the way it looks more. The usual ambiguity issues surrounding `<>` (e.g. what leads to `foo::()` in Rust) doesn't apply to Inko, because we don't allow generics in expressions (i.e. `Array[Int].with_capacity(42)` isn't valid syntax) in the first place.

  • Type inference of local variable based on later operations
    3 projects | /r/ProgrammingLanguages | 10 Jun 2023
    Inko supports this in its type checker. The implementation is both surprisingly simple and tricky, and works roughly as follows:
  • The Rust I Wanted Had No Future
    4 projects | /r/rust | 5 Jun 2023
    Perhaps it's worth looking into Inko? I apologise if I'm shilling my own project a bit too hard here, but reading through the comments it does seem people would be interested in what it's trying to do :)
  • The Rust I wanted had no future
    7 projects | news.ycombinator.com | 5 Jun 2023
    Perhaps you'd be interested in Inko (https://inko-lang.org/). It's obviously not there yet in terms of tooling and what not, but it might scratch an itch for those looking for something a bit like Rust, but easier to use.

    Disclaimer: I'm the author of said language :)

  • Does modern implementation use tagged pointers/values?
    1 project | /r/ProgrammingLanguages | 27 May 2023
    Inko currently uses tagged pointers, though this is a remnant from when it was still using a VM. I'm working on replacing this with a better solution. In short: for a compiled language I don't think there's really a benefit to using pointer tagging.
  • "Linear style" and the spectrum of zero-cost to memory safety overhead
    1 project | /r/ProgrammingLanguages | 17 Apr 2023
    I think Inko shows this behavior too, where a linear-style program suddenly has zero cost. (Yorick, sanity check me on this?)
  • Thoughts on designing a stack base VM and byte code
    1 project | /r/rust | 14 Apr 2023
    For opcodes you can also use a third option: you use a single struct for all opcodes, and size it to support a fixed number of arguments. Most opcodes probably won't need more than 4-5 arguments. If those argument values are small enough (e.g. u16), you don't need that much space. You can find an example of this here, with the Instruction type only taking up 12 bytes.

What are some alternatives?

When comparing Oga and inko you can also consider the following projects:

Nokogiri - Nokogiri (鋸) makes it easy and painless to work with XML and HTML from Ruby.

llrl - An experimental Lisp-like programming language

Ox - Ruby Optimized XML Parser

rust-langdev - Language development libraries for Rust

HTML::Pipeline - HTML processing filters and utilities

lltz - LLTZ: Compiler from MLIR to Michelson

ROXML - ROXML is a module for binding Ruby classes to XML. It supports custom mapping and bidirectional marshalling between Ruby and XML using annotation-style class methods, via Nokogiri or LibXML.

logic - Logic backend implementation for Robot Rumble

HappyMapper - Object to XML mapping library, using Nokogiri (Fork from John Nunemaker's Happymapper)

mioco - [no longer maintained] Scalable, coroutine-based, fibers/green-threads for Rust. (aka MIO COroutines).

Tomlrb - A Racc based TOML parser

brainfk-rs - Compiles brainfuck to wasm!!