Principles of Component Design - Part 2

Sdílet
Vložit
  • čas přidán 22. 08. 2024

Komentáře • 7

  • @FantasyTeddy
    @FantasyTeddy Před měsícem

    Are there any tools available that calculate these metrics and help you visualizing them?

    • @AboutCleanCode
      @AboutCleanCode  Před měsícem +1

      @FantasyTeddy you could probably calculate these metrics with ndepend and similar tools. I ll definitively do some research and may develop my own small tool for the third part of this series 😉

  • @andrewallbright
    @andrewallbright Před měsícem

    I clean my code with dawn dish soap.

  • @pl4gueis
    @pl4gueis Před měsícem

    What did I just watch? Could you explain these things with some concrete examples and not just on an abstract university course level?

    • @AboutCleanCode
      @AboutCleanCode  Před měsícem +6

      @pl4gueis The intent of part 1 & 2 has been to explain the conceptual ideas. I am already planning a part 3 showing how to apply these principles in a concrete project 👍😉

    • @marikselazemaj3428
      @marikselazemaj3428 Před měsícem +2

      From what I understand, this centers around dependency management. A more concrete example would be that the Application layer should depend on the Domain layer, as opposed to the other way around, given that the Domain layer is generally more stable than the application layer.