HeyBinyang

Articles

Notes on design, technology, and life, told in depth while looking for quiet corners of the digital age.

·Tech·visibility22 reads

Codex Subagents in Action: Batch Generate Tests, Check Compatibility, Translate Comments

This article introduces an efficient approach for repetitive programming tasks at scale: organize tasks into a CSV, have Codex launch independent subagents for each row to process in parallel, then write the consolidated results back to an output CSV. Whether it's batch-generating unit tests, checking compatibility for React Query upgrades, or translating comments across an entire project, this pattern turns what would normally be done one-by-one into a process that finishes in minutes.

·Tech·visibility6 reads

Part 6: Next.js + Prisma + blog-demo Full-Stack Hands-On

In previous parts, we took a backend-focused approach with Prisma to build the data model and business logic for blog-demo. In this part, we integrate that model into Next.js to create a minimal yet complete personal blog admin panel.

·Tech·visibility4 reads

Part 3: Prisma Schema Deep Dive

The goal of this article is to break down the Prisma schema from top to bottom — explaining datasource, generator, model, enum, and all the attributes: what they are and how to use them.