Удален по просьбе правообладателя
  1. Урок 1. 00:05:34
    Discord + Github
  2. Урок 2. 00:11:15
    Program intro and Golang Installation
  3. Урок 3. 00:12:39
    Variables
  4. Урок 4. 00:30:31
    Builtin and custom types
  5. Урок 5. 00:12:32
    Enums
  6. Урок 6. 00:11:21
    Control structures
  7. Урок 7. 00:26:35
    Interfaces
  8. Урок 8. 00:28:53
    Modules
  9. Урок 9. 00:17:26
    Advanced type techniques
  10. Урок 10. 00:23:56
    Advanced interfaces and typed functions
  11. Урок 11. 00:12:08
    Generics
  12. Урок 12. 00:20:37
    Pointers
  13. Урок 13. 00:18:16
    Writing tests
  14. Урок 14. 00:21:33
    Intro to goroutines and channels
  15. Урок 15. 00:17:30
    Working with channels
  16. Урок 16. 00:21:00
    Control flow and synchronization example
  17. Урок 17. 00:23:41
    Mutexes and atomic values
  18. Урок 18. 00:24:12
    Package context
  19. Урок 19. 00:22:18
    Practical example
  20. Урок 20. 00:38:27
    Hotel reservation backend - project setup
  21. Урок 21. 00:41:55
    Adding the database layer
  22. Урок 22. 00:39:42
    Creating and validating users
  23. Урок 23. 00:44:39
    User CRUD API
  24. Урок 24. 00:32:56
    Testing the user API handler
  25. Урок 25. 00:40:56
    Setting up our db seed script
  26. Урок 26. 00:40:45
    Hotel API
  27. Урок 27. 00:31:35
    Listing rooms API and small DB refactor
  28. Урок 28. 00:36:28
    JWT Authentication
  29. Урок 29. 00:42:43
    Authenticating users
  30. Урок 30. 00:36:15
    Creating tests for the authentication handler
  31. Урок 31. 00:33:01
    Booking API
  32. Урок 32. 00:34:53
    Validating bookings with mongodb filter query
  33. Урок 33. 00:39:41
    Admin authorization
  34. Урок 34. 00:40:37
    Canceling bookings
  35. Урок 35. 00:37:55
    Creating test fixtures
  36. Урок 36. 00:26:03
    Advanced testing of authorized handlers
  37. Урок 37. 00:32:33
    Practical error handling
  38. Урок 38. 00:44:02
    Architectural decisions and loose coupling the data layer.
  39. Урок 39. 00:33:30
    Pagination and filtering resources
  40. Урок 40. 00:34:57
    Configuration
  41. Урок 41. 00:21:55
    Dockerfile + Debug lesson
  42. Урок 42. 00:14:43
    Introduction and project overview
  43. Урок 43. 00:39:36
    Coding the OBU data sender
  44. Урок 44. 00:35:43
    Setting up the Kafka producer
  45. Урок 45. 00:34:13
    Producing to Kafka with logging middleware
  46. Урок 46. 00:40:51
    Implementing the distance calculator service
  47. Урок 47. 00:39:36
    Coding the invoice aggregator
  48. Урок 48. 00:31:21
    Aggregator HTTP transport client
  49. Урок 49. 00:34:04
    Aggregator invoice API handler
  50. Урок 50. 00:40:27
    Implementing GRPC and Protobuffers as our second transport layer
  51. Урок 51. 00:39:37
    Aggregator GRPC client
  52. Урок 52. 00:13:14
    Internal service communication
  53. Урок 53. 00:38:52
    Building a custom HTTP gateway
  54. Урок 54. 00:22:24
    Running and testing the gateway with all services
  55. Урок 55. 00:43:02
    Metrics layer with Prometheus
  56. Урок 56. 00:33:12
    Grafana introduction
  57. Урок 57. 00:16:09
    Service configuration for your devops team
  58. Урок 58. 00:29:14
    HTTP metrics
  59. Урок 59. 00:30:50
    Custom error handling
  60. Урок 60. 00:22:34
    Request tracing
  61. Урок 61. 00:50:16
    Building services with go-kit | setup
  62. Урок 62. 00:45:10
    Building services with go-kit | circuit breaking & rate limiting
  63. Урок 63. 00:41:34
    Finishing the aggregator service with go-kit
  64. Урок 64. 00:21:11
    The interviewing process
  65. Урок 65. 00:12:03
    Making an amazing GitHub profile
  66. Урок 66. 00:20:10
    Crafting a killer resume
  67. Урок 67. 00:19:31
    Tips and tricks during the interview
  68. Урок 68. 00:17:30
    How to close the skill gap
  69. Урок 69. 00:38:29
    Private and public key cryptography
  70. Урок 70. 00:27:12
    Implementing blocks with protobuffers
  71. Урок 71. 00:38:46
    UTXO transaction model
  72. Урок 72. 00:40:28
    Coding the node with GRPC transport
  73. Урок 73. 00:35:45
    Peer To Peer with GRPC
  74. Урок 74. 00:36:34
    Peer discovery with custom gossip protocol
  75. Урок 75. 00:40:38
    Blockchain data structure
  76. Урок 76. 00:38:21
    Transaction mempool
  77. Урок 77. 00:35:43
    Adding and validating blocks
  78. Урок 78. 00:31:24
    Creating transactions
  79. Урок 79. 00:34:13
    Transaction validation
  80. Урок 80. 00:38:23
    UTXO storage
  81. Урок 81. 00:41:02
    Implementing the Merkletree
  82. Урок 82. 00:40:49
    Fixing tests and debug session
  83. Урок 83. 00:20:11
    Finalizing creating valid blocks and transactions
  84. Урок 84. 00:32:06
    Peek reader and protocol design