Golang drawer
@golang101
175
subscribers
1
photo
5.03K
links
Curated Golang news
Download Telegram
Join
Golang drawer
175 subscribers
Golang drawer
https://www.digitalocean.com/community/tutorials/how-to-write-switch-statements-in-go
Digitalocean
How To Write Switch Statements in Go | DigitalOcean
switch is an alternative conditional statement useful for communicating actions taken by your Go programs when presented with different options. Everything w…
Golang drawer
https://brandur.org/live-reload
brandur.org
Building a Robust Live Reloader with WebSockets and Go
A walkthrough of the design of a live reload feature for the static site generator that builds this site, touching on fsnotify, WebSockets, and the curious case of file 4913.
Golang drawer
https://medium.com/flant-com/rewriting-your-app-to-golang-2839e8920ace
Medium
How to kill a dragon: Rewriting your app to Golang
Making your app’s language transition hassle-free
Golang drawer
https://opethe1st.github.io/go/kata/json/parser/2019/10/13/json-parser-in-go.html
Opemipo
How I wrote a JSON parser in Go - Part 1
Introduction Hey! Welcome to my first blog post in a series about how I wrote a JSON parser. This series assumes the reader has some basic programming experience. In this post, I will be talking about how I wrote the MVP of the parser.
Golang drawer
https://drewdevault.com//2019/10/30/Line-printer-shell-hack.html
Golang drawer
https://jfeng45.github.io/en/posts/go_service_resilience/
jfeng45.github.io
Service Resilience in Go Microservices
Service resilience makes the service still available when the environment is unreliable.Technologies used include Timeouts, Retry, Rate Limiting, Circuit Breaker, Fault Injection, and Bulkhead.
Golang drawer
https://medium.com/better-programming/common-go-pitfalls-a92197cd96d2
Medium
Common Go Pitfalls
A few common mistakes and how to diagnose and fix them
Golang drawer
https://www.calhoun.io/why-cant-we-settle-on-a-single-application-structure-in-go/
Calhoun.io
Why Cant We Settle on a Single Application Structure in Go - Calhoun.io
Getting started in Go can be hard. The language itself is pretty easy to pick up, but figuring out how to structure your application can become overwhelming early on. At least it was a big time sink for me coming from a Ruby on Rails background where all…
Golang drawer
https://stackoverflow.blog/2019/10/28/research-update-coding-on-the-weekends/
stackoverflow.blog
Research update: Coding on the Weekends - Stack Overflow
Golang drawer
https://github.com/github/hub
GitHub
GitHub - mislav/hub: A command-line tool that makes git easier to use with GitHub.
A command-line tool that makes git easier to use with GitHub. - mislav/hub
Golang drawer
https://blog.jetbrains.com/go/2019/10/25/goland-2019-3-eap-5-is-here/
GoLand Blog
Goland 2019.3 EAP 5 is Here with Faster Startup, Improvements for File Watcher, and More
Get this EAP build via the Toolbox App, download from the website, or use a snap package (for Ubuntu). Or, right in GoLand, select Automatically check updates for Early Access Program in Preference…
Golang drawer
https://github.com/belak/go-gitdir
GitHub
GitHub - belak/gitdir: PoC of a self-contained, simple, and lightweight SSH git hosting with just a directory.
PoC of a self-contained, simple, and lightweight SSH git hosting with just a directory. - GitHub - belak/gitdir: PoC of a self-contained, simple, and lightweight SSH git hosting with just a directory.
Golang drawer
https://github.com/sonirico/pokeStore
GitHub
GitHub - sonirico/pokeStore: Just a simple client/server store app over TCP
Just a simple client/server store app over TCP. Contribute to sonirico/pokeStore development by creating an account on GitHub.
Golang drawer
https://webdevstation.com/post/Go-middleware-example.-How-to-alter-a-handler-result-0x753a
Webdevstation
Web Developer blog
Blog about web development
Golang drawer
https://medium.com/@paulokieffer/go-serverless-in-kubernetes-with-knative-596db906c96a
Medium
Go serverless in Kubernetes with Knative
What fuck is Knative?
Golang drawer
https://lucastamoios.com/blog/2019/06/02/building-a-chat-from-scratch-with-go-and-mqtt/
Lucastamoios
Building a Chat From Scratch With Go and MQTT - Lucas' Blog
Recently I started learning Go and about Messaging Protocols, and as I think that is easier to learn something while also putting it into practice, I …
Golang drawer
https://brandur.org/live-reload
brandur.org
Building a Robust Live Reloader with WebSockets and Go
A walkthrough of the design of a live reload feature for the static site generator that builds this site, touching on fsnotify, WebSockets, and the curious case of file 4913.
Golang drawer
https://opethe1st.github.io/go/kata/json/parser/2019/10/13/json-parser-in-go.html
Opemipo
How I wrote a JSON parser in Go - Part 1
Introduction Hey! Welcome to my first blog post in a series about how I wrote a JSON parser. This series assumes the reader has some basic programming experience. In this post, I will be talking about how I wrote the MVP of the parser.
Golang drawer
https://qvault.io/2019/10/30/purity-in-my-programming-please/
blog.boot.dev
How to Make Pure Functions in Golang
Pure functions are often hyped up in the JavaScript world, probably because of the abundance of stateful front end applications.
Golang drawer
https://www.digitalocean.com/community/tutorials/defining-structs-in-go
Digitalocean
Defining Structs in Go | DigitalOcean
Structs allow storing data from several variables in a single entity with one name. They allow Go developers to describe the world in which a Go program oper…