Advanced terms
Cryptographic proof that data was created by the holder of a private key and has not been altered — providing authentication, integrity, and non-repudiation.
3mo ago
cryptography advanced
Disjunctive Normal Form Types (PHP 8.2)
PHP 8.2+
DNF types combine intersection and union types with parentheses — (Countable&Iterator)|null — filling gaps in PHP 8.0/8.1's type system.
3mo ago
php advanced
DNS Rebinding Attack
PHP 5.0+
An attacker tricks a browser into associating their malicious domain with an internal IP, bypassing same-origin policy to reach internal services.
CWE-350 OWASP A1:2021
3mo ago
security advanced
8.8
Named, immutable records of something that happened in the domain — 'OrderPlaced', 'PaymentReceived' — enabling decoupled reactions without direct service calls.
3mo ago
architecture advanced
An approach to software development that focuses on modelling the core domain using the language and concepts of domain experts.
3mo ago
architecture advanced
An optimisation technique that solves problems by breaking them into overlapping subproblems, storing results to avoid redundant computation.
3mo ago
algorithms advanced