Added Continuous Delivery in Go (#3832)

* Added 100 Go Mistakes: How to Avoid Them
* Adde 100 Go Mistakes: How to Avoid Them
* Added Build an Orchestrator in Go
* Added Continuous Delivery in Go
* Fixed merge conflicts (@phanirithvij)

Co-authored-by: Phani Rithvij <phanirithvij2000@gmail.com>
This commit is contained in:
Stjepan Jureković 2021-10-14 12:08:27 +02:00 committed by GitHub
parent 348783c833
commit f965c285b3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2845,11 +2845,14 @@ _**Unofficial** set of patterns for structuring projects._
## E-Books
* [100 Go Mistakes: How to Avoid Them](https://www.manning.com/books/100-go-mistakes-how-to-avoid-them)
* [A Go Developer's Notebook](https://leanpub.com/GoNotebook/read)
* [An Introduction to Programming in Go](https://www.golang-book.com/)
* [An Introduction to Programming in Go](http://www.golang-book.com/)
* [Build an Orchestrator in Go](https://www.manning.com/books/build-an-orchestrator-in-go)
* [Build Web Application with Golang](https://astaxie.gitbooks.io/build-web-application-with-golang/content/en/)
* [Building Web Apps With Go](https://codegangsta.gitbooks.io/building-web-apps-with-go/content/)
* [For the Love of Go](https://bitfieldconsulting.com/books/love) - An introductory book for Go beginners.
* [Continuous Delivery in Go](https://www.manning.com/books/continuous-delivery-in-go) This practical guide to continuous delivery shows you how to rapidly establish an automated pipeline that will improve your testing, code quality, and final product.
* [For the Love of Go](https://bitfieldconsulting.com/books) - A series of introductory books for Go beginners.
* [Go 101](https://go101.org) - A book focusing on Go syntax/semantics and all kinds of details.
* [Go Bootcamp](http://golangbootcamp.com)
* [Go Succinctly](https://github.com/thedevsir/gosuccinctly) - in Persian.
@ -2863,7 +2866,8 @@ _**Unofficial** set of patterns for structuring projects._
* [The Golang Standard Library by Example (Chinese)](https://github.com/polaris1119/The-Golang-Standard-Library-by-Example)
* [Web Application with Go the Anti-Textbook](https://github.com/thewhitetulip/web-dev-golang-anti-textbook/)
* [Writing A Compiler In Go](https://compilerbook.com)
* [Writing An Interpreter In Go](https://interpreterbook.com)
* [Writing An Interpreter In Go](https://interpreterbook.com) - Book that introduces dozens of techniques for writing idiomatic, expressive, and efficient Go code that avoids common pitfalls.
**[⬆ back to top](#contents)**