The Lab
Projects I've Built
Personal systems and tools I've built — infrastructure at scale, Developer Experience (DX) tooling, and browser-based applications.
Enterprise Data Intelligence Platform
Production-ActiveInternal Infrastructure
Built and maintained the core data infrastructure for a creator-economy platform processing records at scale. Designed the full Ingest → Transform → Serve lifecycle — from raw API ingestion to queryable OLAP tables — enabling analysts and product teams to access insights in seconds.
The Problem
Creator data scattered across 5+ social APIs and legacy databases caused slow report generation, making it difficult to make strategic decisions at scale.
The Solution
ELT/DLT pipeline using Dagster orchestration and EKS compute, with a unified OLAP layer (StarRocks + Athena) serving as the central data source.
Stack
HookPulse
Personal ProjectWeb App · Developer Tooling
A browser-based webhook inspection tool. Forward your webhook endpoint to HookPulse, and every incoming request is logged with full headers and payload in a clean dashboard. Replay any past event with one click, no tunneling tools required.
The Problem
Debugging incoming webhooks during development means manual logging, repeated deploys, and no easy way to replay past events.
The Solution
A Next.js web dashboard where you can forward webhook payloads, inspect request headers and bodies, replay events, and track delivery history — all in the browser.
Stack
CodePlay
Personal ProjectWeb App · Personal Project
A lightweight in-browser IDE for HTML, CSS, and JavaScript. Write code on the left, see the live output on the right. Output is rendered via dynamically generated blob URLs, keeping everything local and instant.
The Problem
Prototyping and sharing small HTML/CSS/JS snippets requires spinning up a project or relying on external tools with heavy sign-up flows.
The Solution
A browser-based IDE with a split editor and live preview pane. Code is rendered instantly in an iframe via blob URL generation — no server, no build step.
<div class="card">
<h1>Hello World</h1>
</div>
.card {
padding: 1rem;
background: #111;
}
Stack