#programming
Read more stories on Hashnode
Articles with this tag
Overcomplicating Naming Leads to Chaos · TL;DR: Naming is hard, don't make it harder with unnecessary accidental complexity. Problems Unclear,...
Don't forget to check strings with special characters like underscores · TL;DR: Underscore and special characters can lead to validation...
Eliminating The Billion-Dollar Mistake forever · TL;DR: Use the Null Object Pattern to eliminate null checks and simplify your code. Problems...
Avoiding the Null Trap in Privilege Mode Drivers · TL;DR: Using null pointers in critical code can crash your system Problems Memory access...
Don't rely on things that can change without you noticing them · TL;DR: Tests must be in full control. Problems Unreliable tests Difficult...
The Dangers of Hardcoding Secrets · TL;DR: Use a secret manager to avoid hardcoding sensitive information. Problems Security risk Hard to update by...