/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

nelson.cloud
| | pliutau.com
4.3 parsecs away

Travel
| | Software Engineering Lead with a passion for APIs, Web, Cloud, Microservices, DevOps, Kubernetes etc. Engineering Lead at solsten.io
| | infinitedigits.co
4.1 parsecs away

Travel
| | Exploring meta-behaviors.
| | www.integralist.co.uk
4.1 parsecs away

Travel
| | The following code doesn't do what you might expect: package main import "fmt" func main() { var i *impl fmt.Println("i == nil:", i == nil) what(i) } type impl struct{} func (i *impl) do() {} func what(i interface{ do() }) { fmt.Println("i == nil:", i == nil) } If you expected the what function to print i == nil: true, then keep reading... Typed Nils The behavior observed is due to the way interfaces and nil values interact in Go.
| | bartlomiejmika.com
34.6 parsecs away

Travel
| How do you write a Golang server using gRPC from scratch? Heres how to do it.