All Posts

ai-ml May 20, 2026 (Updated)

AI Code Review Confusion Patterns

Thirteen distinct ways Claude, Copilot, and Codex behave on PRs — ten failure modes plus two productive behaviors to amplify, plus an analyst-side error class. With detection signals and the empirical tiebreaker that resolves factual disagreements.

ai-mlcode-reviewai-reviewerconfusion-patternscopilotclaudecodex
ai-ml May 20, 2026 (Updated)

Claude Code Agent Teams

Experimental feature for orchestrating multiple Claude Code instances as a coordinated team with shared task lists and inter-agent messaging

ai-mlclaude-codeagent-teamsexperimental
backend May 6, 2026 (Updated)

FastAPI Non-blocking Startup Dependencies

FastAPI lifespan code runs before the application accepts requests. If startup awaits an optional dependency such as Kafka, Cloud Run cold starts can fail health checks and E2E probes even when the API would happily serve routes without it.

backendpythonfastapikafkacloud-runtransferable
devops May 6, 2026 (Updated)

Anthropic Prompt Cache TTL + Cost Mechanics

Anthropic silently dropped Claude Code's prompt-cache TTL from 1 hour to 5 minutes around early March 2026. Without explicit awareness, idle gaps ≥5 min between messages evaporate the cache and force a full cold cache-write on the next message — pricing it at 1.25× base input on the entire conversation prefix.

knowledgedevopsai-mlclaude-code
devops May 6, 2026 (Updated)

Codex Skill Mirror Pattern

When a repository already treats `.agents/skills/` as the canonical skill source, the clean Codex integration is not "replace it with `.codex/skills/`" or "symlink the whole folder wholesale." A mirror layer with selective adapters preserves the canonical source while giving Codex what it needs.

devopscodexclaude-codeskillsinteroperability
devops May 6, 2026 (Updated)

Two-Phase Invocation as a Manual Merge Gate

When a CI/CD automation skill supports an "all-in-one" mode (`/skill +flag`), the all-in-one mode should be opt-in, not the default. Splitting invocations preserves a meaningful pause point between CI green and the irreversible merge.

devopsautomationci-cddeploymentgating
devops May 6, 2026 (Updated)

`gh pr view` Head-Branch Ambiguity (False-Negative)

Running `gh pr view --json number,state` on a branch with an open PR can return "no pull requests found" even when the PR exists and the branch is correctly tracked. The empty result means "gh's branch resolution didn't find one," not "no PR exists."

devopsgithub-clighpr-management
devops May 6, 2026 (Updated)

`git rev-parse HEAD` vs `git log -1` Divergence Under Watcher Hooks

After a `gh pr merge` and a local pull, `git rev-parse HEAD` returned the correct merge commit while `git log -1` rendered the just-merged-away feature branch tip for several seconds. A graphify watcher rebuild fired during the checkout. The low-level read is authoritative; the log render can lag.

devopsgitwatcher-hooksdebugginggraphify
devops May 6, 2026 (Updated)

Markdownlint Pre-Commit: MD041 + MD001 Heading Gotchas

Two markdownlint rules that repeatedly block husky pre-commit on newly-created markdown files with YAML frontmatter. Both fire silently, neither is auto-fixed by --fix, and they tend to appear together — fixing one exposes the other.

devopsmarkdowntoolingpre-commit
devops May 6, 2026 (Updated)

Serena MCP — Multi-Profile Setup for Claude Code (cpers/cwork)

Installing the Serena MCP server across a Claude Code dual-profile setup (cpers/cwork) plus Codex, including the four recommended hooks, the system-prompt override, and the non-obvious "installer writes to default ~/.claude.json, misses profile-specific stores" trap.

devopsclaude-codemcpserenadual-profilecperscworktransferable
devops May 6, 2026 (Updated)

State-invariant flag drift — recovery via reconciliation pass

A boolean lifecycle flag kept getting stuck on entries that could never reach the code path that clears it. Symptom-only fixes recurred. The durable fix was a third workflow that enforces the invariant the flag implies, independent of how the flag got set.

