←back to thread

Go is still not good

(blog.habets.se)
644 points ustad | 1 comments | | HN request time: 0.502s | source
Show context
figmert ◴[] No.44983166[source]
Has Go become the new PHP? Every now and then I see an article complaining about Go's shortcomings.
replies(6): >>44983193 #>>44983234 #>>44983422 #>>44983440 #>>44983954 #>>44985162 #
pydry ◴[] No.44983234[source]
Go is a pretty good example of how mediocre technology that would never have taken off on its own merits benefits from the rose tinted spectacles that get applied when FAANG starts a project.
replies(2): >>44983334 #>>44983421 #
christophilus ◴[] No.44983334[source]
I don’t buy this at all. I picked up Go because it has fast compilation speed, produces static binaries, can build useful things without a ton of dependencies, is relatively easy to maintain, and has good tooling baked in. I think this is why it gained adoption vs Dart or whatever other corporate-backed languages I’m forgetting.
replies(2): >>44983391 #>>44983553 #
1. theshrike79 ◴[] No.44983553[source]
80% of what programmers write is API glue.

Go _excels_ at API glue. Get JSON as string, marshal it to a struct, apply business logic, send JSON to a different API.

Everything for that is built in to the standard library and by default performant up to levels where you really don't need to worry about it before your API glue SaaS is making actual money.