10 results for "all documents"
core/architecture/component_tree_tui_architecture.md
Language-agnostic reference for building DOM-like component trees in TUIs: event bubbling from leaf to root, z-index compositing with dirty tracking, active/focus routing, hit-testing with clipping, animation delegation,...
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.
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/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 ...
core/security/penetration_testing_methodology.md
The full authorized penetration-testing lifecycle - legal prerequisites, methodology frameworks (PTES, OWASP WSTG, NIST SP 800-115, OSSTMM, MITRE ATT&CK), engagement phases, exploitation frameworks, and coordinated discl...
databases/sql/postgresql/best_practices.md
Production-oriented PostgreSQL guidance covering specialized index types (GIN, GiST, BRIN, hash), JSONB modeling, table partitioning, connection pooling, autovacuum tuning, and logical replication.
languages/python/concurrency.md
Practical guidance on asyncio fundamentals and task groups, threading vs multiprocessing, the GIL, the status of free-threaded CPython (3.13/3.14), and a decision framework for choosing async, threads, or processes.
languages/python/performance.md
A practical guide to Python performance work: profiling with py-spy, Scalene, and cProfile; common bottlenecks; compilation options (mypyc, Cython, Nuitka, PyPy); and caching strategies from functools.cache to external c...