Principles of Component Design - Part 2

Поділитися
Вставка
  • Опубліковано 15 вер 2024

КОМЕНТАРІ • 7

  • @FantasyTeddy
    @FantasyTeddy 2 місяці тому

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

    • @AboutCleanCode
      @AboutCleanCode  2 місяці тому +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 2 місяці тому

    I clean my code with dawn dish soap.

    • @AboutCleanCode
      @AboutCleanCode  2 місяці тому

      @andrewallbright658 interesting approach 😉

  • @pl4gueis
    @pl4gueis 2 місяці тому

    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  2 місяці тому +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 2 місяці тому +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.