Advanced terms
using & await using (TS 5.2 Explicit Resource Management)
5.2
2
TypeScript 5.2 using keyword automatically disposes resources (DB connections, file handles) when they go out of scope — like C# using or Python with.
6mo ago
TypeScript advanced
Unicode Normalisation Attack
PHP 5.3+
1
Exploiting differences in Unicode normalisation forms to bypass input filters — two visually identical strings that differ at the byte level.
CWE-176 OWASP A3:2021
6mo ago
Security advanced
5.3
Unit of Work
5
A pattern that tracks all changes made to domain objects during a business transaction and coordinates writing them out as a single atomic database operation.
6mo ago
Code Quality advanced