j-devlog
KO
~/nav

// categories

// tags

$ linguistic-engineer-blog --init

LinguisticEngineerBlog...?

39posts
|
7categories

// categories

// latest.posts

[개발]··10min

Adding i18n to a Next.js Blog — next-intl v4 Practical Guide

Notes from adding an English version to a Korean-only dev blog. Covers next-intl v4 routing design, the slug.en.mdx file strategy, and the setRequestLocale trap.

#Next.js#TypeScript#next-intl#i18n#Web Development
[LLM 실무]··8min

RTK — A CLI Proxy That Cuts LLM Token Usage by 60–90%

RTK (Token Killer) is a proxy tool that filters CLI command output before passing it to an LLM, reducing token consumption by 60–90%. This post covers installation, how it works, and real-world results.

#LLM#Claude Code#Token Optimization#CLI#Dev Tools
RTK — A CLI Proxy That Cuts LLM Token Usage by 60–90%
[LLM 실무]··13min

Playwright MCP — Giving an LLM a Real Browser

A practical guide to using Playwright MCP so an LLM can directly control a real browser. Covers how the accessibility-tree approach works, when to switch to vision mode, real-world use cases, and the pitfalls you're most likely to hit.

#LLM#MCP#Playwright#Claude Code#Browser Automation
[개발]··16min

OAuth 2.0 and OIDC — From Authentication vs. Authorization to How Social Login Really Works

OAuth 2.0 vs. OIDC, Authorization Code Flow, JWT structure, and PKCE — a deep dive into how social login works under the hood, from first principles to practical implementation.

#OAuth#OIDC#Authentication#Security#JWT
OAuth 2.0 and OIDC — From Authentication vs. Authorization to How Social Login Really Works
[Claude Code in Action]··15min

Claude Code Hands-on #4 — Hooks in Practice and the Claude Code SDK

A practical guide covering Hook security settings, automated TypeScript type-checking, and a duplicate-query prevention Hook — plus a full reference of all Hook types and how to use the Claude Code SDK for programmatic automation.

#Claude Code#AI#Hooks#SDK#Automation
[Claude Code in Action]··13min

Claude Code Hands-on #3 — Controlling Tool Execution with Hooks

Claude Code's Hooks let you inject custom commands before or after any tool execution. From auto-running code formatters to blocking access to sensitive files — here's a practical walkthrough with real examples.

#Claude Code#AI#Hooks#Automation#Security