Summary of 'Clean Code' by Robert C. Martin

Code is clean if it can be understood easily – by everyone on the team. Clean code can be read and enhanced by a developer other than its original author. With understandability comes readability, changeability, extensibility and maintainability. General rules Follow standard conventions. Keep it simple stupid. Simpler is always better. Reduce complexity as much as possible. Boy scout rule. Leave the campground cleaner than you found it. Always find root cause....

January 12, 2024 · 3 min · 489 words · Wojtek Lukaszuk

A Exploration of SOLID Principles with Java Examples

Good software systems begin with clean code. On the one hand, if the bricks aren’t well made, the architecture of the building doesn’t matter much. On the other hand, you can make a substantial mess with well-made bricks. This is where the SOLID principles come in. - Robert C. Martin, Clean Architecture In the realm of software architecture, the SOLID principles stand as a beacon, guiding developers towards the creation of robust, maintainable, and scalable systems....

January 9, 2024 · 6 min · 1164 words · Me