Golang drawer
@golang101
174
subscribers
1
photo
5.03K
links
Curated Golang news
Download Telegram
Join
Golang drawer
174 subscribers
Golang drawer
https://boyter.org/posts/sloc-cloc-code-badges/
Golang drawer
https://hackernoon.com/continuous-development-with-docker-and-vscode-go-version-164ee78d09bf
Hackernoon
Continuous Development with Docker and VSCode — Go Version | Hacker Noon
Golang drawer
https://golangbot.com/polymorphism/
golangbot
Polymorphism - OOP in Go
Polymorphism in Go is achieved with the help of interfaces. A variable of type interface can hold any value which implements the interface. This property is used to achieve polymorphism in Go.
Golang drawer
https://golangbot.com/interfaces-part-1/
golangbot
Interfaces - Part I
Learn how interfaces work in Go with the help of practical examples. This tutorial also covers empty interface, type assertion and type switch.
Golang drawer
https://tutorialedge.net/golang/writing-a-twitter-bot-golang/#searching-tweets
TutorialEdge.net
Writing A Twitter Bot in Golang
In this tutorial I'll be demonstrating how you can implement a twitter bot using the go programming language
Golang drawer
https://dave.cheney.net/2019/07/09/clear-is-better-than-clever
Golang drawer
https://eli.thegreenplace.net/2019/go-compiler-internals-adding-a-new-statement-to-go-part-1/
Golang drawer
https://github.com/cockroachdb/errors
GitHub
GitHub - cockroachdb/errors: Go error library with error portability over the network
Go error library with error portability over the network - cockroachdb/errors
Golang drawer
https://faiface.github.io/post/how-to-use-try/
Golang drawer
https://dev.to/sendilkumarn/create-dev-s-offline-page-with-tiny-go-and-webassembly-9n6
DEV Community
Create Dev's offline page with (Tiny)GO and WebAssembly
🦄
💡
✨
Dev's offline page is fun and we did implement it with Rust and WebAssembly. Go is simple. Can we d...
Golang drawer
https://dev.to/sendilkumarn/tiny-go-to-webassembly-5168
DEV Community
(Tiny)Go to WebAssembly
Gophers not only look cute but also they are powerful. I
❤️
statically typed languages and Golang...
Golang drawer
https://preslav.me/2019/07/09/adding-version-information-to-go-binaries/
Golang drawer
https://caddyserver.com/blog/caddy-2-ready-for-developers
Golang drawer
https://github.com/thoas/bokchoy
GitHub
GitHub - thoas/bokchoy: Simple job queues for Go backed by Redis
Simple job queues for Go backed by Redis. Contribute to thoas/bokchoy development by creating an account on GitHub.
Golang drawer
https://github.com/google/go-replayers
GitHub
GitHub - google/go-replayers
Contribute to google/go-replayers development by creating an account on GitHub.
Golang drawer
https://github.com/doug-martin/goqu#readme
GitHub
GitHub - doug-martin/goqu: SQL builder and query library for golang
SQL builder and query library for golang. Contribute to doug-martin/goqu development by creating an account on GitHub.
Golang drawer
https://github.com/google/martian
GitHub
GitHub - google/martian: Martian is a library for building custom HTTP/S proxies
Martian is a library for building custom HTTP/S proxies - google/martian
Golang drawer
https://github.com/dghubble/sling
GitHub
GitHub - dghubble/sling: A Go HTTP client library for creating and sending API requests
A Go HTTP client library for creating and sending API requests - dghubble/sling
Golang drawer
https://wat.io/posts/instrumentation-and-go/
wat.io
Instrumentation and Go
What is instrumentation? What kinds of instrumentation are available for Go
programs and when should you use them? What is dynamic instrumentation?
Golang drawer
https://proxy.golang.org
Golang drawer
https://commaok.xyz/post/report-metric/
commaok.xyz
testing.B.ReportMetric
My favorite new API in Go 1.13 is testing.B.ReportMetric. It allows you to report custom metrics from within your benchmarks.
When the API was proposed, the motivating example was package sort. The package sort benchmarks, like all benchmarks, measure elapsed…