Это видео недоступно.
Сожалеем об этом.

Principles of Component Design - Part 2

Поделиться
HTML-код
  • Опубликовано: 22 авг 2024

Комментарии • 7

  • @FantasyTeddy
    @FantasyTeddy Месяц назад

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

    • @AboutCleanCode
      @AboutCleanCode  Месяц назад +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 Месяц назад

    I clean my code with dawn dish soap.

    • @AboutCleanCode
      @AboutCleanCode  Месяц назад

      @andrewallbright658 interesting approach 😉

  • @pl4gueis
    @pl4gueis Месяц назад

    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  Месяц назад +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

      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.