some stuff i've made:

filtered by the kind of work behind each project, from systems-heavy builds to backend, cloud, and devops work.

systemsbackendblockchain

arbx

github
highlight17ns AMM calculation, 467us full market scan

Autonomous 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.

systemsdatabase

Lithos

github
highlight72k+ writes/sec & 97k+ reads/sec

A production-grade LSM-tree storage engine written from scratch in C. Features Write-Ahead Logging (WAL) for durability, Leveled Compaction, and Snapshot Isolation (MVCC).

systemsbackendblockchain

Mempool-Sniper

github
highlight<500ms Detection Latency

A high-performance, event-driven Ethereum mempool monitor. Uses a custom parallel worker pool to overcome RPC latency limits.

systemsblockchain

Merkle-Trie-RS

github
highlightO(1) State Verification

A high-fidelity implementation of the Ethereum Modified Merkle Patricia Trie. Features deterministic state root generation, RLP serialization, and Merkle Proof verification.

systemsbackenddatabase

rusty-redis

github
highlight~1.4M+ ops/sec (Benchmarked)

A multithreaded, in-memory kv store implementing the RESP protocol. Leveraging Tokio and DashMap for fine-grained locking to handle high-concurrency workloads.

securityblockchaindevtools

cold-cli

github
highlightZeroizes RAM on drop

A security-focused HD Wallet generator in Rust. Implements 'Scorched Earth' memory hygiene (zeroize) to prevent cold-boot attacks and SLIP-0010 for full Phantom/Solflare interoperability.

systemsdatabasebackend

Aether

github
highlightZero-downtime snapshots via VACUUM INTO

A distributed SQL database providing Strong Consistency (CP) via Raft consensus. Decouples storage (SQLite WAL) from interface (Postgres Wire Protocol).

systemsnetworkingsecurity

CrisisMesh

github
highlightGuaranteed delivery during partitions

A decentralized, offline-first mesh network using Delay Tolerant Networking (DTN). Uses custom UDP Multicast Gossip and Curve25519 encryption for partition-resilient comms.

systemsclouddevops

Orion

github
highlightSelf-healing cluster in <2s

A 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.

systemsdatabasedevtools

Prism

github
highlightDatabase branching in <300ms

An ephemeral database proxy that intercepts PostgreSQL wire protocol to instantly fork databases for every feature branch using filesystem-level Copy-on-Write.

clouddevopsdevtools

VelocityCache

github
highlight231x faster than TurboRepo at Local Cache Restoration.

A stateless, self-hosted remote build cache for monorepos. Decouples caching logic from storage to ensure data sovereignty.

systemsbackendclouddevops

Distributed Task Scheduler

github
highlightLeader-elected multi-node scheduling

A distributed cron-like scheduler in Go with Redis-backed leader election, consistent hashing for task placement, and Prometheus instrumentation across worker nodes.

backendclouddevops

Webhook Delivery Service

github
highlightPer-subscriber retries with HMAC signing

An async-first webhook delivery platform built with FastAPI, Celery, Redis, and Postgres. Fans out events to subscribers with signed payloads, retries, and per-delivery visibility.

backendclouddevops

Job Queue & Worker System

github
highlightPriority lanes + DLQ + live dashboard

A production-grade BullMQ worker system with priority queues, scheduled jobs, exponential backoff retries, dead-letter queues, and a real-time operations dashboard.

backendclouddevops

Rate Limiter as a Service

github
highlightAtomic Lua rate limiting in Redis

A Redis-backed rate limiting service exposing configurable rules per API key, with atomic Lua-based token bucket and sliding window algorithms plus Prometheus metrics.