Projects
01 · GitStronghold
Electron app that performs a deep, complete local backup of a GitHub account: every branch, every file, every release binary, every gist — with an in-app file browser to view it all offline.
Hardest part: Built a dual-layer GitHub API rate-limit system (proactive throttling + automatic 403/429 backoff) so large accounts back up reliably with zero manual retries.
ElectronNode.jsGitHub REST API
02 · Elite Level Account Manager
Cross-platform Electron app that lets users run multiple simultaneous instances of a Windows application from one control panel, with instant hotkey-driven window switching.
Hardest part: Reverse-engineered how Windows enforces single-instance locking (mutex + event-wait-handle objects) and built a watcher process that holds those handles ahead of time to allow true multi-instancing.
ElectronC# interopWin32 API
03 · Elite Level ScreenCap
A tray-based screenshot tool paired with a full canvas annotation editor — 20 shape/markup tools, non-destructive editing, one-click install.
Hardest part: Solved pixel-precise multi-monitor crop mapping (accounting for per-display scale factors and offsets) and a race condition where the app's own window would appear in its own screenshots.
ElectronCanvas APIdesktopCapturer
04 · Elite Level Solutions
A full certification study platform covering 14 IT tracks (AD, Networking, M365, CompTIA, Cisco CCNA) — 840 practice questions, spaced-repetition flashcards, and a first-party admin analytics dashboard.
Hardest part: Migrated the frontend to Next.js App Router for real SEO, then diagnosed and fixed a production-only hydration failure traced to a Content-Security-Policy header silently blocking Next.js's own hydration script.
Next.jsPostgreSQLExpress
05 · RackVision [WIP]
A full-stack digital twin for physical server racks — drag-and-drop device placement, real front-panel hardware imagery, per-drive health tracking, and CPU/RAM/PCIe internals, all backed by multi-user auth and shareable read-only links.
Hardest part: Built a three-tier front-panel image system (custom upload → open-source hardware image library → SVG fallback), then solved its GitHub API rate-limit problem by pre-building a static local image index instead of querying live.
Next.jsPostgreSQLPrismaNextAuth
06 · Elite Dev Kit
A full in-app developer suite built entirely from scratch inside a sandboxed scripting runtime with no native UI toolkit — a live object-tree explorer, a network traffic inspector, and a hand-built code editor (line numbers, syntax highlighting, gutter) across ~10 independent floating windows.
Hardest part: Designed an adaptive system-profiling engine that automatically fingerprints an unfamiliar live system's architecture and behavior through controlled, reversible probing (nudging boundaries and observing the response) before generating any automation, plus a real-time traffic interception layer hooking the runtime's lowest-level dispatch mechanism to log every outgoing call.
Lua/LuauCustom UI FrameworkReverse Engineering