@Uladzimir Halushkla
Don't repeat yourself
Keep it simple, stupid
Single responsibility principle
a class should have only a single responsibility
"software entities … should be open for extension, but closed for modification."
"objects in a program should be replaceable with instances of their subtypes"
Interface segregation principle
"many client-specific interfaces are better than one general-purpose interface.
Dependency inversion principle
one should "depend upon abstractions, [not] concretions.