This product was not featured by Product Hunt yet. It will not be visible on their landing page and won't be ranked (cannot win product of the day regardless of upvotes).
Product upvotes vs the next 3
Waiting for data. Loading
Product comments vs the next 3
Waiting for data. Loading
Product upvote speed vs the next 3
Waiting for data. Loading
Product upvotes and comments
Waiting for data. Loading
Product vs the next 3
Loading
Jda Programming Language
opensource compiler ai faster
A self-hosted systems programming language built from scratch — zero C, zero Rust. Bootstrapped from assembly.
So I had a slightly unreasonable idea two years ago:
What if I built a programming language without depending on C, LLVM, or any existing toolchain?
The result is Jda — a high-performance systems language bootstrapped from raw x86-64 assembly. The compiler now compiles itself. No GC. No runtime. Single static binaries.
And on real benchmarks, it’s doing things I genuinely didn’t expect.
The numbers that made me double-check
I ran a 6-language benchmark suite (C, Rust, Go, Jda, Python, Ruby) on real algorithms — not microbenchmarks.
• Sudoku (500 puzzles): C 62ms, Rust 62ms, Go 66ms, Jda 41ms
• LZ77 (1 MB compress): C 1,830ms, Rust 2,185ms, Go 2,721ms, Jda 277ms
That’s 1.5× faster than C on Sudoku and 6.6× faster than C on LZ77. Running via Rosetta 2, no less — C/Rust/Go were native ARM64, Jda was x86-64 emulated.
How? Source-level optimizations the C compiler can’t easily do: MOD→AND strength reduction, hash-chain hoisting, aggressive DCE.
Compile times are kinda absurd too
33× faster compilation than Rust, 16× faster than Go. Skipping LLVM saves a lot of time.
A taste of the syntax
`fn search_file(path: &i8, pattern: &i8) -> i64 {
let fd = file_open(path, 0)
let buf = file_read_all(fd)
let matches = 0
for i in range(str_len(buf)) {
if substr_match(buf, i, pattern) {
matches += 1
}
}
ret matches
}`
A real ripgrep-style search tool, ~400 lines total, compiles to a 1 MB static binary with zero dependencies.
What’s in the box
• Self-hosted compiler — byte-identical fixed point reached April 2026
• 117 stdlib packages — HTTP, JSON, crypto, tensors, neural networks
• Built-in concurrency — goroutine-style green threads, no GC
• 388 conformance tests passing
• Native installers for Windows, macOS, Linux
Try it
Repo: https://www.github.com/jdalang/j...
Happy to answer questions about the bootstrap process, the codegen, or why on earth I did this in the comments.
About Jda Programming Language on Product Hunt
“opensource compiler ai faster”
Jda Programming Language was submitted on Product Hunt and earned 8 upvotes and 2 comments, placing #22 on the daily leaderboard. A self-hosted systems programming language built from scratch — zero C, zero Rust. Bootstrapped from assembly.
On the analytics side, Jda Programming Language competes within Open Source, Languages, Developer Tools and GitHub — topics that collectively have 638.1k followers on Product Hunt. The dashboard above tracks how Jda Programming Language performed against the three products that launched closest to it on the same day.
Who hunted Jda Programming Language?
Jda Programming Language was hunted by JAI LALAWAT. A “hunter” on Product Hunt is the community member who submits a product to the platform — uploading the images, the link, and tagging the makers behind it. Hunters typically write the first comment explaining why a product is worth attention, and their followers are notified the moment they post. Around 79% of featured launches on Product Hunt are self-hunted by their makers, but a well-known hunter still acts as a signal of quality to the rest of the community. See the full all-time top hunters leaderboard to discover who is shaping the Product Hunt ecosystem.
For a complete overview of Jda Programming Language including community comment highlights and product details, visit the product overview.