const { useState: useStateS, useEffect: useEffectS, useMemo: useMemoS } = React; function Eyebrow({ children }) { return {children}; } function Hero() { const indicators = [ "Head of Engineering", "Systems Thinker", "Business-Driven Engineering", "Golang & TypeScript", "Distributed Architecture", "Rapid Technology Adaptation", ]; return (
Portfolio · v2026.05

Solving complex problems through{" "} engineering, systems, and strategy.

Head of Engineering with strong depth in scalable architecture, analytics infrastructure, distributed systems, and technology strategy. I connect technical decisions with business outcomes and adapt quickly to emerging technologies — including AI, automation, and modern developer platforms.

I specialize in turning messy operational and technical complexity into scalable systems and clear execution. My work spans backend architecture, analytics infrastructure, platform engineering, AI adoption, and engineering leadership. I learn fast, adapt aggressively, and focus on technology that creates measurable business leverage.

View Projects Contact Me
{indicators.map((t) => ( {t} ))}
Role
Head of Engineering
Focus
AI · Platform · Analytics
Location
Remote · GMT+7
Status
● Open to conversations
); } function About() { const interests = [ "Multi-agent systems", "MCP (Model Context Protocol)", "AI orchestration architecture", "Real-time analytics pipelines", "Distributed event-driven systems", "Developer platforms", "Scalable backend infrastructure", "AI-assisted workflows", ]; const layers = [ { name: "Edge / API Gateway", tag: "fastify · echo" }, { name: "Application Services", tag: "go · ts" }, { name: "Event Mesh", tag: "kafka · cdc" }, { name: "Storage & State", tag: "pg · redis · mongo" }, { name: "Analytics Layer", tag: "clickhouse" }, { name: "AI Orchestration", tag: "mcp · agents" }, ]; return (
01 · About

Engineering with business context.

Many engineering leaders become disconnected from implementation realities over time. I intentionally stay close to the systems, architecture, and operational challenges.

While leading engineering organizations, I continue exploring new technologies hands-on — from AI systems and analytics infrastructure to backend scalability and developer tooling.

I enjoy solving problems where business pressure, scale, product velocity, and system complexity collide. Strong engineering leadership comes from understanding both technical depth and business impact behind every major decision.

Current interests

    {interests.map((t) => (
  • {t}
  • ))}
system / architecture.layers live
{layers.map((l, i) => (
{l.name} {l.tag}
{i < layers.length - 1 &&
}
))}
); } function Specializations() { const cards = [ { num: "01", icon: "◆", title: "Complex Problem Solving & System Design", body: "Designing scalable systems that solve operational, architectural, and business challenges efficiently. Comfortable navigating ambiguity, evaluating tradeoffs, and rapidly adopting new technologies when they create real leverage.", tags: [ "Systems architecture", "Technical strategy", "Cross-functional problem solving", "Rapid tech adaptation", "Scalability planning", "Business-tech alignment", "Operational optimization", "AI adoption & evaluation", ], }, { num: "02", icon: "▣", title: "Distributed Backend Engineering", body: "Building backend systems designed for high scalability, resilience, and operational clarity. Strong focus on event-driven architecture, performance optimization, and maintainability under rapid product growth.", tags: [ "Golang services", "Node.js & TypeScript", "REST APIs", "Kafka pipelines", "PostgreSQL", "MongoDB", "Redis", "Docker & Kubernetes", ], }, { num: "03", icon: "≋", title: "Real-Time Analytics & Data Infrastructure", body: "Architecting analytics pipelines capable of handling large-scale operational data with near real-time visibility — built for multi-tenant scale and operator clarity.", tags: [ "ClickHouse optimization", "CDC pipelines", "Data aggregation", "MergeTree tuning", "Multi-tenant architecture", "ReplacingMergeTree", "Event streaming", "Operational analytics", ], }, { num: "04", icon: "△", title: "Engineering Leadership & Business Alignment", body: "Leading engineering teams with strong focus on execution, technical clarity, scalability, and business outcomes. Treating engineering as a force multiplier — not a cost center.", tags: [ "Technical leadership", "Mentorship culture", "Product-eng alignment", "Architecture reviews", "R&D leadership", "Platform thinking", "Technical strategy", "Developer productivity", ], }, ]; const onMove = (e) => { const r = e.currentTarget.getBoundingClientRect(); e.currentTarget.style.setProperty("--mx", `${e.clientX - r.left}px`); e.currentTarget.style.setProperty("--my", `${e.clientY - r.top}px`); }; return (
02 · Capabilities

Core specializations.

Adaptability, strategic thinking, and execution capability — applied across the seams where business and engineering tend to break.

{cards.map((c, i) => (
{c.num} / 04 {c.icon}

{c.title}

{c.body}

{c.tags.map((t) => ( {t} ))}
))}
); } Object.assign(window, { Hero, About, Specializations, Eyebrow });