← Home ← Codex ← DEBT ← Engine
Browse by Category
+ added · updated 7d
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
Search Query Expansion PHP 7.4+
Augmenting a user's query at search time with synonyms, related terms, and semantic variants so short or ambiguous input still matches relevant documents.
3mo ago Search intermediate
Type Narrowing Python 3.10+
Static type checkers refine a variable's type within a branch based on runtime checks like isinstance, None comparisons, and literal guards.
3mo ago Python intermediate
Schema Mapping and Alignment 🧠 2
The process of reconciling field names, types, and hierarchies between a source and target data model so data can flow correctly across systems.
3mo ago Knowledge Engineering intermediate
Knowledge Base Population 🧠 2
The pipeline that extracts, structures, chunks, and loads domain content into a searchable repository for retrieval, often feeding a RAG system.
3mo ago Knowledge Engineering intermediate
Knowledge Representation Formats 🧠 1
Standard serializations like RDF, Turtle, JSON-LD, and OWL that encode entities, relationships, and semantics for knowledge graphs and linked data.
3mo ago Knowledge Engineering intermediate
Database Bulk Operations PHP 7.0+ 🧠 3
Process many rows in a single SQL statement or batched transaction instead of one round-trip per row, for far higher throughput.
3mo ago Database intermediate
Named Entity Recognition 🧠 2
Detecting spans of text that name real-world entities and labeling each with a semantic type such as person, organization, or location.
3mo ago Knowledge Engineering intermediate
Rust Generics
Generics let you write code parameterized over types, with compile-time type safety and zero runtime cost via monomorphization.
3mo ago Rust intermediate
Semantic Similarity Matching 🧠 9
Finding texts that mean the same thing by comparing vector embeddings with distance metrics rather than matching exact keywords.
3mo ago Knowledge Engineering intermediate
stat() System Call
The stat family of syscalls retrieves file metadata — size, permissions, timestamps, owner, inode — without reading the file's contents.
3mo ago Linux intermediate
Rust Module Visibility
Rust items are private to their module by default; pub and its scoped variants control exactly which other modules can reach them.
3mo ago Rust intermediate
Iterating Objects with foreach (Iterator & IteratorAggregate) PHP 5.5+ 🧠 3
foreach can traverse any object implementing Iterator or IteratorAggregate, not just arrays — control iteration without exposing internal state.
3mo ago PHP intermediate
API Request Timeout Handling 🧠 1
Client-side deadlines, retries with backoff, and circuit breakers that keep your app responsive when an upstream API fails to reply in time.
3mo ago API Design intermediate
Cloud Multi-Tenancy PHP 8.0+ 🧠 3
Serving multiple customers (tenants) from shared infrastructure while keeping their data and behaviour isolated.
4mo 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.
4mo 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.
4mo ago Search intermediate
Diagram: Text Resize and Reflow Text Resize and Reflow CSS3
Ensuring content reflows into a single column and stays usable when users scale text up to 200% or zoom to 400% without horizontal scrolling.
4mo 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.
4mo 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.
4mo 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.
4mo ago Rust intermediate
✓ schema.org compliant