Golang drawer
@golang101
177
subscribers
1
photo
5.03K
links
Curated Golang news
Download Telegram
Join
Golang drawer
177 subscribers
Golang drawer
https://www.ardanlabs.com/blog/2019/09/context-package-semantics-in-go.html
Ardan Labs
Context Package Semantics In Go
Ardan Labs is trusted by small startups and Fortune 500 companies to train their engineers and develop business software solutions and applications.
Golang drawer
https://www.youtube.com/watch?v=nok0aYiGiYA
YouTube
GopherCon 2019: Two Go Programs, Three Different Profiling Techniques - Dave Cheney
Go, being a relatively recent statically typed, compiled language, is known to produce efficient programs. But writing a program in Go is not sufficient for good performance.
In this tutorial Dave will demonstrate three different methods of profiling Go…
Golang drawer
https://banzaicloud.com/blog/instrumenting-go-applications/
Banzaicloud
Instrumenting Go applications
At Banzai Cloud we develop a container management platform that provisions and orchestrates hundreds of Kubernetes clusters across six different cloud providers or hybrid clouds every day. Pipeline makes it easy for users to run applications on Kubernetes…
Golang drawer
https://cybernetist.com/2019/03/09/breadth-first-search-using-go-standard-library/
Cybernetist
Breadth-first search using Go standard library
Just like many Go developers out there, I’m a big fan of Go standard library. Over the past few years I’ve been hacking on Go, I’ve discovered some real gems that not only made my …
Golang drawer
https://presstige.io/p/Logging-HTTP-requests-in-Go-233de7fe59a747078b35b82a1b035d36
Golang drawer
https://eli.thegreenplace.net/2019/rsa-theory-and-implementation/
Golang drawer
https://www.youtube.com/watch?v=UbP0CFMKIJM
YouTube
LondonGophers 19/06/2019: Duco van Amstel - Go Modules at Scale
Go Modules made their debut in Go 1.11 and are on their way to be come the default dependency management system in 1.14 with the deprecation of GOPATH. After a (very) brief reminder of what Go Modules are this talk will relate the (ongoing) migration of some…
Golang drawer
https://github.com/alexedwards/scs
GitHub
GitHub - alexedwards/scs: HTTP Session Management for Go
HTTP Session Management for Go. Contribute to alexedwards/scs development by creating an account on GitHub.
Golang drawer
https://github.com/dgraph-io/dgraph
GitHub
GitHub - hypermodeinc/dgraph: high-performance graph database for real-time use cases
high-performance graph database for real-time use cases - hypermodeinc/dgraph
Golang drawer
https://github.com/sanity-io/litter
GitHub
GitHub - sanity-io/litter: Litter is a pretty printer library for Go data structures to aid in debugging and testing.
Litter is a pretty printer library for Go data structures to aid in debugging and testing. - sanity-io/litter
Golang drawer
https://github.com/ikawaha/kagome
GitHub
GitHub - ikawaha/kagome: Self-contained Japanese Morphological Analyzer written in pure Go
Self-contained Japanese Morphological Analyzer written in pure Go - ikawaha/kagome
Golang drawer
https://curlie.io/
Golang drawer
https://github.com/cespare/xxhash
GitHub
GitHub - cespare/xxhash: A Go implementation of the 64-bit xxHash algorithm (XXH64)
A Go implementation of the 64-bit xxHash algorithm (XXH64) - cespare/xxhash
Golang drawer
https://github.com/itchyny/bed
GitHub
GitHub - itchyny/bed: Binary editor written in Go
Binary editor written in Go. Contribute to itchyny/bed development by creating an account on GitHub.
Golang drawer
https://docs.google.com/presentation/d/1RiZmupILuIQQ1Y-psDb1SzXNjCWh-I_-wagthdcwlq8/edit#slide=id.p
Google Docs
What’s new in Go1.13
What’s new in Go1.13 Aliaksandr Valialkin, VictoriaMetrics
Golang drawer
https://blogtitle.github.io/robn-go-security-pearls-fundamentals/
Golang drawer
https://blog.jbowen.dev/2019/08/using-go-flags-in-tests/
blog.jbowen.dev
Using Go Flags in Tests
Many developers are familiar with the flag package from
the Go standard library. This package provides an easy method for adding command
line options and argument parsing for Go programs. What may not be as well known
is that flag can be used in Go unit tests…
Golang drawer
Bad Go: slices of pointers
Please don't
https://philpearl.github.io/post/bad_go_slice_of_pointers/
Golang drawer
Bad Go: frivolous Sprintf
Sprintf is not always fastf
https://philpearl.github.io/post/bad_go_sprintf/
Golang drawer
Bad Go: pointer returns
Mmmm, pointy
https://philpearl.github.io/post/bad_go_pointer_returns/