Why Go is a good fit for agents
https://docs.hatchet.run/blog/go-agents
#HackerNews #WhyGoIsAGoodFitForAgents #GoProgramming #Agents #ProgrammingLanguages #TechTrends
Why Go is a good fit for agents
https://docs.hatchet.run/blog/go-agents
#HackerNews #WhyGoIsAGoodFitForAgents #GoProgramming #Agents #ProgrammingLanguages #TechTrends
So, I Wrote a Book: The Story Behind "100 Go Mistakes and How to Avoid Them"
https://www.thecoder.cafe/p/100-go-mistakes
#HackerNews #So #I #Wrote #a #Book #100 #Go #Mistakes #GoProgramming #BookLaunch #TechWriting
For REST π‘ API's written in Go πΆ, you should take a quick look at github.com/go-fuego/fuego. Getting an OpenAPI-Spec π & a SwaggerUI π₯οΈ without any extra effort, is a huge win!
#REST #API #GoLang #OpenAPI #Swagger #SwaggerUI #Fuego #GoFuego #WebDevelopment #GoProgramming #APIManagement #ProgrammingTips #TechStack #OpenSource
Good-bye core types; Hello Go as we know and love it
#HackerNews #GoodbyeCoreTypes #GoProgramming #GoLang #Development #Community #TechNews
TL;DR ΒΆ Some of the wisdom contained in Josh Blochβs Effective Java book is relevant to Go. panic and recover are best reserved for exceptional circumstances. Reliance on panic and recover can noticeably slow down execution, incurs heap allocations, and precludes inlining. Internal handling of failure cases via panic and recover is tolerable and sometimes beneficial. Abusing Java exceptions for control flow ΒΆ Even though my Java days are long gone and Go has been my language of predilection for a while, I still occasionally revisit Effective Java, Joshua Blochβs seminal and award-winning book, and I never fail to rediscover nuggets of wisdom in it.