--- id: wiki-2026-0508-blog-post title: Blog Post category: 10_Wiki/Topics status: verified canonical_id: self aliases: [Engineering Blog, Tech Writing] duplicate_of: none source_trust_level: A confidence_score: 0.9 verification_status: applied tags: [writing, content, devrel] raw_sources: [] last_reinforced: 2026-05-10 github_commit: applied tech_stack: language: Markdown/MDX framework: Astro/Next.js/Hugo --- # Blog Post ## 매 한 줄 > **"매 잘 쓴 한 글이 1000번의 회의를 대체한다."**. Engineering blog post 는 매 internal knowledge 를 외부 (recruiting, brand, community) 와 미래 자신 에게 publish 하는 매 leveraged artifact. 2026 의 stack: Astro/Next.js + MDX + algolia search + RSS + open-graph + Schema.org + AI-generated TL;DR. ## 매 핵심 ### 매 Strong Post 의 Anatomy - **Hook**: 매 첫 두 문장 — problem + stake. - **TL;DR / BLUF**: 매 결론 먼저. - **Concrete numbers**: 매 "20% faster" not "much faster". - **Code that runs**: 매 copy-pasteable, working snippet. - **Diagrams**: 매 system 그림이 단어 100개를 대체. - **Honest tradeoffs**: 매 안 좋은 점도 적기. - **Sources**: 매 reference link. ### 매 Format Type - **Tutorial**: 매 step-by-step, runnable. - **Reference**: 매 spec-like. - **Explainer / mental-model**: 매 "왜". - **Postmortem**: 매 incident retrospective. - **Decision record (ADR)**: 매 trade-off 기록. - **Benchmark**: 매 measure + reproduce. ### 매 Stack 2026 - **Authoring**: MDX, code blocks with shiki/Prism, KaTeX math. - **SSG**: Astro, Next.js, Hugo, Eleventy. - **Hosting**: Vercel, Cloudflare Pages, Netlify, GitHub Pages. - **Analytics**: Plausible, Fathom (privacy-friendly). - **Feedback**: Giscus (GitHub Discussions). ### 매 응용 1. Engineering blog (Stripe, Cloudflare, Vercel style). 2. Personal site (Notion-style or Astro). 3. Internal wiki post. 4. Conference talk companion. 5. Open-source project announcement. ## 💻 패턴 ### Astro + MDX setup ```bash bun create astro@latest my-blog -- --template blog --typescript strict cd my-blog && bunx astro add mdx sitemap ``` ### Frontmatter schema (zod-validated) ```typescript // src/content/config.ts import { defineCollection, z } from 'astro:content'; export const collections = { blog: defineCollection({ type: 'content', schema: z.object({ title: z.string().max(70), pubDate: z.coerce.date(), tags: z.array(z.string()), heroImage: z.string().optional(), tldr: z.string().min(40).max(280), }), }), }; ``` ### Code block with shiki + line highlight ````mdx ```ts {3-5} function fib(n: number): number { if (n < 2) return n; // 매 highlighted recursion return fib(n-1) + fib(n-2); } ``` ```` ### Open Graph + JSON-LD ```html ``` ### Auto-generated OG image (Vercel OG) ```typescript // pages/og/[slug].tsx import { ImageResponse } from '@vercel/og'; export default function og(req) { const title = new URL(req.url).searchParams.get('title'); return new ImageResponse(