cat ./posts/vinext-nextjs16-stack.en.md
ブログを続けやすくするための整理
# 記事を増やしても探しやすいように、タグとランキングで整理する構成です。
ブログは記事が増えるほど、あとから探すのが大変になります。
タグ、人気ランキング、いいね数、ビュー数を見えるようにしておくと、よく読む記事や関連する記事を見つけやすくなります。
grep -R tag ./posts
Related posts
Shared tags 1 / 2026/06/11 12:39
Preventing "Deploy Succeeded but Nothing Changed" on Cloudflare Workers
How Workers gradual deployments can leave an old version serving traffic after a successful wrangler deploy, and how to build a deploy script that verifies 100% activation before exiting.
Shared tags 1 / 2026/06/11 12:37
Passwordless Admin Auth with Cloudflare Turnstile + Email OTP
A personal blog's admin panel doesn't need a password. The design and implementation of a Turnstile-gated email OTP login, including atomic rate limiting on D1 and timing-attack defenses.
Shared tags 1 / 2026/06/11 12:34
Japanese Full-Text Search on D1 (SQLite): FTS5 Trigram with Layered Fallbacks
How do you search Japanese text without a morphological analyzer? Using FTS5's trigram tokenizer on Cloudflare D1, with LIKE for short queries and prefix search for English — a three-stage fallback design.
Shared tags 1 / 2026/06/11 12:31
Building a Blog on Cloudflare Workers + D1 + Next.js: Architecture and Design Decisions
Using this blog itself as the case study: the architecture, design decisions, and pitfalls of running a personal blog on Cloudflare Workers with D1, R2, and a Next.js-compatible runtime.