Overview
Explore the importance of code quality and learn practical strategies to improve it in this insightful conference talk by Venkat Subramaniam. Discover the economic impact of poor code quality and understand what constitutes high-quality code. Learn to honor the Single Level of Abstraction Principle (SLAP), favor high cohesion and loose coupling, reveal intention in your code, avoid primitive obsession and overly clever solutions. Gain insights on effective commenting practices, the significance of meaningful naming conventions, and the value of tactical code reviews. Enhance your programming skills and contribute to creating more maintainable, efficient, and robust software systems.
Syllabus
Intro
Why should we care about the code quality?
First law of programming
Economic impact
What's quality code?
Ways to improve
Honor SLAP
Favor high cohesion & loose coupling
Reveal intention
Avoid primitive obsession
Avoid clever code
Comment "Why", not "What"
Give good meaningful names
Do tactical code reviews
Outro
Taught by
GOTO Conferences
Reviews
5.0 rating, based on 1 Class Central review
Showing Class Central Sort
-
point of view that Venkat articulates on he's very distinct style live-coding lessons is very different from other even champion graded language/framework advocates. The concept of simple monads like List or Optional used with Java streams really is paradigm shifting and we should really stop and listen, because it not only pleasure to hear from him, but also ups your code quality bigtime. stop null-check iffing, stop inner-looping and learn how to do things in the new functional-like style. it may not be very easy at the beginning, but this is the shift happening.