Этот материал находится в платной подписке. Оформи премиум подписку и смотри или слушай Writing Clean Code, а также все другие курсы, прямо сейчас!
Премиум
  1. Урок 1. 00:02:28
    Introduction
  2. Урок 2. 00:00:40
    Credit
  3. Урок 3. 00:01:13
    Exercise Files
  4. Урок 4. 00:01:30
    Course Agenda
  5. Урок 5. 00:07:08
    Writing Good Names
  6. Урок 6. 00:07:46
    Naming Variables - Example 1
  7. Урок 7. 00:08:20
    Naming Variables - Example 2
  8. Урок 8. 00:04:36
    Naming Variables - Example 3
  9. Урок 9. 00:07:19
    Naming Variables - Example 4
  10. Урок 10. 00:10:34
    Naming for Classes and Functions
  11. Урок 11. 00:04:58
    How to Write Good Comments?
  12. Урок 12. 00:05:14
    What are Bad Comments
  13. Урок 13. 00:10:19
    Writing Small Functions to Do Just One Thing
  14. Урок 14. 00:06:48
    Return Paths
  15. Урок 15. 00:10:23
    Function Arguments - Less is More
  16. Урок 16. 00:10:04
    Hiding the Implementation Details Through Abstraction
  17. Урок 17. 00:10:21
    Data/Object Anti-Symmetry
  18. Урок 18. 00:04:52
    Writing Plain Dummy Objects for Network Transfer
  19. Урок 19. 00:03:52
    Understanding ORM Generated Classes for Database Interaction
  20. Урок 20. 00:07:26
    Throwing Exceptions
  21. Урок 21. 00:09:43
    Example 1 - Error Handling
  22. Урок 22. 00:05:52
    Example 2 - Error Handling
  23. Урок 23. 00:00:37
    NOTE: Important Information about this Section
  24. Урок 24. 00:03:15
    What is TDD?
  25. Урок 25. 00:03:46
    Why should you use TDD?
  26. Урок 26. 00:04:08
    What you should test and what you should not?
  27. Урок 27. 00:03:35
    When should you use TDD?
  28. Урок 28. 00:04:01
    Common misconceptions about TDD
  29. Урок 29. 00:03:56
    Rules of writing good test
  30. Урок 30. 00:01:54
    Understanding the scenario
  31. Урок 31. 00:14:26
    Writing your first unit test
  32. Урок 32. 00:10:01
    Adding test for depositing money to bank account
  33. Урок 33. 00:01:20
    Challenge: Write a unit test to withdraw amount from a bank account
  34. Урок 34. 00:09:12
    Solution: Write a unit test to withdraw amount from a bank account
  35. Урок 35. 00:10:21
    Class Organization
  36. Урок 36. 00:09:33
    Classes Should be Small
  37. Урок 37. 00:02:52
    Understanding Cohesion
  38. Урок 38. 00:14:06
    Open-Closed Principle - Example 1
  39. Урок 39. 00:13:10
    Open-Closed Principle - Example 2
  40. Урок 40. 00:24:06
    Dependency Injection
  41. Урок 41. 00:02:14
    Next Steps