Intermediate terms
Cloud Multi-Tenancy
PHP 8.0+
Serving multiple customers (tenants) from shared infrastructure while keeping their data and behaviour isolated.
3d ago
cloud intermediate
Rust Smart Pointers (Box, Rc, Arc, RefCell)
2
Smart pointers wrap heap allocations with ownership semantics: Box owns one value, Rc/Arc share ownership, and RefCell adds runtime-checked interior mutability.
3d ago
rust intermediate
Search Query Parsing
PHP 8.0+
Transforming raw user search input into structured components - tokens, fields, operators, and phrases - before query execution.
3d ago
search intermediate
Ensuring content reflows into a single column and stays usable when users scale text up to 200% or zoom to 400% without horizontal scrolling.
3d ago
accessibility intermediate
AI Context Management
PHP 8.0+
The practice of selecting, ordering, and trimming what goes into an LLM's context window to maximise relevance while staying under token limits.
4d ago
ai_ml intermediate
Git Worktree
2.5
1
Checks out multiple branches into separate working directories from one repository, avoiding stash juggling and duplicate clones.
5d ago
git intermediate
Rust Iterator Adapters
Iterator adapters are lazy combinators like map and filter that transform iterators without doing work until a consumer drives them.
5d ago
rust intermediate
Regex Escape Sequences
PHP 4.1+
Backslash sequences in regex that either match special characters literally or represent character classes, anchors, and control characters.
7d ago
regex intermediate
Rust Pattern Matching
2
Rust's match and if let destructure values and enforce exhaustive handling of every variant at compile time.
7d ago
rust intermediate
Rust Traits
2
Traits define shared behavior that types opt into explicitly, enabling polymorphism through composition rather than class inheritance.
7d ago
rust intermediate
Cloud Backup & Disaster Recovery
1
Automated backups with tested restores, defined RPO/RTO targets, and cross-region replication for catastrophic failure recovery.
2w ago
cloud intermediate
Test Parallelization Gotchas
Hidden runtime hazards when tests execute concurrently — shared state, race conditions, and resource contention turn green suites red intermittently.
3w ago
testing intermediate
Cloud Region Selection
1
The decision of which cloud region(s) to deploy workloads into, balancing user latency, data residency law, cost, and service availability.
3w ago
cloud intermediate
AI Fallback Routing
4
Automatically routing LLM requests to alternative models or providers when the primary fails, times out, or returns unusable output.
3w ago
ai_ml intermediate
AI Model Selection Criteria
The systematic factors engineers weigh when choosing an LLM for a task: capability, cost, latency, context window, modality, hosting, and licensing.
3w ago
ai_ml intermediate
AI Prompt Versioning
The practice of treating prompts as versioned artifacts — tracking changes, correlating outputs to prompt revisions, and enabling rollback when quality regresses.
4w ago
ai_ml intermediate
AI Synthetic Data Generation
Using generative models to produce artificial training, testing, or augmentation data that mimics the statistical properties of real datasets without exposing originals.
1mo ago
ai_ml intermediate
Memory Pressure Detection
PHP 7.0+
Proactively identifying when a PHP process approaches its memory limit so corrective action can be taken before a fatal error.
1mo ago
performance intermediate
Database Query Result Streaming
PHP 8.0+
2
Processing large result sets row-by-row without loading the entire dataset into memory - essential for PHP CLI scripts handling millions of rows.
1mo ago
database intermediate
Error Recovery Patterns
Design strategies for gracefully handling failures and restoring system functionality without data loss or user disruption.
1mo ago
general intermediate