-
Notifications
You must be signed in to change notification settings - Fork 5
Clean Code Ideas
nh916 edited this page Jul 25, 2023
·
4 revisions
When calling functions, methods, or classes, named arguments are preferred over positional arguments, as they are more explicit, easier to read, and easier to maintain.
- Clean Code Book
- Robert C. Martin AKA Uncle Bob is a great engineer with great ideas. Many of his books are fantastic
- The Pragmatic Programmer: From Journeyman to Master
- Design Patterns: Elements of Reusable Object-Oriented Software
- Refactoring: Improving the Design of Existing Code
- Head First Design Patterns
- Code Complete
- Test-Driven Development: By Example
- Grokking Algorithms An Illustrated Guide For Programmers and Other Curious People
- Introduction to Algorithms
- The Mythical Man-Month: Essays on Software Engineering