1. Урок 1. 00:02:56
    Environment Setup
  2. Урок 2. 00:02:47
    VSCode Installation
  3. Урок 3. 00:03:23
    Go Support in VSCode
  4. Урок 4. 00:03:12
    Boring Ol' Hello World
  5. Урок 5. 00:06:17
    Five Important Questions
  6. Урок 6. 00:06:11
    Go Packages
  7. Урок 7. 00:03:59
    Import Statements
  8. Урок 8. 00:03:35
    File Organization
  9. Урок 9. 00:02:32
    Project Overview
  10. Урок 10. 00:01:56
    New Project Folder
  11. Урок 11. 00:10:41
    Variable Declarations
  12. Урок 12. 00:07:43
    Functions and Return Types
  13. Урок 13. 00:10:50
    Slices and For Loops
  14. Урок 14. 00:04:34
    OO Approach vs Go Approach
  15. Урок 15. 00:06:41
    Custom Type Declarations
  16. Урок 16. 00:06:17
    Receiver Functions
  17. Урок 17. 00:10:58
    Creating a New Deck
  18. Урок 18. 00:05:57
    Slice Range Syntax
  19. Урок 19. 00:08:12
    Multiple Return Values
  20. Урок 20. 00:07:00
    Byte Slices
  21. Урок 21. 00:07:27
    Deck to String
  22. Урок 22. 00:06:37
    Joining a Slice of Strings
  23. Урок 23. 00:07:03
    Saving Data to the Hard Drive
  24. Урок 24. 00:11:19
    Reading From the Hard Drive
  25. Урок 25. 00:07:53
    Error Handling
  26. Урок 26. 00:09:43
    Shuffling a Deck
  27. Урок 27. 00:10:31
    Random Number Generation
  28. Урок 28. 00:03:41
    Testing With Go
  29. Урок 29. 00:12:04
    Writing Useful Tests
  30. Урок 30. 00:04:23
    Asserting Elements in a Slice
  31. Урок 31. 00:09:53
    Testing File IO
  32. Урок 32. 00:06:18
    Project Review
  33. Урок 33. 00:04:44
    Structs in Go
  34. Урок 34. 00:03:55
    Defining Structs
  35. Урок 35. 00:04:52
    Declaring Structs
  36. Урок 36. 00:05:37
    Updating Struct Values
  37. Урок 37. 00:06:31
    Embedding Structs
  38. Урок 38. 00:07:27
    Structs with Receiver Functions
  39. Урок 39. 00:05:53
    Pass By Value
  40. Урок 40. 00:03:13
    Structs with Pointers
  41. Урок 41. 00:10:14
    Pointer Operations
  42. Урок 42. 00:06:27
    Pointer Shortcut
  43. Урок 43. 00:04:10
    Gotchas With Pointers
  44. Урок 44. 00:07:39
    Reference vs Value Types
  45. Урок 45. 00:05:48
    What's a Map?
  46. Урок 46. 00:04:56
    Manipulating Maps
  47. Урок 47. 00:05:17
    Iterating Over Maps
  48. Урок 48. 00:05:55
    Differences Between Maps and Structs
  49. Урок 49. 00:09:26
    Purpose of Interfaces
  50. Урок 50. 00:10:15
    Problems Without Interfaces
  51. Урок 51. 00:09:17
    Interfaces in Practice
  52. Урок 52. 00:07:49
    Rules of Interfaces
  53. Урок 53. 00:06:59
    Extra Interface Notes
  54. Урок 54. 00:08:00
    The HTTP Package
  55. Урок 55. 00:05:36
    Reading the Docs
  56. Урок 56. 00:03:14
    More Interface Syntax
  57. Урок 57. 00:01:54
    Interface Review
  58. Урок 58. 00:08:18
    The Reader Interface
  59. Урок 59. 00:07:24
    More on the Reader Interface
  60. Урок 60. 00:05:39
    Working with the Read Function
  61. Урок 61. 00:04:16
    The Writer Interface
  62. Урок 62. 00:05:13
    The io.Copy Function
  63. Урок 63. 00:04:34
    The Implementation of io.Copy
  64. Урок 64. 00:07:57
    A Custom Writer
  65. Урок 65. 00:05:29
    Website Status Checker
  66. Урок 66. 00:04:33
    Printing Site Status
  67. Урок 67. 00:03:28
    Serial Link Checking
  68. Урок 68. 00:07:13
    Go Routines
  69. Урок 69. 00:08:42
    Theory of Go Routines
  70. Урок 70. 00:06:10
    Channels
  71. Урок 71. 00:09:17
    Channel Implementation
  72. Урок 72. 00:09:56
    Blocking Channels
  73. Урок 73. 00:03:33
    Receiving Messages
  74. Урок 74. 00:06:46
    Repeating Routines
  75. Урок 75. 00:03:59
    Alternative Loop Syntax
  76. Урок 76. 00:06:15
    Sleeping a Routine
  77. Урок 77. 00:04:49
    Function Literals
  78. Урок 78. 00:10:33
    Channels Gotcha!