Удален по просьбе правообладателя
  1. Урок 1. 00:05:29
    Welcome!
  2. Урок 2. 00:01:12
    Intro to section 1
  3. Урок 3. 00:00:54
    Installing Git
  4. Урок 4. 00:03:49
    Installing Go
  5. Урок 5. 00:05:24
    Installing Visual Studio Code
  6. Урок 6. 00:02:09
    Get the code
  7. Урок 7. 00:04:24
    Your First Go Program
  8. Урок 8. 00:06:24
    Go Documentation on golang.org
  9. Урок 9. 00:02:49
    The Go Playground
  10. Урок 10. 00:00:47
    Intro to section 2
  11. Урок 11. 00:05:08
    Variables
  12. Урок 12. 00:02:22
    Control Structures 1 - if
  13. Урок 13. 00:01:48
    Control Structures 2 - switch
  14. Урок 14. 00:04:55
    Control Structures 3 - for
  15. Урок 15. 00:04:38
    A Quick Intro to Using Libraries
  16. Урок 16. 00:03:15
    Input and Output 1 - Printing
  17. Урок 17. 00:04:08
    Input and Output 2 - Scanning
  18. Урок 18. 00:01:46
    Input and Output 3 - Command Line
  19. Урок 19. 00:03:51
    Input and Output 4 - Flags
  20. Урок 20. 00:02:09
    Exercise: Build Your First Little Commandline Tool!
  21. Урок 21. 00:05:38
    Strings 1 - Basics
  22. Урок 22. 00:04:40
    Strings 2 - Unicode
  23. Урок 23. 00:01:58
    Strings 3 - Literals
  24. Урок 24. 00:06:57
    Numeric Data Types 1 - Integers and Booleans
  25. Урок 25. 00:04:02
    Numeric Data Types 2 - Floating Point Numbers
  26. Урок 26. 00:05:46
    Numeric Data Types 3 - Floating Point Tips
  27. Урок 27. 00:02:24
    Numeric Data Types 4 - Complex Numbers
  28. Урок 28. 00:07:27
    Constants
  29. Урок 29. 00:05:57
    Pointers
  30. Урок 30. 00:04:26
    Functions 1 - Declaring Functions
  31. Урок 31. 00:04:19
    Functions 2 - Function Behavior (recursion, deferred functions, scope)
  32. Урок 32. 00:06:31
    Functions 3 - Function Values and Closures
  33. Урок 33. 00:02:34
    Functions 4 - Functions and Pointers
  34. Урок 34. 00:08:54
    Error Handling
  35. Урок 35. 00:06:39
    Error Inspection
  36. Урок 36. 00:04:34
    Packages and Libraries 1 - Using Third-Party Packages
  37. Урок 37. 00:05:37
    Packages and Libraries 2 - Creating Custom Packages
  38. Урок 38. 00:05:14
    Packages and Libraries 3 - Publish Your Package
  39. Урок 39. 00:03:16
    Packages and Libraries 4 - Sub-Packages
  40. Урок 40. 00:02:06
    Modules 1 - Definition
  41. Урок 41. 00:03:06
    Modules 2 - Creating a Module
  42. Урок 42. 00:02:34
    Modules 3 - Add Version Information
  43. Урок 43. 00:06:01
    Modules 4 - Using Modules
  44. Урок 44. 00:07:20
    Modules 5 - Local Development
  45. Урок 45. 00:08:22
    Modules 6 - Dependency Maintenance
  46. Урок 46. 00:08:25
    Modules 8 - How Go Selects a Module Version
  47. Урок 47. 00:06:46
    Exercise: Bank Account
  48. Урок 48. 00:00:46
    Intro to section 3
  49. Урок 49. 00:05:19
    Arrays
  50. Урок 50. 00:06:38
    Slices
  51. Урок 51. 00:02:20
    Pass-By-Value Semantics seem to break! (Or do they?)
  52. Урок 52. 00:03:42
    Byte Slices and Strings
  53. Урок 53. 00:07:31
    Maps
  54. Урок 54. 00:03:28
    Type Declarations
  55. Урок 55. 00:04:28
    Type Aliases
  56. Урок 56. 00:07:20
    Struct Basics
  57. Урок 57. 00:03:09
    Struct embedding and anonymous fields
  58. Урок 58. 00:02:38
    Struct field tags and JSON
  59. Урок 59. 00:08:36
    Methods
  60. Урок 60. 00:02:46
    Method Sets
  61. Урок 61. 00:07:44
    Interfaces 1 - Representing Behavior
  62. Урок 62. 00:05:36
    Interfaces 2 - Interfaces as Parameters
  63. Урок 63. 00:01:33
    Interfaces 4 - Internals (and a gotcha)
  64. Урок 64. 00:05:36
    Generics 1 - Type Parameters
  65. Урок 65. 00:07:06
    Generics 2 - Type Constraints
  66. Урок 66. 00:05:52
    Generics 3 - Generic Interface Functions
  67. Урок 67. 00:03:29
    Exercise: write a Web service - part 1: the Web server
  68. Урок 68. 00:02:03
    Exercise: write a Web service - part 2: routing
  69. Урок 69. 00:03:13
    Exercise: write a Web service - part 3: handling requests
  70. Урок 70. 00:05:38
    Exercise: write a Web service - part 4: the data store
  71. Урок 71. 00:01:09
    Intro to section 4
  72. Урок 72. 00:04:38
    Compiling with go run, go build, and go install
  73. Урок 73. 00:05:37
    Conditional compilation
  74. Урок 74. 00:05:41
    The Go Module Proxy and the Go Sum DB
  75. Урок 75. 00:05:15
    Configuring Proxy and Sum Servers
  76. Урок 76. 00:02:26
    Formatting your code with go fmt
  77. Урок 77. 00:08:24
    Testing with go test
  78. Урок 78. 00:03:27
    Testing - Good test design, and how to verify test coverage
  79. Урок 79. 00:06:41
    Testing - Subtests, parallel tests, and table-driven tests
  80. Урок 80. 00:12:27
    Testing - Fuzzing
  81. Урок 81. 00:04:31
    Testing - Benchmarking with go test
  82. Урок 82. 00:03:29
    Documentation - Create documentation from code
  83. Урок 83. 00:02:46
    Documentation - godoc and go doc
  84. Урок 84. 00:00:32
    Intro to section 5
  85. Урок 85. 00:09:52
    Reflection