Golang drawer
@golang101
177
subscribers
1
photo
5.03K
links
Curated Golang news
Download Telegram
Join
Golang drawer
177 subscribers
Golang drawer
https://mdelapenya.github.io/lpn/index.html
Golang drawer
https://www.rosie.dev/post/hello-lambda/
www.rosie.dev
Hello Little Lambda
What is Serverless? A Serverless Lambda is essentially code, written by you, which a cloud provider like Amazon or Google will run for you. Your code gets run on a cloud providers servers on demand, as and when it is needed. The benefit of having someone…
Golang drawer
https://github.com/grpc-ecosystem/go-grpc-middleware/releases/tag/v1.1.0
GitHub
Release v1.1.0 · grpc-ecosystem/go-grpc-middleware
[v1.1.0] - 2019-09-12
Added
#226 Support for go modules.
#221 logging/zap add support for gRPC LoggerV2 - kush-patel-hs
#181 Rate Limit support - ceshihao
#161 Retry on server stream call - lonnb...
Golang drawer
https://blog.containo.us/traefik-2-0-6531ec5196c2
Traefik Labs: Makes Networking Boring
Traefik 2.0 - The Wait is Over!
When we started our journey toward 2.0, we had high expectations (since you had high expectations), and huddled around the whiteboard...
Golang drawer
https://levelup.gitconnected.com/dockerized-crud-restful-api-with-go-gorm-jwt-postgresql-mysql-and-testing-61d731430bd8
Medium
Dockerizing a CRUD RESTful API with Go, Gorm, JWT, PostgreSQL, MySQL, and Testing
This is part 2 of the API we built here, which is a prerequisite for the article.
Golang drawer
https://medium.com/@petomalina/handling-asynchronous-errors-on-gcp-with-go-cloud-and-pub-sub-6480d1b1929d
Medium
Handling Asynchronous Errors on GCP with go-cloud and Pub/Sub
Living in a world where people don’t care about the response of others is no longer a joke, rather an optimization technique. However…
Golang drawer
https://levelup.gitconnected.com/deploying-dockerized-golang-api-on-kubernetes-with-postgresql-mysql-d190e27ac09f
Medium
Deploying a Dockerized Golang API on Kubernetes with PostgreSQL, MySQL
Welcome!
Golang drawer
https://dev.to/zaracooper/create-your-developer-portfolio-using-hugo-and-github-pages-35en
DEV Community
Create your developer portfolio using Hugo and Github Pages
One thing that sets you apart when looking for a developer gig is a portfolio website. It gives poten...
Golang drawer
http://www.melvinvivas.com/develop-graphql-web-apis-using-golang/
How to create a GraphQL API Server using Go (Golang) - Melvin Vivas Tech Blog
Learn how to create a GraphQL API Server using Go
Golang drawer
https://techblog.fexcofts.com/2019/09/16/go-and-test-goconvey/
Tech Blog
Go and Test: GoConvey - Tech Blog
BDD with GoConvey GoConvey is a very good suite to test in Go. It has a lot of interesting characteristics, it is very flexible and it help us do testing.…
Golang drawer
https://lekstu.ga/posts/extracting-go-types/
Golang drawer
https://presstige.io/p/atomicfile-robustly-writing-to-a-file-in-Go-22143bf788b542fda2262ca7aee57ae4
Golang drawer
https://www.gmarik.info/blog/2019/12-factor-golang-flag-package/
www.gmarik.info
12 factor configuration with Go's `flag` package
Cost-effective way to have your app conform with 12 factor methodology with Go’s stock flag package.
Summary Previously, before “cloud” was a thing, it was common to have configuration part of the source code, ie Rails’ config/database.yaml.
These days, with…
Golang drawer
https://medium.com/cloud-native-the-gathering/404s-heartbreak-95543f9e866f
Medium
404s & Heartbreak
Deep linking with Angular and Go
Golang drawer
https://arschles.com/blog/go-1.13-for-private-repositories/
arschles
Go 1.13 for Private Repositories
Aaron on the Web
Golang drawer
https://harrigan.xyz/blog/integration-testing-with-golang/
David Harrigan
Integration Testing with Golang
How to create integration tests with Golang
Golang drawer
https://codeengineered.com/blog/2019/go-mod-major-versions/
Golang drawer
https://www.digitalocean.com/community/tutorials/how-to-use-variadic-functions-in-go
Digitalocean
How To Use Variadic Functions in Go | DigitalOcean
A variadic function is a function that accepts zero, one, or more values as a single argument. While variadic functions are not the common case, they can be …
Golang drawer
https://www.digitalocean.com/community/tutorials/how-to-construct-for-loops-in-go
Digitalocean
How To Construct For Loops in Go | DigitalOcean
In the Go programming language, a for loop implements the repeated execution of code based on a loop counter or loop variable. In this tutorial, you will l…
Golang drawer
https://reese.dev/go-slices-demystified/
John Reese
Go Slices Demystified
Slices are one of those types in Go that take a little bit of time and hands on experience to really wrap your head around. There is a lot of material out there that explain slices, but I'm going to take a slightly different approach. We'll start with clarifying…