Alex On’s Reviews > Clean Architecture > Status Update
Alex On
is on page 133 of 432
Author talked about depency management, stability and abstractness of a component hierarchy.
A component that is 100% concrete and stable is very hard to work with as a volatile component.
A component that is 100% abstract and unstable is useless as a volatile component.
Some principles: SDP an ADP. SDP stands for Stable Dependencies Principle and ADP stands for Acyclic dependencies principle.
— Aug 17, 2021 03:06AM
A component that is 100% concrete and stable is very hard to work with as a volatile component.
A component that is 100% abstract and unstable is useless as a volatile component.
Some principles: SDP an ADP. SDP stands for Stable Dependencies Principle and ADP stands for Acyclic dependencies principle.
Like flag
Alex’s Previous Updates
Alex On
is on page 189 of 432
Policy and level. The closer the code is to the input and output for example: console.log() or with nodejs process.stdin, process.stdout the lower the level.
Low level code should not change high level code. One way to seperate them is to use dependency inversion which involves using an interface to reverse the dependency.
— Sep 15, 2021 03:30PM
Low level code should not change high level code. One way to seperate them is to use dependency inversion which involves using an interface to reverse the dependency.
Alex On
is on page 93 of 432
Some problems and solutions with Liskovs substitution principle and dependency inversion principle.
— Aug 15, 2021 12:28AM
Alex On
is on page 33 of 432
So far very interesting and easy to understand.
A clean architecture makes coding less expensive in large projects.
— Aug 11, 2021 07:27PM
A clean architecture makes coding less expensive in large projects.

