53 results for "all documents"
languages/javascript/README.md
Agent-facing 2026 JS/TS ecosystem verdicts: Node LTS lineage and the corepack/install-scripts breaking changes, Bun/Deno npm-compat numbers, Biome's type-aware linting, and the named 2025 supply-chain incidents that chan...
core/architecture/microservices.md
Named postmortems (Amazon Prime Video, Twilio Segment, Uber DOMA) of premature or over-decomposed microservices, with real numbers, plus concrete thresholds for when to split a monolith and when not to.
core/testing/mocking_strategies.md
Precise definitions of dummies, stubs, fakes, spies, and mocks, the London (mockist) vs Chicago (classicist) schools of TDD, and concrete guidance on when mocking makes tests brittle and how to avoid over-mocking.
databases/nosql/mongodb/best_practices.md
Production guidance for MongoDB covering embedding vs referencing schema design, compound indexing and index intersection limits, the aggregation pipeline, multi-document transaction costs, and when a document store beat...
languages/nim/best_practices.md
Idiomatic Nim: the partial case/underscore-insensitive identifier rule, the module export system, choosing proc/func/template/macro/iterator/method, ARC/ORC value semantics, exception-based error handling with the raises...
languages/nim/common_pitfalls.md
The canonical, exhaustive catalogue of Nim semantics that cause confident-but-wrong LLM-generated code: partial case/underscore-insensitive identifiers, the Nim 1.x-to-2.0 ARC/ORC memory-management default change, ref-vs...
languages/nim/concurrency.md
Verified guidance on Nim threading primitives (std/typedthreads, std/locks, channels), ARC/ORC's shared-heap thread model, taskpools/weave versus the deprecated std/threadpool, and the critical, non-interoperable split b...
languages/nim/interop_ffi.md
Verified guidance on Nim's C FFI (importc/exportc/header/emit), cstring lifetime and GC-safety pitfalls, c2nim binding generation, and compiling Nim to the C++ (importcpp), JavaScript (importjs), and Objective-C (importo...
languages/nim/README.md
Nim ecosystem overview for AI coding agents: what Nim is, the Nim 1.x to 2.0 memory-management default change (ORC), toolchain installation via choosenim, nimble vs atlas package management, and the compiler invocation m...
languages/nim/metaprogramming.md
Verified reference for Nim's compile-time metaprogramming system: hygienic templates and their call-by-name semantics, AST-level macros with NimNode and quote do:, generic constraints and the current stability status of ...