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