some stuff i've made:
filtered by the kind of work behind each project, from systems-heavy builds to backend, cloud, and devops work.
Sonar
githubA ZK coprocessor for Solana that lets any program request verifiable off-chain computation (proofs). Complete end-to-end pipeline with coordinator, prover (SP1), indexer, and on-chain verification under 200k CU.
Shadow-Index
githubAn ultra-low-latency Ethereum indexer running in-process as a Reth Execution Extension. Streams EVM data directly to ClickHouse with native chain reorg handling.
arbx
githubAutonomous flash-loan arbitrage engine on Arbitrum. Detects DEX price discrepancies via the sequencer feed, simulates profitability with revm, and executes atomically via Balancer V2. Zero capital at risk.
Lithos
githubA production-grade LSM-tree storage engine written from scratch in C. Features Write-Ahead Logging (WAL) for durability, Leveled Compaction, and Snapshot Isolation (MVCC).
Mempool-Sniper
githubA high-performance, event-driven Ethereum mempool monitor. Uses a custom parallel worker pool to overcome RPC latency limits.
Merkle-Trie-RS
githubA high-fidelity implementation of the Ethereum Modified Merkle Patricia Trie. Features deterministic state root generation, RLP serialization, and Merkle Proof verification.
rusty-redis
githubA multithreaded, in-memory kv store implementing the RESP protocol. Leveraging Tokio and DashMap for fine-grained locking to handle high-concurrency workloads.
Aether
githubA distributed SQL database providing Strong Consistency (CP) via Raft consensus. Decouples storage (SQLite WAL) from interface (Postgres Wire Protocol).
CrisisMesh
githubA decentralized, offline-first mesh network using Delay Tolerant Networking (DTN). Uses custom UDP Multicast Gossip and Curve25519 encryption for partition-resilient comms.
Orion
githubA distributed container orchestrator built from scratch. Collapses the control plane into a single binary using Raft for consensus and Lifeguard-enhanced gossip for failure detection.
Prism
githubAn ephemeral database proxy that intercepts PostgreSQL wire protocol to instantly fork databases for every feature branch using filesystem-level Copy-on-Write.
Distributed Task Scheduler
githubA distributed cron-like scheduler in Go with Redis-backed leader election, consistent hashing for task placement, and Prometheus instrumentation across worker nodes.