HeyBinyang

Articles

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

·Tech·visibility5 reads

DeepSeek + Reasonix: Process 400M Tokens for Just Over $4 per Day

Reasonix is a terminal AI coding agent designed specifically for the DeepSeek API. Rather than being a generic AI assistant wrapper, it deeply leverages DeepSeek's prefix caching mechanism with a cache-first architecture, minimizing the cost of repeated context to the extreme.

·Essay·visibility10 reads

How to Give AI Direct Access to MDN Docs Using MCP

Recently, MDN officially launched its MDN MCP Server, which directly connects MDN docs and browser compatibility data to various AI tools—putting an end to guesswork when agents look up documentation and compatibility.

·Tech·visibility17 reads

Codex Subagents in Action: Building a Browser Game from Scratch

This article will introduce how to use Codex Subagents to develop a product from scratch. You will see how multiple agents collaborate to build a space shooter game that runs directly in the browser, covering the entire process from design documents, visual assets, to testing and validation.

·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.