Beginner terms
Rust Ownership and Borrowing
1
Ownership gives each value one owner and borrowing lends temporary access, letting Rust guarantee memory safety without a garbage collector.
2d ago
rust beginner
Rust Error Handling with Result
1
Rust models recoverable errors as Result<T, E> values returned from functions, not thrown exceptions, with the ? operator for propagation.
5d ago
rust beginner
readonly Classes (PHP 8.2)
PHP 8.2+
PHP 8.2 readonly classes make all promoted properties readonly automatically — the cleanest way to define immutable value objects and DTOs.
3mo ago
php beginner
readonly Properties (PHP 8.1)
PHP 8.1+
PHP 8.1 readonly properties can only be written once (in the constructor) — enforcing immutability without verbose accessor boilerplate.
3mo ago
php beginner
Redis
PHP 7.0+
An in-memory key-value data store used in PHP applications for caching, session storage, queues, rate limiting, and pub/sub — providing sub-millisecond data access compared to database queries.
3mo ago
performance beginner
Regex Flags (i, g, m, s, x, u)
PHP 5.3+
Modifiers appended to a regex pattern that change matching behaviour — case-insensitivity, multiline mode, dotall mode, extended whitespace, and Unicode awareness.
3mo ago
regex beginner
Replace Magic Literal with Symbolic Constant
Magic literals (numbers/strings hardcoded without context) should become named constants — MAX_RETRIES = 3 is self-documenting; the literal 3 is not.
3mo ago
quality beginner
Responsive Design
1
A CSS approach where layouts adapt to different screen sizes using fluid grids, flexible images, and media queries — one codebase that works across mobile, tablet, and desktop.
3mo ago
mobile beginner
Return Type Declarations (PHP 7.0)
PHP 7.0+
PHP 7.0 return type declarations (:int, :string, :void, :static, :never) enable functions to declare what they return — making return contract violations detectable at runtime and by static analysis.
3mo ago
php beginner
ReferenceError — Undefined Variables
ES2015
ReferenceError is thrown when accessing a variable that hasn't been declared — unlike undefined which is a declared variable with no value.
3mo ago
javascript beginner
Runbooks & Playbooks
2
Documented step-by-step procedures for handling operational tasks and incidents — ensuring any on-call engineer can respond correctly under pressure without tribal knowledge.
3mo ago
general beginner
Refactoring
PHP 5.0+
Improving code structure without changing its external behaviour — cleaning up debt while keeping tests green.
3mo ago
general beginner
register_globals (Legacy Audit)
PHP 5.0+
A removed PHP setting that automatically created global variables from GET/POST/COOKIE input, enabling trivial variable injection attacks.
CWE-473 OWASP A3:2021
3mo ago
php beginner
9.8
Regression Testing
Re-running existing tests after code changes to verify that previously working functionality has not been broken — the primary safety net for continuous delivery.
3mo ago
testing beginner
REST (Representational State Transfer)
1
An architectural style for distributed hypermedia systems using HTTP verbs, stateless interactions, and resource-oriented URLs.
3mo ago
architecture beginner