DEVELOPER NEWS STREAM
Direct logs, engine updates, and framework notifications parsed from curated RSS feeds and announcements, updated hourly.

rhymesSeven days of Go
Developing an API server in Go

Chris JamesLearn Go by writing tests: Structs, methods, interfaces & table driven tests
Learn about structs, methods & interfaces in Go whilst practicing TDD

Jon CalhounUsing named return variables to capture panics in Go
Sometimes you can't help but call a function that might panic. Rather than letting it blow up your code, learn how to use a deferred function and named return variables in order to capture the result as a standard Go error.

Chris JamesLearn Go by writing tests
Learn some basics of Go while practicing TDD

Teruo KunihiroContinue goto in Golang
Sometimes We need to go out from loops or don't want to execute unnecessary part in the loop. At that...

Chris JamesLearn Go by writing Tests: Arrays and slices
Learn about arrays and slices in Go whilst practicing TDD

Yuen Ying KitDriving web browser in Go
Introduction to Agoutil.

Sergey KislyakovPrxPass - A reverse-proxy self-hosted solution (aka local tunnel)
PrxPass is a reverse-proxy self-hosted server that works like ngrok or localtunnel

Michael TaylorPlug & Play Machine Learning Models in GoLang
How to use interfaces to make machine learning code more flexible

Jon CalhounSecuring Cookies in Go
Learn how to properly secure cookies from tampering, theft, XSS, CSRF, and more in Go.

nasa9084graceful shutdown server with syg
originally posted to blob.web-apps.tech Using github.com/nasa9084/syg, you can map signal to...

mmyojiVideo Processing with AWS Lambda + Elastic Transcoder in Golang
I'm posting this because I could not find any blog posts with sample code for video processing with...

Jon CalhounWhen Should I Use One Liner if...else Statements in Go?
After using Go for a few weeks, chances are you are going to run across a single-line if...else statement. Most often, you will see this with an err (eg if err := doStuff(); err != nil { ... }). This article discusses the situations where a one-liner is appropriate, and ones where it isn't a great fit.

nasa9084syg: simply signal to callback mapping in Go
listen signals in Go has a little complexity. now you can use `syg` package.

Guilherme Soares ValdeviesoHow to let OOP world and dive in golang mindset?
Show me the way to do it correctly. :)

syossan27How to implement a signal handler in Go
How to implement a signal handler in Go