← Home ← Codex ← DEBT ← Engine
Browse by Category
+ added · updated 7d
✕ Clear 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
Geolocation API HTML5
navigator.geolocation provides GPS/network location data — requires HTTPS, user permission, and graceful fallback handling for denial or unavailability.
6mo ago JavaScript beginner
Global Function Style vs OOP Evolution PHP 4.0+
PHP 4's procedural global-function style evolved into PHP 5 OOP — understanding the transition explains why modern PHP has both paradigms and how to migrate legacy procedural code.
6mo ago PHP beginner
Grafana & Dashboards 🧠 1
Grafana is the de facto open-source dashboard platform — connecting to Prometheus, Loki, Elasticsearch, and 50+ data sources to visualise metrics, logs, and traces in a unified UI.
6mo ago Observability beginner
Greedy vs Lazy Quantifiers PHP 5.3+ 🧠 2
Greedy quantifiers (*, +, ?) match as much as possible; lazy quantifiers (*?, +?, ??) match as little as possible — the difference determines which text is captured when multiple matches are possible.
6mo ago Regex beginner
Diagram: Git Stash Git Stash 1.5 🧠 1
Temporarily shelves uncommitted changes so you can switch context — work in progress is saved to a stack and restored when you return.
6mo ago Git beginner
Diagram: Git Tags Git Tags 🧠 3
Named references to specific commits, used to mark release points — annotated tags include metadata and are signed; lightweight tags are just pointers.
6mo ago Git beginner
Guard Clause Pattern PHP 5.0+ 🧠 5
Return early from a function when a precondition fails, eliminating deeply nested if-else structures.
6mo ago Style beginner
Gzip / Brotli Compression
Compressing HTTP responses server-side reduces transfer size significantly, especially for text-based assets.
6mo ago Performance beginner
✓ schema.org compliant