Golang drawer
@golang101
177
subscribers
1
photo
5.03K
links
Curated Golang news
Download Telegram
Join
Golang drawer
177 subscribers
Golang drawer
https://marcofranssen.nl/manage-go-tools-via-go-modules/
marcofranssen.nl
Manage Go tools via Go modules | Marco Franssen
In this blog I will cover how I'm managing and versioning the tools my Go projects depend on. Go Modules are available since Go 1.11. Using Go Modules you can manage the dependencies for your project. You can compare it to NPM in Nodejs projects or Maven…
Golang drawer
https://eli.thegreenplace.net/2019/simple-go-project-layout-with-modules/
Golang drawer
https://yalantis.com/blog/speed-up-json-encoding-decoding/
Yalantis
Best practices for speeding up JSON encoding and decoding in Go
In this article, we compare best libraries for speeding up json parsing in Golang. Discover how different tools perform under different conditions.
Golang drawer
https://trierra.dev/how-to-configure-a-golang-logger-logrus-for-production/
#logrus
Golang drawer
https://levelup.gitconnected.com/solve-readers-writers-problem-with-go-in-5-lines-of-code-d9c5fc8a8262
#io
Medium
Solve Readers-Writers Problem with Go in 5 Lines of Code
Solve a very popular example and interview exercise about concurrency programming in Go with just 5 lines of code.
Golang drawer
https://medium.com/a-journey-with-go/go-keeping-a-variable-alive-c28e3633673a
#vars
Medium
Go: Keeping a Variable Alive
ℹ️
This article is based on Go 1.13.
Golang drawer
https://dev.to/maxwellhertz/tutorial-integrate-gin-with-cabsin-56m0
DEV Community
Tutorial: Integrate Gin with Cabsin
I've been working on a Java project recently in which our team uses Apache Shiro to do some authentic...
Golang drawer
https://medium.com/@ankur_anand/an-in-depth-introduction-to-99-percentile-for-programmers-22e83a00caf
Medium
An introduction to 99 percentile for programmers.
With examples in Go (Golang).
Golang drawer
https://medium.com/cuddle-ai/building-microservice-using-golang-echo-framework-ff10ba06d508
Medium
Building Microservice using Golang Echo framework
This topic explains how to build a Microservice using the Golang web framework Echo.
Golang drawer
https://medium.com/a-journey-with-go/go-how-does-the-garbage-collector-watch-your-application-dbef99be2c35
#gc
Medium
Go: How Does the Garbage Collector Watch Your Application?
ℹ️
This article is based on Go 1.13.
Golang drawer
https://medium.com/luggit/generating-grpc-protobuf-definitions-to-golang-and-android-85d5ba9bddc3
#grpc
Medium
Generating gRPC/Protobuf definitions to Golang and Android
We show you how turning your gRPC code ready to multiple languages, such as Golang and Android.
Golang drawer
https://dkvist.com/posts/simple-telegram-bot-with-golang/
#bots
Making a very simple Telegram bot with Golang
Making a very simple Telegram bot with Golang :: Dkvist — Gopher & Ukulelist
First things first This days I’m working on Botio. An opinionated CLI to build and manage bots and their commands for different platforms among which is Telegram. And it’s from working on Botio that this article comes from.
I would also like to warm you that…
Golang drawer
https://github.com/jung-kurt/gofpdf
GitHub
GitHub - jung-kurt/gofpdf: A PDF document generator with high level support for text, drawing and images
A PDF document generator with high level support for text, drawing and images - jung-kurt/gofpdf
Golang drawer
https://github.com/cenkalti/rain
GitHub
GitHub - cenkalti/rain:
🌧
BitTorrent client and library in Go
🌧
BitTorrent client and library in Go. Contribute to cenkalti/rain development by creating an account on GitHub.
Golang drawer
https://blog.golang.org/publishing-go-modules
go.dev
Publishing Go Modules - The Go Programming Language
How to write and publish modules for use as dependencies.
Golang drawer
https://boyter.org/posts/an-informal-survey-of-10-million-github-bitbucket-gitlab-projects/
Golang drawer
https://blog.jbowen.dev/2019/09/the-magic-of-go-comments/
blog.jbowen.dev
The Magic of Go Comments
Comments are a valuable tool for documenting and communicating
information about code. They are a common feature
in nearly every programming language and Go is no exception. However,
comments in Go programs can do far more than providing
information readers…
Golang drawer
https://youtu.be/XqKvgzXCoXc
#vids
YouTube
"Networking and Go: An Engineer's Journey" by Sneha Inguva
My foray into Go began a few years ago when I started working at DigitalOcean. While building an abstraction layer on top of Kubernetes and familiarizing myself with the language, I began to love it. Syntactically simple, with amazing concurrency primitives…
Golang drawer
https://fuzzit.dev/2019/10/02/how-to-fuzz-go-code-with-go-fuzz-continuously/
Fuzzit
How to Fuzz Go Code with go-fuzz (Continuously) - Fuzzit
What is fuzzing? Fuzzing or fuzz testing is an automated software technique that involves providing semi-random data as input to the test program in order to uncover bugs and crashes. Why fuzz Go Code? Golang is a safe language and … Read More
Golang drawer
https://steele.blue/tiny-github-actions
steele.blue
Building Fast, Tiny GitHub Actions with Go and Docker
GitHub Actions are sweet! It's still in beta but it's a great way to automate tasks after things happen like code pushes, comments on Issues, pull requests, etc…