Articles

Essays on design, technology, and everyday life, written slowly enough to keep a quiet corner of the internet alive.

Tech1 views

React useEffect: What Shouldn’t Go Inside

useEffect was originally an escape hatch from React for synchronizing with external systems. But many treat it as the command center for all internal component logic. Remember this simple rule: if no external system is involved, you usually don't need an Effect.

Read Morearrow_forward
Tech1 views

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.

Read Morearrow_forward
Tech16 views

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.

Read Morearrow_forward
Tech19 views

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.

Read Morearrow_forward