Удален по просьбе правообладателя
  • Урок 1. 00:01:32
    Welcome
  • Урок 2. 00:02:18
    What will you learn in this course?
  • Урок 3. 00:01:18
    Who is the course for and prerequisites
  • Урок 4. 00:02:43
    Why Clean Code is essential
  • Урок 5. 00:01:06
    The Boy Scout Rule
  • Урок 6. 00:01:12
    The Broken Windows Theory
  • Урок 7. 00:00:48
    The YAGNI principle
  • Урок 8. 00:00:55
    The KISS principle
  • Урок 9. 00:01:40
    The Principle of Least Surprise
  • Урок 10. 00:02:28
    What is Coupling?
  • Урок 11. 00:01:07
    What is Cohesion?
  • Урок 12. 00:02:19
    Readability vs Performance
  • Урок 13. 00:02:28
    Spotting Duplication
  • Урок 14. 00:02:00
    Writing Idiomatic code
  • Урок 15. 00:00:35
    Section Recap
  • Урок 16. 00:00:34
    Introduction
  • Урок 17. 00:02:31
    The impact of Naming
  • Урок 18. 00:02:26
    How long should a Name be
  • Урок 19. 00:03:35
    Naming Variables
  • Урок 20. 00:02:20
    Naming Booleans
  • Урок 21. 00:04:25
    Naming Methods
  • Урок 22. 00:03:18
    Naming Classes
  • Урок 23. 00:02:30
    Using Acronyms and Abbreviations
  • Урок 24. 00:00:48
    Section Recap
  • Урок 25. 00:00:28
    Introduction
  • Урок 26. 00:05:55
    Good and Bad Comments
  • Урок 27. 00:01:14
    Removing Historic Comments
  • Урок 28. 00:02:20
    Converting Comments to Code
  • Урок 29. 00:04:12
    Removing Formatting Comments
  • Урок 30. 00:02:03
    Replacing Comments with Tests
  • Урок 31. 00:00:40
    Section Recap
  • Урок 32. 00:00:38
    Introduction
  • Урок 33. 00:01:57
    Applying Indentation
  • Урок 34. 00:02:07
    Using Braces
  • Урок 35. 00:02:46
    Using Whitespace
  • Урок 36. 00:03:13
    Vertically Ordering a Class
  • Урок 37. 00:00:20
    Section Recap
  • Урок 38. 00:00:24
    Introduction
  • Урок 39. 00:05:01
    Writing Boolean Comparisons
  • Урок 40. 00:02:00
    Removing Double Negatives
  • Урок 41. 00:02:40
    Avoiding short-circuits
  • Урок 42. 00:06:29
    Avoiding Magic Numbers
  • Урок 43. 00:05:55
    Expressive Switch Statements
  • Урок 44. 00:00:43
    Section Recap
  • Урок 45. 00:00:52
    Introduction
  • Урок 46. 00:04:08
    Removing Nesting
  • Урок 47. 00:03:04
    Returning early
  • Урок 48. 00:03:34
    Using Guard Clauses
  • Урок 49. 00:06:10
    Applying the Single Responsibility Principle
  • Урок 50. 00:04:08
    Removing Flag Arguments
  • Урок 51. 00:04:12
    Parameter Order
  • Урок 52. 00:03:18
    Controlling the number of Parameters
  • Урок 53. 00:03:09
    Output Parameters
  • Урок 54. 00:01:54
    Working with collections
  • Урок 55. 00:00:45
    Section Recap
  • Урок 56. 00:00:33
    Introduction
  • Урок 57. 00:03:32
    Exceptions vs Error Codes
  • Урок 58. 00:03:52
    Writing the Try-Catch block
  • Урок 59. 00:03:45
    Providing Context with Exceptions
  • Урок 60. 00:00:32
    Section Recap
  • Урок 61. 00:00:41
    Introduction
  • Урок 62. 00:03:38
    Applying the Single Responsibility Principle
  • Урок 63. 00:02:38
    Segregating Interface
  • Урок 64. 00:02:32
    Writing Constructors
  • Урок 65. 00:01:51
    Removing Nested Classes
  • Урок 66. 00:07:26
    Converting anemic to rich objects
  • Урок 67. 00:04:25
    Primitive Obsession
  • Урок 68. 00:00:52
    Section Recap
  • Урок 69. 00:00:28
    Introduction
  • Урок 70. 00:01:00
    The Problem of Nulls
  • Урок 71. 00:05:59
    Creating Null Objects
  • Урок 72. 00:03:26
    Rewriting Null Returns
  • Урок 73. 00:00:28
    Section Recap
  • Урок 74. 00:00:37
    Introduction
  • Урок 75. 00:01:33
    The importance of Tests to Clean Code
  • Урок 76. 00:04:18
    Writing better assertions
  • Урок 77. 00:04:50
    Using the Act, Arrange, Assert structure
  • Урок 78. 00:03:10
    Replacing Mocks with real Objects
  • Урок 79. 00:05:25
    Using Test Data Builders
  • Урок 80. 00:02:47
    Using realistic test data
  • Урок 81. 00:00:46
    Section Recap
  • Урок 82. 00:00:55
    Introduction
  • Урок 83. 00:03:04
    Measuring code complexity
  • Урок 84. 00:03:50
    Using refactoring tools
  • Урок 85. 00:04:22
    Applying Standards with an editorconfig
  • Урок 86. 00:01:32
    Using a Spell Checker
  • Урок 87. 00:01:55
    Enforcing Code Quality
  • Урок 88. 00:00:38
    Section Recap
  • Урок 89. 00:25:17
    Refactoring Walkthrough
  • Урок 90. 00:01:36
    Conclusion