50 results for "all documents"
core/devops/autonomous_least_privilege_environments.md
What least privilege actually means for an autonomous AI coding agent that runs shell commands: sandbox primitives (bubblewrap/Seatbelt/gVisor/Firecracker), capability dropping, ephemeral scoped credentials, and named 20...
core/design_patterns/behavioral.md
Which GoF behavioral patterns are now language-feature workarounds (Norvig's 16/23 analysis), named per-pattern verdicts for Strategy, Command, Visitor, State, Observer, Mediator, Chain of Responsibility, Template Method...
core/devops/ci_cd_patterns.md
Pipeline security misconfigurations documented in real 2025-2026 breach postmortems - tj-actions/changed-files, Pwn Request pull_request_target attacks, GitHub Actions cache poisoning, npm worm supply-chain incidents - p...
core/architecture/clean_architecture.md
Named case studies and concrete thresholds for applying (or not applying) Robert C. Martin's Clean Architecture - where the Dependency Rule pays off, where it's cargo-culted, and what practitioners who ship it at scale a...
core/principles/clean_code.md
Documented, named critiques of Robert C. Martin's Clean Code lineage - the Muratori/Martin performance debate, the Ousterhout/Martin design debate on function length, comments, and TDD - with decision rules for when each...
core/design_patterns/creational.md
Modern, cross-language treatment of the classic creational Gang of Four patterns, including idiomatic replacements in Python, TypeScript, Go, and Rust, and an honest assessment of why Singleton is discouraged in testable...
platforms/devplace/openai_gateway.md
The OpenAI-compatible proxy at /openai/v1: chat completions and streaming, the generic molodetz model names, embeddings, vision augmentation that rewrites images to text, forced-model behaviour, and per-call usage and co...
platforms/devplace/rest_posts_and_comments.md
Endpoints for the home page and feed plus the full create, read, edit and delete cycle for posts and comments, with their form fields, topic enum, attachment_uids handling, pagination cursors and JSON payload shapes.
platforms/devplace/xmlrpc_api.md
The XML-RPC endpoint that mirrors the REST surface: method catalogue, the api_key struct convention for authenticated calls, fault codes, and drop-in Python and JavaScript clients for posting, voting, following and messa...
languages/python/frameworks/django/best_practices.md
Version-specific Django 5.2/6.0 gotchas: verified CVEs, ORM traps that survive select_related/prefetch_related, signal/transaction race conditions, and decision rules for Ninja vs DRF vs FastAPI.