From 1690e6b1e3befb61021a49dd12cf3f3a7c103c9c Mon Sep 17 00:00:00 2001 From: stepanleas <87002523+stepanleas@users.noreply.github.com> Date: Sun, 20 Oct 2024 18:10:42 +0300 Subject: [PATCH] Rename Effective Go to Go by Example. Remove MEAP status from Build an Orchestrator in Go and 100 Go Mistakes. (#152) Co-authored-by: stepan --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 4d32bba..08031db 100644 --- a/README.md +++ b/README.md @@ -387,11 +387,11 @@ Network Programming with Go will help you leverage Go to write secure, readable, Write your own fast, reliable, and cross-platform command-line tools with the Go programming language. Go might be the fastest—and perhaps the most fun—way to automate tasks, analyze data, parse logs, talk to network services, or address other systems requirements. Create all kinds of command-line tools that work with files, connect to services, and manage external processes, all while using tests and benchmarks to ensure your programs are fast and correct. -### 2021 - [Effective Go](https://www.manning.com/books/effective-go) +### 2021 - [Go by Example](https://www.manning.com/books/go-by-example) - + -Effective Go is a practical guide to writing high-quality code that’s easy to test and maintain. The book is full of best practices to adopt and anti-patterns to dodge. It explores what makes Go so dramatically different from other languages, and how you can still leverage your existing skills into writing excellent Go code. Aimed at Go beginners looking to graduate to serious Go development, you’ll write and test command line applications, web API clients and servers, concurrent programs, and more. +Go by Example is a practical guide to writing high-quality code that’s easy to test and maintain. The book is full of best practices to adopt and anti-patterns to dodge. It explores what makes Go so dramatically different from other languages, and how you can still leverage your existing skills into writing excellent Go code. Aimed at Go beginners looking to graduate to serious Go development, you’ll write and test command line applications, web API clients and servers, concurrent programs, and more. ### 2021 - [Cloud Native Go - Building Reliable Services in Unreliable Environments](https://www.amazon.com/Cloud-Native-Go-Unreliable-Environments/dp/1492076333) @@ -468,7 +468,7 @@ How and when should you apply performance efficiency optimization without wastin ### 2022 - [100 Go Mistakes and How to Avoid Them](https://www.manning.com/books/100-go-mistakes-and-how-to-avoid-them) - + 100 Go Mistakes and How to Avoid Them puts a spotlight on common errors in Go code you might not even know you’re making. You’ll explore key areas of the language such as concurrency, testing, data structures, and more—and learn how to avoid and fix mistakes in your own projects. @@ -532,7 +532,7 @@ Even more importantly, the book teaches you how to _think_ like a master softwar ### 2024 - [Build an Orchestrator in Go](https://www.manning.com/books/build-an-orchestrator-in-go) - + Understand Kubernetes and other orchestration systems deeply by building your own using Go and the Docker API.