
Refactoring: clean your code
Refactoring Refactoring is a systematic process of improving code without creating new functionality that can transform a mess into clean code and simple design.
Refactoring and Design Patterns
Refactoring is a controllable process of improving code without creating new functionality. Design Patterns are typical solutions to the commonly occurring problems in software design.
Refactorización y patrones de diseño
Refactoring.Guru te ayuda a descubrir todo lo que necesitas saber sobre la refactorización, los patrones de diseño, los principios SOLID y otros temas de la programación inteligente.
Refactoring Techniques
Much of refactoring is devoted to correctly composing methods. In most cases, excessively long methods are the root of all evil. The vagaries of code inside these methods conceal the execution …
Clean code - Refactoring.Guru
Clean code The main purpose of refactoring is to fight technical debt. It transforms a mess into clean code and simple design. Nice! But what’s clean code, anyway? Here are some of its features: Clean …
Catalog of Refactoring
Refactoring Techniques Composing Methods Much of refactoring is devoted to correctly composing methods. In most cases, excessively long methods are the root of all evil. The vagaries of code …
How to refactor
How to refactor Refactoring should be done as a series of small changes, each of which makes the existing code slightly better while still leaving the program in working order. Checklist of refactoring …
Interactive Refactoring Course: Dive Into Refactoring
Dive Into Refactoring teaches you how to properly deal with legacy code, how to identify ugly code and how to clean it safely. The course covers 21 smells of bad code and 66 refactoring techniques to fix …
When to refactor
When adding a feature Refactoring helps you understand other people’s code. If you have to deal with someone else’s dirty code, try to refactor it first. Clean code is much easier to grasp. You will …
Modern Book on Design Patterns: Dive Into Design Patterns
Dive Into Design Patterns is a modern book on design patterns and principles. It's available in PDF/ePUB/MOBI/KFX formats and includes the archive with code examples in C#, C++, Go, Java, …