The Lab
Projects I Own
Personal systems and tools built from scratch — infrastructure at scale, Developer Experience (DX) tooling, and Isolated Execution Environments. Every project reflects end-to-end ownership from problem to production.
Enterprise Data Intelligence Platform
Production-ActiveInternal Infrastructure · SSOT
Architected and owned 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 self-serve insights in seconds.
The Problem
Fragmented creator data scattered across 5+ social APIs and legacy databases caused 30s+ manual report generation, blocking strategic decisions at scale.
The Solution
High-throughput ELT/DLT pipeline using Dagster orchestration and EKS compute, with a unified OLAP layer (StarRocks + Athena) serving as the Single Source of Truth.
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