The GopherGuides held a full week of informative and engaging training at The New York Times that left our engineers excited and empowered to use Go. The classes were tailored to our needs so all levels of engineer came out with some new bits of Go wisdom. We at NYT look forward to using GopherGuides for future training!
- JP Robinson -
New York Times
Cory is excellent faciltator and proved to be extremely knowledgeable in Golang. I'd honestly take this session again. He is engaging and able to cover topics pertinent to specific instances.
- Workshop Attendee -
Global Fortune 500 Company
I had a basic understanding of Go coming into this session. After this training I am able to understand how to apply topics such as concurrency and gRPC which will be helpful for my team.
- Workshop Attendee -
Global Fortune 500 Company
This course provided experience and exposure to what Go can really do. I feel this is what most other training courses lack.
- Workshop Attendee -
Global Fortune 500 Company
Our
courses aren’t just built to teach
They are built to to create change. Our curriculum is continuously updated using best practices and has been validated in some of the largest companies in the world. Each module is designed to send you away ready to tackle your biggest Go initiatives. With virtual training, a prominent member of the Go community leads your workshop to help get your team up to speed in as little as 2 to 4 days.
The most anticipated feature of Go 1.16 is the addition to the Go tooling, and standard library, that allow for embedding static content into binaries. While it is tempting to start playing with this new toy right away, it is important to understand how it works first. In this article we are going to take a look at the new io/fs package introduced in Go 1.16 to support embedding.
Iota is a useful concept for creating incrementing constants in Go. However, there are several areas where iota may not be appropriate to use. This article will cover several different ways in which you can use iota, and tips on where to be cautious with it's use.
If you haven't worked in a typed language before, it may not be obvious at first the power that it brings. This article will show you how to leverage the type system to make your code easier to use and more reusable.