Why You Should Never Use 'int' in Modern C
The int type is a portability disaster — its size varies across platforms, causing silent bugs and security vulnerabilities. Use fixed-width types like int32_t instead.
4 articles tagged with "anti-patterns"
The int type is a portability disaster — its size varies across platforms, causing silent bugs and security vulnerabilities. Use fixed-width types like int32_t instead.
Exposing the most common dirty code anti-patterns — cryptic names, bloated functions, hidden side effects, and copy-paste disasters. Learn what not to do.
Real-world API anti-patterns that cause developer pain — inconsistent naming, swallowed errors, missing pagination, and no versioning. A guide to terrible API design.
The worst Docker mistakes in production — bloated images, running as root, no health checks, secrets baked into layers. A catalog of container anti-patterns.