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