Этот материал находится в платной подписке. Оформи премиум подписку и смотри или слушай Working with Design Patterns in Go (Golang), а также все другие курсы, прямо сейчас!
Премиум
  1. Урок 1. 00:05:57
    Introduction
  2. Урок 2. 00:01:02
    A bit about me
  3. Урок 3. 00:01:28
    Installing Go
  4. Урок 4. 00:03:15
    Installing an Integrated Development Environment
  5. Урок 5. 00:00:52
    Installing Docker
  6. Урок 6. 00:01:15
    Asking for Help
  7. Урок 7. 00:01:07
    Mistakes. We all make them.
  8. Урок 8. 00:00:59
    What we'll build in this section
  9. Урок 9. 00:02:13
    How web applications work
  10. Урок 10. 00:09:53
    Setting up our main application
  11. Урок 11. 00:02:31
    Installing a routing package
  12. Урок 12. 00:11:18
    Setting up routes
  13. Урок 13. 00:08:49
    Setting up a simple HTML template
  14. Урок 14. 00:16:37
    Creating a render function
  15. Урок 15. 00:04:33
    Rendering our first page
  16. Урок 16. 00:04:51
    Adding navigation
  17. Урок 17. 00:05:25
    Creating templates for all site pages
  18. Урок 18. 00:05:49
    Setting up a route & handler for site pages
  19. Урок 19. 00:02:14
    Trying out our template cache
  20. Урок 20. 00:22:48
    Adding WebP and jpeg images to the home page
  21. Урок 21. 00:01:03
    What we'll build in this section
  22. Урок 22. 00:06:24
    The Factory Pattern
  23. Урок 23. 00:13:39
    Setting up some types
  24. Урок 24. 00:02:51
    Creating a simple Factory
  25. Урок 25. 00:03:57
    Creating handlers for the simple Factory
  26. Урок 26. 00:09:25
    Setting up the front end
  27. Урок 27. 00:02:37
    Adding routes for our Factory handlers
  28. Урок 28. 00:01:24
    Trying our Factory pattern out
  29. Урок 29. 00:13:45
    The Abstract Factory pattern
  30. Урок 30. 00:08:36
    Creating an Abstract Factory
  31. Урок 31. 00:03:04
    Creating a route and handler for the Abstract Factory
  32. Урок 32. 00:05:09
    Updating the front end
  33. Урок 33. 00:02:10
    Trying out our Abstract Factory
  34. Урок 34. 00:00:36
    What we'll build in this section
  35. Урок 35. 00:01:26
    Adding a module to support MySQL/MariaDB
  36. Урок 36. 00:08:23
    Setting up a local MariaDB instance with Docker
  37. Урок 37. 00:11:44
    Connecting our application to MariaDB
  38. Урок 38. 00:01:28
    What we'll build in this section
  39. Урок 39. 00:12:15
    Writing our first database function
  40. Урок 40. 00:07:33
    Creating a handler to list dog breeds
  41. Урок 41. 00:02:52
    Updating the front end to fetch the list of dog breeds
  42. Урок 42. 00:14:19
    Updating the front end to display the list of dog breeds
  43. Урок 43. 00:10:23
    Writing a test for our handler
  44. Урок 44. 00:03:50
    Implementing the Repository pattern I
  45. Урок 45. 00:03:37
    Implementing the Repository pattern II
  46. Урок 46. 00:01:19
    Implementing the Repository pattern III
  47. Урок 47. 00:01:31
    Trying things out
  48. Урок 48. 00:03:33
    Implementing a test database repository
  49. Урок 49. 00:04:03
    Updating our handler test
  50. Урок 50. 00:00:52
    What we'll build in this section
  51. Урок 51. 00:06:56
    Creating a simple Singleton
  52. Урок 52. 00:04:15
    Updating our project to use our configuration package (singleton)
  53. Урок 53. 00:01:14
    What we'll build in this section
  54. Урок 54. 00:06:25
    The Builder Pattern (& Fluent Interface)
  55. Урок 55. 00:05:19
    Getting started with the Builder pattern in our project
  56. Урок 56. 00:08:32
    Setting up our Builder code
  57. Урок 57. 00:02:01
    Fixing three problems with our Builder code
  58. Урок 58. 00:05:33
    Setting up a handler to use our Builder pattern
  59. Урок 59. 00:01:02
    Setting up a route to our handler
  60. Урок 60. 00:06:12
    Modifying the front end to call our Builder route
  61. Урок 61. 00:01:14
    Challenge
  62. Урок 62. 00:02:22
    Solution to challenge
  63. Урок 63. 00:01:29
    What we'll cover in this section
  64. Урок 64. 00:22:43
    The Adapter Pattern - Overview
  65. Урок 65. 00:03:34
    Installing an application to serve JSON and XML
  66. Урок 66. 00:07:28
    Setting up the Adapter type & the Adaptee
  67. Урок 67. 00:02:34
    Adding the Adapter to our application config
  68. Урок 68. 00:02:35
    Setting up a handler
  69. Урок 69. 00:02:25
    Adding a route
  70. Урок 70. 00:02:03
    Updating the Cat Breeds template
  71. Урок 71. 00:09:24
    Switching adapters from JSON to XML
  72. Урок 72. 00:05:00
    Adding a test for the Cat Breeds handler, using our adapter pattern
  73. Урок 73. 00:01:14
    What we'll cover in this section
  74. Урок 74. 00:02:55
    Creating a stub AnimalFromAbstractFactory handler
  75. Урок 75. 00:04:53
    Creating a New factory function for pet with embedded breed
  76. Урок 76. 00:08:07
    Creating stub newPetWithBreed method for Cats and Dogs
  77. Урок 77. 00:08:18
    Adding a GetDogBreedByName method in the database Repository
  78. Урок 78. 00:02:12
    Refactoring adapters.go to new package
  79. Урок 79. 00:04:05
    Adding a GetCatBreedByName method on our JSON adapter
  80. Урок 80. 00:03:15
    Adding a GetCatBreedByName method on our XML adapter
  81. Урок 81. 00:08:48
    Finishing up the new Adapter and Abstract Factory code
  82. Урок 82. 00:02:58
    Finishing up the changes in our Abstract Factory to use the new adapters
  83. Урок 83. 00:04:43
    Setting up a route to our stub handler
  84. Урок 84. 00:04:11
    Finishing off the handler code
  85. Урок 85. 00:07:04
    Updating the front end to try things out
  86. Урок 86. 00:04:22
    Writing the necessary javascript to call our back end
  87. Урок 87. 00:01:30
    What we'll cover in this section
  88. Урок 88. 00:02:04
    Setting up a route and a stub handler
  89. Урок 89. 00:01:41
    Setting up the database table
  90. Урок 90. 00:06:25
    Adding database methods for Dog of Month
  91. Урок 91. 00:07:53
    Completing our DogOfMonth handler
  92. Урок 92. 00:07:08
    Creating the Dog of Month template and trying things out
  93. Урок 93. 00:02:57
    What we'll cover in this section
  94. Урок 94. 00:08:08
    Worker Pool Overview
  95. Урок 95. 00:02:31
    Setting up a Go Workspace to develop our new module
  96. Урок 96. 00:06:12
    Getting started with the App and Streamer projects
  97. Урок 97. 00:07:56
    Creating a Factory function for our Worker Pool
  98. Урок 98. 00:03:06
    Getting started on the worker pool functionality
  99. Урок 99. 00:03:11
    Setting up the Processor type
  100. Урок 100. 00:12:18
    Setting up the Pool functionality
  101. Урок 101. 00:08:34
    Creating Videos to send to the worker pool
  102. Урок 102. 00:04:43
    Sending videos to the worker pool
  103. Урок 103. 00:13:10
    Filling in the encode() function's logic
  104. Урок 104. 00:12:57
    Trying things out and tracing through program execution
  105. Урок 105. 00:02:20
    Installing ffmpeg
  106. Урок 106. 00:06:06
    Adding logic to encode to MP4
  107. Урок 107. 00:02:49
    Trying out the EncodeToMP4 method
  108. Урок 108. 00:05:30
    Adding logic to encode to HLS: Part One
  109. Урок 109. 00:16:44
    Adding logic to encode to HLS: Part Two
  110. Урок 110. 00:03:22
    Trying out our HLS encoder
  111. Урок 111. 00:02:46
    Adding random filename generation to our videos
  112. Урок 112. 00:07:01
    Trying out our worker pool with four videos
  113. Урок 113. 00:06:57
    Adding streamer to our Breeders project