| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Original HTTPS Page] |
Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.
You must be logged in to block users.
Contact GitHub support about this userβs behavior. Learn more about reporting abuse.
Report abuseFounder of WhispHub.
I build programming languages and distributed systems in Rust β mostly to understand how they work.
A DESU in Data Science freshly in hand (Aix-Marseille School of Economics) β because curiosity refuses to sit still.
Around here, everything begins with a whisper.
I came to code from the other side of language β literature and grammar, the human kind. Somewhere between conjugation tables and my first compiler error, something clicked: a programming language is just another grammar, one where intent becomes action. So instead of only learning languages, I started building them.
That curiosity became whispem-lang, a small compiler that now compiles itself. Rust taught me how machines like to be spoken to; distributed systems, what happens when thousands of them talk at once; a data-science degree, how to listen when the data answers back.
The whisper follows me everywhere β whispem, WhispHub, sussurro β because it is the philosophy: good software doesn't shout. It stays small, legible, and honest about what it does β complexity earned, never hidden β built to be read, understood, and taken apart. And whispers carry further than you'd think: small ideas, big echoes.
Most of what I ship is open source. WhispHub is a hosted product I keep private β but everything else lives on GitHub, MIT-licensed, built in public.
Everything I do carries the whisper β and this is where it began. whispem-lang is a small, self-hosted programming language: the compiler is written in Whispem itself, compiles itself, and produces byte-identical output with the reference Rust implementation. It runs on a standalone C VM with no dependencies beyond a C compiler.
Whisper your intent. The machine listens.
fn factorial(n) {
if n <= 1 { return 1 }
return n * factorial(n - 1)
}
for n in range(1, 16) {
if n % 15 == 0 { print "FizzBuzz" }
else if n % 3 == 0 { print "Fizz" }
else if n % 5 == 0 { print "Buzz" }
else { print n }
}
make
./wvm compiler/wsc.whbc examples/hello.wsp # compile + run
cargo test # 153 Rust testsThree projects, three directions β a product, a translator, and a distributed store. All the same conviction: complexity should be earned, never hidden.
A social space for makers, where a project gets a living page β not just a code repo. Hearts instead of stars, echoes instead of forks, pulses instead of commits. Zero tracking, zero ads, GDPR by design. Built solo over six months in Rust + Astro; launched April 29, 2026. Small ideas, big echoes.
A voice-to-voice interpreter across English, Spanish, French and Italian β Marian / OPUS-MT reimplemented on ggml, no server, no network at runtime. Twelve translation directions, speech-to-text via whisper.cpp, text-to-speech via sherpa-onnx, wrapped in a native Tauri app. Sussurro is Italian for whisper.
A distributed key-value and object store in Rust: Raft consensus for the cluster, 2PC for distributed writes, a Write-Ahead Log for durability, virtual sharding for elasticity, and an S3-compatible API. Built entirely in the open β mono-node first, then a full distributed rewrite. Understanding the system over raw performance.
"The best way to learn is to build."
Whispem is a small, self-hosted programming language. The compiler is written in Whispem, compiles itself, and runs on a standalone C VM β no external dependencies beyond a C compiler. Rust serves β¦
Offline neural translation across English, Spanish, French & Italian β type or speak, read or hear it. Built on ggml.
C++ 30
Drowning in C? Dive deeper β after assembly, C feels like floating
| Back | FazBrowse Home | New Git URL |