Share your favorite tips for writing clean and maintainable code that others in the community might find helpful.
Follow the CodeNewbie Org and #codenewbie for more discussions and online camaraderie!
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (2)
When writing code with the order of preference being correct, solid (errorproof), clean, and beautiful (elegant or idiomatic), consider the following principles:
Correct:
Code Craft: The Practice of Writing Excellent Code by Pete Goodliffe | Goodreads
Many programmers know how to write correct code - code …
Solid (Errorproof):
Writing Solid Code by Steve Maguire | Goodreads
Fatbrain Review Explains Microsoft's techniques for de…
Clean:
The Robert C. Martin Clean Code Collection by Robert C. Martin | Goodreads
The Robert C. Martin Clean Code Collection consists of …
Beautiful (Elegant or Idiomatic):
Beautiful Code: Leading Programmers Explain How They Think by Andy Oram | Goodreads
How do the experts solve difficult problems in software…
Nice Sachin!