Five Lines of Code
- 8h 24m 51s
- Christian Clausen
- Manning Publications
- 2021
Five Lines of Code teaches refactoring that's focused on concrete rules and getting any method down to five lines or less! There’s no jargon or tricky automated-testing skills required, just easy guidelines and patterns illustrated by detailed code samples.
In Five Lines of Code, you will learn:
- The signs of bad code
- Improving code safely, even when you don’t understand it
- Balancing optimization and code generality
- Proper compiler practices
- The extract method, introducing strategy pattern, and many other refactoring patterns
- Writing stable code that enables change-by-addition
- Writing code that needs no comments
- Real-world practices for great refactoring
About the Technology
Every codebase includes mistakes and inefficiencies that you need to find and fix. Refactor the right way, and your code becomes elegant, easy to read, and easy to maintain. In this book, you’ll learn a unique approach to refactoring that implements any method in five lines or fewer. You’ll also discover a secret most senior devs know: Sometimes it’s quicker to hammer out code and fix it later!
About the Audience
For developers of all skill levels. Examples use easy-to-read Typescript, in the same style as Java and C#.
About the Author
Christian Clausen works as a technical agile coach, teaching teams how to refactor code.
In this Audiobook
-
Chapter 1 - Refactoring refactoring
-
Chapter 2 - Looking under the hood of refactoring
-
Chapter 3 - Shatter long functions
-
Chapter 4 - Make type codes work
-
Chapter 5 - Fuse similar code together
-
Chapter 6 - Defend the data
-
Chapter 7 - Collaborate with the compiler
-
Chapter 8 - Stay away from comments
-
Chapter 9 - Love deleting code
-
Chapter 10 - Never be afraid to add code
-
Chapter 11 - Follow the structure in the code
-
Chapter 12 - Avoid optimizations and generality
-
Chapter 13 - Make bad code look bad
-
Chapter 14 - Wrapping up