Some articles on Medium discuss misunderstandings about choosing Go for startups and a trend of ditching Go in big tech.One of the most misunderstood concepts in Go is its verbose error handling, which can be seen as a feature rather than a limitation.Repetitively copy-pasting 'if err != nil { return err }' may indicate a wrong approach, similar to exceptions handling in other programming languages.In other languages, exceptions are thrown from deep within call stacks, mirroring the verbose error handling in Go.