devopssyncdata-lifecyclestate-invariantdrift-recoverydefense-in-depth
devops May 6, 2026 (Updated)

Wrap Skill Follow-Up Persistence Architecture

When a session-state dashboard regenerates from a single source (today's journal), unresolved follow-ups from prior sessions vanish silently on every rebuild. Compounded with single-source discovery and conversation-only mentions, follow-ups disappear three ways at once. The fix is a 4-layer architecture.

devopsclaude-codeskill-designsession-state
general May 6, 2026 (Updated)

Empirical Close: Defer Skill-Side Tests to Natural Exercise

Some verification tests need a real trigger that no fixture replicates faithfully — interactive prompts, conversation parsing, AskUserQuestion flows. Marking the test [~] empirical-close-pending and trusting the next natural trigger to verify is hygienic when paired with a friction-log reopen.

generalprocesstask-managementverification
general May 6, 2026 (Updated)

Markdownlint Conventions

7,500 markdownlint errors across 200 markdown files. The rules that mattered, the configuration that stuck, two pre-commit traps that surface only in nested scopes, and the strict-preset migration that collapsed a 14-rule custom config into one extends + five carve-outs.

generaldocumentationmarkdownlinting
general May 6, 2026 (Updated)

Plan-vs-Shipped Divergence Detection on Task Resume

When resuming a multi-session task, the plan.md written at task start may not reflect what is actually shipped now. Implementations evolve mid-flight, scope shifts, branches merge. A 3-minute pre-flight check prevents hours of executing obsolete work.

generalprocesstask-resumeverify-before-execute
general May 6, 2026 (Updated)

Checklist beats prose for LLM-robust skill preconditions

Compound preconditions written in prose form get silently misapplied under context pressure. Restructuring them as explicit checkbox checklists with one box per clause makes the precondition LLM-robust — and surfaces implicit clauses that turn out to be the actual bugs.

generalskill-authoringclaude-codellm-promptsinstructionsrobustness
ai-ml May 5, 2026 (Updated)

Codex `apply_patch` is a Shell-Mediated Tool, Not a Direct Tool

Codex CLI doesn't have a discrete edit tool. File edits flow through `local_shell` carrying `apply_patch` patch text. Cross-agent hooks need a payload-parsing wrapper, not a tool-name matcher.

ai-mlcodexclaude-codehookscross-agenttransferablegotcha
ai-ml May 5, 2026 (Updated)

Cross-Agent Skill Alias Generalization

Skills shared across Claude Code, Codex, and Gemini fail when they hardcode one agent's MCP tool alias. Two-tier pattern — declare both alias families in frontmatter; use generic names in prose.

ai-mlskillsmcpcross-agentclaudecodexgeminitransferable
devops May 5, 2026 (Updated)

Stdlib-Only Helper Portability

Helpers shipped to multiple agents fail in CI when they assume non-stdlib deps. Bind to standard library only — PyYAML, npm packages, and BSD/GNU sed flags are the three usual traps.

devopsportabilityhelperscipythonnodejstransferable
devops May 5, 2026 (Updated)

`test -L` vs `realpath` for symlink detection

A POSIX gotcha. `test -L child/leaf` returns false when a parent is the symlink, even when the resolution chain is healthy. Use `realpath` for source-of-truth chain validation.

devopsshellsymlinksposixgotchatransferable
general May 5, 2026 (Updated)

Schema-Versioned Helper Output Envelope

A JSON output envelope for cross-agent helper scripts — schema_version, status, error, agent, ts. Stable shape, semver-bumpable, error-distinguishing.

generaljsonschemahelperscross-agenttransferable
backend Apr 29, 2026 (Updated)

emitAsync Stamp Gating for Idempotent Bootstrap Retries

A bootstrap that emits sync to a queue then stamps "done" silently strands downstream when Redis blips. emitAsync gates the stamp on enqueue admission.

backendnestjseventemitter2bullmqidempotency
backend Apr 29, 2026

Fallback-Branch Test Coverage Gap

Tests pass. Coverage hits 100%. Removing the `|| randomUUID()` would still pass everything. How builder-driven fixtures hide the falsy branch.

backendtestingcoverageknowledge
backend Apr 29, 2026

Stateless Auth DB-Column Drift

Auth migrated from stateful to stateless JWT validation. Tests pass. Mobile users have access_token populated; web users have NULL. The drift is invisible until ops queries the column.

backendauthdatabasemigrationstatelessknowledge
backend Apr 29, 2026

Symmetric Redis ↔ Kafka Bridge Pair for Cross-Cloud Event Flow

Cloud Run can't reach an internal Kafka broker — `advertised.listeners` always wins. A pair of unidirectional bridges through Redis keeps every invariant intact.

backenddistributed-systemsevent-streamingcross-cloud
backend Apr 29, 2026 (Updated)

Byte-aware vs Count-based Chunking for Typesense documents/import

Two chunking strategies for Typesense bulk import. Picking the wrong one silently fails the day a single power user creates a multi-MB document.

backendtypesensebatchsearch
devops Apr 29, 2026 (Updated)

AI PR Review Validation Patterns

Thirteen patterns where AI code reviewers (Claude, Copilot, Codex) produce false positives, plus the classification framework and reinforcing-comment templates that keep triage fast.

devopsaicode-review
devops Apr 29, 2026

Ruff Three-Gate Pre-Flight

A push that turned into three CI cycles taught me Ruff in CI is three independent gates. A four-line shell function prevents the loop.

devopspythonci-cdruffpre-flight
ai-ml Apr 18, 2026 (Updated)

Phase A→B Classifier Deployment: Zero-Shot to Fine-Tuned

How to ship a working intent classifier on day one with zero labeled data, then graduate to a domain-specific model as you collect examples.

ai-mlnlpintent-classificationdistilbertbartmodel-selection
devops Apr 18, 2026 (Updated)

Claude Code: Shared + Personal AI Config Pattern

Split AI instructions into committed (shared) and gitignored (personal) layers

devopsclaude-codeai-configonboarding
ai-ml Apr 17, 2026

Six Papers, Zero Applied: A Week of Disciplined Reading

Six papers from DAIR.AI's April 6-12 batch. Three unifying themes surfaced, and zero were implemented — a practical walk-through of Pattern A, theme saturation before action.

forgeai-mlweekly-synthesispattern-allm-agents
devops Apr 14, 2026 (Updated)

Measuring Claude Code Turn Latency from JSONL Transcripts

Ground-truth, retroactive per-turn latency for Claude Code sessions — parsed from the JSONL transcripts already on disk, with four measurement traps I had to self-correct.

claude-codelatencymeasurementdebuggingjsonltranscriptsdevops
backend Apr 11, 2026 (Updated)

NestJS @Headers Decorator Returns string | undefined

NestJS `@Headers('key')` returns `string | undefined`, not `string[]` — Express normalizes duplicate custom headers by joining them with comma-space.

backendnestjsexpresshttp-headerstypescript
backend Apr 11, 2026 (Updated)

NestJS Swagger: type is Silently Ignored When content is Provided

When `@ApiResponse` sees both `type` and `content`, NestJS Swagger silently drops `type` — so your DTO stops appearing in the Swagger UI Models tab.

backendnestjsswaggeropenapi
devops Apr 11, 2026

macOS VSCode Terminal Locale Fallback

VSCode's integrated terminal can silently switch to a non-English locale on macOS — here is why your `git status` suddenly speaks Korean and how to pin `LANG` in `settings.json`.

devopsmacosvscodelocalei18ngotcha
devops Apr 9, 2026 (Updated)

Stow Symlink Health Checking

GNU Stow creates symlinks from system config paths back to a dotfiles repo,

devopsdotfilesstowsymlinks
ai-ml Apr 6, 2026

I Built What Karpathy Described — Before He Described It

Andrej Karpathy published a pattern for LLM-maintained knowledge bases. I have been running one for months. Here is what the comparison revealed.

ai-mlknowledge-managementclaude-codepatterns
ai-ml Apr 6, 2026 (Updated)

LLM Fine-Tuning Strategies

A practical decision framework for choosing between prompt engineering, RAG, and LoRA fine-tuning when building LLM-powered applications.

ai-mlfine-tuningllm
ai-ml Apr 6, 2026 (Updated)

Population Stability Index (PSI) for Model Drift Detection

How to detect when your deployed classifier's input distribution shifts away from training data — before accuracy degrades — using a lightweight statistical metric.

ai-mlmlopsdrift-detectionmonitoringstatistics
devops Apr 6, 2026 (Updated)

Anthropic MCP Context Budget Optimization

Anthropic-hosted MCP integrations consume ~71K tokens of your context window at session start — even when you never call them. Here is how to reclaim that budget.

devopsclaude-codeai-ml
devops Apr 6, 2026 (Updated)

Docker Subnet Collision with Static-IP Services

When multiple Docker Compose projects define custom bridge networks, their subnets can collide silently. Here is how to diagnose and fix it.

devopsdockernetworking
devops Apr 6, 2026 (Updated)

Hybrid CI: Self-Hosted Jenkins + GitHub Actions

Why use one CI system when you can use both? A split architecture that plays to each tool's strengths for polyglot portfolio projects.

devopsci-cdjenkinsgithub-actionsarchitecture-decision
general Apr 6, 2026 (Updated)

PortAudio Stale USB Audio Device Handle

Long-running audio daemons using PortAudio silently produce zero-filled buffers when the USB device handle goes stale. Here is how to diagnose and fix it.

generaldevops
google Apr 6, 2026 (Updated)

Google Meet Link Creation

Lesson learned from implementing programmatic Google Meet link creation.

backendgoogle-apiwork
ai-ml Apr 1, 2026 (Updated)

The Next Intelligence Explosion Is Social, Not Computational

A Google paper argues every major intelligence explosion emerged from social organization, not individual cognition — and AI will follow the same pattern.

ai-mlai-agentsresearchsociety
aws Mar 26, 2026 (Updated)

WAF Allowlist Patterns

Block-by-default WAF approach using route allowlisting. Stronger security than

awswafsecurityinfrastructure
backend Mar 26, 2026 (Updated)

Redis and BullMQ Queue Patterns

Comprehensive guide to Redis-backed job queues with BullMQ in Node.js/NestJS

backendredisbullmqqueuenode.js
ai-ml Mar 24, 2026 (Updated)

Gemini Asymmetric Embeddings

Gemini's text-embedding-004 uses asymmetric embedding with task_type to encode queries and documents differently, producing better retrieval results than symmetric models.

ai-mlembeddingsgoogle
ai-ml Mar 24, 2026 (Updated)

RAG Hybrid Search Architecture

Why single-method retrieval fails and how fusing dense, sparse, fuzzy, and managed search with Reciprocal Rank Fusion builds a retrieval pipeline that handles both semantic understanding and keyword precision.

ai-mlragsearcharchitecture
backend Mar 24, 2026 (Updated)

pgvector HNSW Index in PostgreSQL

You don't need a dedicated vector database for semantic search — pgvector with HNSW indexes handles under 100K vectors at over 95% recall, right inside PostgreSQL.

backenddatabasesearchpostgresql
aws Mar 22, 2026 (Updated)

EBS vs EFS: AWS Storage Comparison

Understanding when to use EBS (block storage) vs EFS (network filesystem).

awsstoragedevopswork
aws Mar 22, 2026 (Updated)

ECS Autoscaling Patterns

Best practices for implementing ECS service autoscaling with migration task

awsecsautoscalinginfrastructure
aws Mar 22, 2026 (Updated)

NAT Gateway Architecture

Understanding NAT Gateway placement and VPC network flow.

awsvpcnetworking
aws Mar 22, 2026 (Updated)

AWS Security Groups Fundamentals

Security Groups are virtual firewalls for AWS resources, controlling inbound

awssecuritynetworking
aws Mar 22, 2026 (Updated)

Terraform Fundamentals

Core Terraform concepts for AWS infrastructure management.

awsterraforminfrastructure-as-code
aws Mar 22, 2026 (Updated)

Terraform RDS Credentials Management

Managing RDS credentials securely using variables instead of hardcoding.

awsterraformrdssecuritywork
aws Mar 22, 2026 (Updated)

AWS WAF Implementation

Web Application Firewall setup with allowlist approach.

awssecuritywafwork
backend Mar 22, 2026 (Updated)

Amplitude ETL Partitioning

How Amplitude event data is partitioned when moving from raw to refined storage.

backendetlamplitudesparkpartitioning
backend Mar 22, 2026 (Updated)

Amplitude Export API Response Format

The Amplitude Export API returns data in a **nested compression format** that is

backendamplitudeapidata-format
backend Mar 22, 2026 (Updated)

Backfill Stats Manifest on Early Exit

When a job has an early exit path (e.g., "no work to do"), always save a

backendetlslack
backend Mar 22, 2026 (Updated)

Calendar EXDATE Behavior: Apple vs Google

Understanding how Apple Calendar and Google Calendar handle recurring event

backendcalendaricalendarrfc5545
backend Mar 22, 2026 (Updated)

Celery API-Side Dispatch Pattern

Creating a send-only Celery client in an API service that dispatches tasks to a

backendcelerypythonasync
backend Mar 22, 2026 (Updated)

class-transformer Undefined Own-Property Bug

When `plainToInstance()` creates class instances under ES2022+ TypeScript

backendtypescriptclass-transformergotcha
backend Mar 22, 2026 (Updated)

CPU Cache Locality in Batch Field Extraction

Multiple `.map()` calls over the same array force the CPU to reload each object

backendperformanceoptimization
backend Mar 22, 2026 (Updated)

DataSource vs Repository Pattern

Architectural decision guide for choosing between direct DataSource usage and

backendarchitecturepatternstypeormnestjs
backend Mar 22, 2026 (Updated)

ETL Data Separation Strategy

Mixing regular ETL data with manually recovered backfill data in the same S3

backendetldata-engineerings3architecture
backend Mar 22, 2026 (Updated)

NestJS WebSockets Reference

Complete reference for implementing WebSocket functionality in NestJS.

backendnestjswebsocketswork
backend Mar 22, 2026 (Updated)

pandas itertuples() vs iterrows()

`iterrows()` is the most common way to iterate over DataFrame rows, but it

backendpythonpandasperformance
backend Mar 22, 2026 (Updated)

PostgreSQL Advisory Locks with TypeORM

Application-level locks managed by PostgreSQL for coordination.

backendpostgresqldatabasework
backend Mar 22, 2026 (Updated)

PostgreSQL IN Clause Parameter Limits

When querying by a large set of IDs using TypeORM's `In([...])` operator, the

backendpostgresqltypeormperformance
backend Mar 22, 2026 (Updated)

Deduplicating Functions with Keyword-Only Parameters

Two modules contain near-identical functions with slight behavioral differences.

backendpythonrefactoringapi-design
backend Mar 22, 2026 (Updated)

Sentry N+1 Query Detection

How Sentry detects N+1 queries at runtime, common false positives from parallel

backendperformanceobservabilitysentry
backend Mar 22, 2026 (Updated)

Stale vs Orphan Blocks in Calendar Sync

When syncing calendar data from Google Calendar API, two distinct cleanup

backendsyncgoogle-calendar
backend Mar 22, 2026 (Updated)

Sync Token Invalidation Recovery (410 GONE)

When Google Calendar API returns 410 GONE, the sync token is invalidated and a

backendgoogle-calendarsyncerror-handling
backend Mar 22, 2026 (Updated)

TypeORM CLI와 NestJS DataSource 충돌

TypeORM CLI를 NestJS 프로젝트에서 사용할 때 발생하는 연결 충돌 문제와 해결 방법.

backendtypeormnestjs
backend Mar 22, 2026 (Updated)

TypeScript Type Narrowing Over Assertions

Prefer type narrowing over non-null assertions (`!`) and forced casting

backendtypescriptbest-practices
backend Mar 22, 2026 (Updated)

updatedAt Staleness Guard

When receiving asynchronous updates (webhooks, message queues), compare the

backendsyncwebhooksrace-condition
backend Mar 22, 2026 (Updated)

Webhook vs User Activity

Webhooks from external services indicate **their** activity, not **your user's**

backendwebhooksarchitecturepatterns
data Mar 22, 2026 (Updated)

Amplitude Export API Timezone Behavior

How Amplitude Export API handles timezones and hour boundaries for event data

dataamplitudetimezoneapi
devops Mar 22, 2026 (Updated)

Airflow Celery Worker Log Server Configuration

When using CeleryExecutor with workers on separate machines, the webserver needs

devopsairflowcelerylogging
devops Mar 22, 2026 (Updated)

Airflow CI/CD Concepts

Understanding Airflow deployment and CI/CD concepts through a kitchen analogy.

devopsairflowcicddockerwork
devops Mar 22, 2026 (Updated)

Airflow DAG-Level Callbacks

Airflow 2.x silently ignores `on_success_callback` at the DAG level. Only

devopsairflowcallbackswork
devops Mar 22, 2026 (Updated)

Airflow DAG start_date and Manual Triggers

When manually triggering a DAG, Airflow may skip task execution if the trigger

devopsairflow
devops Mar 22, 2026 (Updated)

Airflow Manual DAG Config Pattern

Pattern for allowing manual DAG triggers with custom parameters while keeping

devopsairflowdagtesting
devops Mar 22, 2026 (Updated)

Airflow Task Dependency Syntax

The `>>` operator in Airflow sets task dependencies and returns the downstream

devopsairflowpythonwork
devops Mar 22, 2026 (Updated)

Bash set -e and Command Substitution

When using `set -e` (exit on error), command substitution behaves unexpectedly

devopsbashshell-scripting
devops Mar 22, 2026 (Updated)

boto3 S3 put_object() Body Parameter Encoding

An ETL pipeline that uploaded JSON manifest files to S3 was failing with a

devopsawss3boto3python
devops Mar 22, 2026 (Updated)

Claude Code PostToolUse Hooks

PostToolUse hooks fire after a tool completes. They receive JSON via stdin with

devopsclaude-codehooks
devops Mar 22, 2026 (Updated)

DAG Deployment Strategies

Different approaches to deploying Airflow DAGs, with trade-offs analysis.

devopsairflowdeploymentgitopswork
devops Mar 22, 2026 (Updated)

Docker Compose CI/CD Patterns

Patterns for using Docker Compose in CI/CD pipelines: separating dev and prod configurations, ECR integration, and deployment strategies.

devopsdockercicdwork
devops Mar 22, 2026 (Updated)

ECR Credential Helper

AWS's official solution for automatic ECR authentication. Instead of storing

devopsawsdockerecr
devops Mar 22, 2026 (Updated)

ECR Token Refresh Cron

AWS ECR authentication tokens expire after 12 hours. For long-running Docker

devopsawsecrdockercronwork
devops Mar 22, 2026 (Updated)

ETL Schedule Timing

How to choose the correct ETL schedule based on data arrival patterns.

devopsairflowetlscheduling
devops Mar 22, 2026 (Updated)

Linux Fundamentals

1. [Cgroups (Control Groups)](#cgroups-control-groups)

devopslinux
devops Mar 22, 2026 (Updated)

Local S3 with MinIO

MinIO is an S3-compatible object storage that runs locally via Docker.

devopsdockers3miniolocal-dev
devops Mar 22, 2026 (Updated)

Python Tooling Stack

Standard Python development tooling for all MOBA projects.

devopspythontooling
devops Mar 22, 2026 (Updated)

S3 Path Normalization Pattern

S3 key prefixes need consistent trailing slashes when building hierarchical

devopsawss3pythonpath-handling
devops Mar 22, 2026 (Updated)

Terraform State Recovery

Procedures for recovering from Terraform state drift when state file doesn't

devopsterraformawsdisaster-recovery
devops Mar 22, 2026 (Updated)

tmux Smart Session Auto-Start

Auto-start tmux via an iTerm2 Profile Command (`tmux-smart-attach`) with numeric

devopstmuxzshterminaliterm2
devops Mar 22, 2026 (Updated)

uv.lock Best Practice

Whether to commit `uv.lock` to version control.

devopspythonuv
frontend Mar 22, 2026 (Updated)

Giscus SvelteKit Integration

Adding a comment system to a statically generated SvelteKit blog without

frontendsveltecomments
frontend Mar 22, 2026 (Updated)

Mobile Input UX

Techniques for making custom-styled inputs work properly on mobile browsers.

frontendmobilecss
frontend Mar 22, 2026 (Updated)

Paraglide-JS i18n for SvelteKit

Adding Korean/English internationalization to a SvelteKit static blog without

frontendi18nsveltesveltekit
frontend Mar 22, 2026 (Updated)

Svelte 5 $effect Rune

In Svelte 5, the reactive statement syntax (`$: { }`) from Svelte 4 is replaced

frontendsveltesvelte5reactivity
general Mar 22, 2026 (Updated)

Claude Code Expert Workflows

Synthesized patterns from three complementary expert sources: Boris Cherny (tool

generalclaude-codeworkflowsbest-practices
general Mar 22, 2026 (Updated)

CSS Inline-Replaced Element Gap

Elements like `<textarea>`, `<img>`, `<input>`, and `<video>` are

generalcssfrontend
general Mar 22, 2026 (Updated)

Documentation Patterns

The **Buffer Pattern** preserves important discoveries during AI-assisted

generaldocumentation3bpatterns
general Mar 22, 2026 (Updated)

macOS Keychain Multi-Account Behavior

macOS Keychain allows multiple entries with the same service name but different

generalmacoskeychainsecuritymulti-account
general Mar 22, 2026 (Updated)

React Demo Pipeline Pattern

Pattern for building a fully functional demo mode in a React dashboard when the

generalreactdemo-modefrontendpipeline
general Mar 22, 2026 (Updated)

shadcn/ui Setup with Vite + Tailwind

Manual setup of shadcn/ui component primitives in a Vite + React + TypeScript +

generalreactshadcn-uitailwindvitefrontend
general Mar 22, 2026 (Updated)

zsh Backtick Evaluation in Claude Code Skills

Claude Code SKILL.md files can trigger zsh command substitution errors when

generalclaude-codezshdebugging
google Mar 22, 2026 (Updated)

Google Calendar API: Recurring Event Updates

Handling "this", "thisAndFollowing", and "all" updates for recurring events.

backendgoogle-apicalendarwork
google Mar 22, 2026 (Updated)

Google Calendar Recurring Event Operations

Implementation patterns for `all`, `this`, and `thisAndFollowing` recurring

google-apicalendarrecurring-eventswork
icalendar Mar 22, 2026 (Updated)

External Calendar Data Normalization

External calendar data (Apple Calendar, GNOME Evolution, travel apps) often

backendgoogle-calendarrruleparsing
icalendar Mar 22, 2026 (Updated)

Partial Access Recurring Events

When users are invited to recurring events from the middle of a series, Google

backendgoogle-calendardata-integrityedge-cases
icalendar Mar 22, 2026 (Updated)

rrule BYDAY Timezone Correction

The rrule JavaScript library interprets `BYDAY` weekday names in UTC, not the

backendrruletimezoneicalendar
icalendar Mar 22, 2026 (Updated)

RRULE EXDATE Parsing with Timezone

The `rrule` JavaScript library's `rrulestr()` function fails when:

backend
payments Mar 22, 2026 (Updated)

Lemon Squeezy Subscription Management

Subscription lifecycle, cancellation, expiration, and reactivation.

backendpaymentssubscriptionswork
security Mar 22, 2026 (Updated)

Binary Checksum Verification

Verify downloaded binaries haven't been tampered with using SHA256 checksums.

securitydevopssupply-chain
security Mar 22, 2026 (Updated)

IDOR Prevention via Required Parameters (Type-Level Enforcement)

Insecure Direct Object Reference (IDOR) occurs when an API allows users to

securitybackendtypescript
backend Mar 18, 2026 (Updated)

Alembic with Async SQLAlchemy

Configuring Alembic migrations to work with SQLAlchemy's async engine

backendalembicsqlalchemypythondatabase
general Mar 18, 2026 (Updated)

Claude Code Multi-Profile HUD Setup

Running Claude Code with multiple accounts requires careful HUD configuration to show correct per-account usage stats. Here's how to fix cross-profile data leaks.

generalclaude-codehudmulti-accountdevtools
aws Mar 15, 2026 (Updated)

ECR/ECS Deployment Workflow

Complete guide to container deployment using Amazon ECR and ECS.

awsecsecrdockercicd
aws Mar 15, 2026 (Updated)

AWS VPC Networking Fundamentals

Comprehensive guide to AWS VPC networking: CIDR notation, subnet design, NAT Gateway placement, route tables, and complete Terraform examples.

awsnetworkingvpcterraform
backend Mar 15, 2026 (Updated)

FastAPI Dependency Injection Patterns

How to use Annotated types with FastAPI Depends() for reusable, type-safe dependency injection across routers.

backendfastapipython
backend Mar 15, 2026 (Updated)

Pessimistic Locking for Race Conditions

Use SELECT FOR UPDATE to prevent race conditions in check-then-insert patterns, with TypeORM implementation and duplicate key safety nets.

backenddatabaseconcurrencypatterns
backend Mar 15, 2026 (Updated)

WebSocket Architecture in AWS ECS/ALB

How WebSocket connections work with ALB, ECS, and Redis Pub/Sub for real-time notifications in containerized environments.

backendwebsocketsocket.ioredisawsecsalb
security Mar 15, 2026 (Updated)

OAuth 2.0 Implementation Patterns

Practical patterns for implementing OAuth 2.0 flows in backend services.

securityoauthapi
security Mar 15, 2026 (Updated)

Understanding Traefik, Keycloak, and ForwardAuth

How to add centralized authentication to Kubernetes services using Traefik ForwardAuth, Keycloak, and OAuth2-Proxy.

securitytraefikkeycloakoauth2authentication
general Mar 9, 2026 (Updated)

Recharts Dark Theme Customization

Techniques for styling Recharts charts to match a dark terminal theme with CSS

generalreactrechartschartsfrontenddark-theme
ai-ml Mar 5, 2026 (Updated)

AI Code Review Patterns

Patterns observed when AI reviewers (Claude, Copilot, Codex) generate invalid or misleading feedback, and how to handle each one.

aicode-reviewpatterns
backend Mar 3, 2026 (Updated)

Batch Processing Trade-offs

When processing multiple entities that share database operations, there's a

backendperformancearchitecturetrade-offs
aws Feb 24, 2026 (Updated)

ECS Auto-Scaling Deep Dive

Comprehensive guide to ECS auto-scaling concepts, algorithms, and container

awsecsautoscalingfargate
devops Feb 4, 2026

GitHub PR Review API - Inline Comments

How to create PR reviews with inline comments using the GitHub API via `gh` CLI.

devopsgithubapipr-review
backend Jan 26, 2026

Two-Phase Deletion Pattern

A safe deletion pattern for systems without rollback capability where external

backendarchitecturedata-integritypatterns
security Jan 26, 2026

Infrastructure Hardening Checklist

Comprehensive security hardening checklist for AWS infrastructure. Covers

securityawsinfrastructurechecklist
google Jan 23, 2026

Google Calendar Sync Strategies

Full sync vs incremental sync patterns and calendar segregation logic.

backendgoogle-apisynccalendarwork
enko