Golang drawer
@golang101
175
subscribers
1
photo
5.03K
links
Curated Golang news
Download Telegram
Join
Golang drawer
175 subscribers
Golang drawer
https://changelog.com/posts/5-things-rob-pike-attributes-to-gos-success
Changelog
5 things Rob Pike attributes Go's success to
As the saying goes… history doesn’t repeat itself, but it often rhymes. If you want to create a successful programming language (or at least understand how you might), it’s immensely valuable to learn from others who have done just that. on Go Time episode…
Golang drawer
https://github.com/uber-go/zap
GitHub
GitHub - uber-go/zap: Blazing fast, structured, leveled logging in Go.
Blazing fast, structured, leveled logging in Go. Contribute to uber-go/zap development by creating an account on GitHub.
Golang drawer
https://github.com/cloudson/gitql
GitHub
GitHub - filhodanuvem/gitql:
💊
A git query language
💊
A git query language. Contribute to filhodanuvem/gitql development by creating an account on GitHub.
Golang drawer
https://github.com/m7shapan/uuid
GitHub
m7shapan/uuid
Go package for UUIDs based on RFC 4122 Time-Based UUID - m7shapan/uuid
Golang drawer
https://github.com/integrii/flaggy
GitHub
GitHub - integrii/flaggy: Idiomatic Go input parsing with subcommands, positional values, and flags at any position. No required…
Idiomatic Go input parsing with subcommands, positional values, and flags at any position. No required project or package layout and no external dependencies. - integrii/flaggy
Golang drawer
https://github.com/go-gorp/gorp/releases/tag/v3.0.0
GitHub
go-gorp/gorp
Go Relational Persistence - an ORM-ish library for Go - go-gorp/gorp
Golang drawer
https://github.com/cruise-automation/k-rail
GitHub
GitHub - cruise-automation/k-rail: Kubernetes security tool for policy enforcement
Kubernetes security tool for policy enforcement. Contribute to cruise-automation/k-rail development by creating an account on GitHub.
Golang drawer
https://00f.net/2019/10/28/go-is-the-new-ruby/
Golang drawer
https://superhighway.dev/piloting-go
Superhighway
Piloting Go Within Your Company
Three steps for approaching introducing Go at a company.
Golang drawer
https://changelog.com/gotime/104
Changelog
Building search tools in Go with Marty Schoch (Go Time #104)
Johnny is joined by Marty Schoch, creator of the full-text search and indexing engine Bleve, to talk about the art and science of building capable search tools in Go. You get a mix of deep technical considerations as well as some of the challenges around…
Golang drawer
https://healeycodes.com/go/tutorial/beginners/showdev/2019/10/21/cloning-memcached-with-go.html
Andrew Healey
Cloning Memcached with Go
My first program in Go was Conway’s Game of Life. This time I made an in-memory HTTP caching server with similar methods to memcached like increment/decrement and append/prepend.
Golang drawer
https://gameswithgo.org/
gameswithgo.org
Games With Go
A video series where you can learn programmign by making a series of games in the Go programming language
Golang drawer
https://mobile.twitter.com/i/web/status/1189631604324327424
Twitter
Brad Fitzpatrick
Go 1.14 should be great. Much #golang runtime work this cycle. Hope all lands: * async preemption (https://t.co/F0krBMNl3Y) * fast defers (https://t.co/Iwl1gUODmV) * scalable timers (https://t.co/xl31xNEI9B, https://t.co/GrfPzA4sMC) * new page allocator …
Golang drawer
https://groups.google.com/forum/m/#!msg/golang-announce/YVXawNxmEBw/pju_oNyaAQAJ
Golang drawer
https://github.com/valyala/fasthttp
GitHub
GitHub - valyala/fasthttp: Fast HTTP package for Go. Tuned for high performance. Zero memory allocations in hot paths. Up to 10x…
Fast HTTP package for Go. Tuned for high performance. Zero memory allocations in hot paths. Up to 10x faster than net/http - valyala/fasthttp
Golang drawer
https://mickey.dev/posts/go-build-tags-testing/
mickey.dev
Separate Your Go Tests with Build Tags
Separate and run different test types with Go build tags.
Golang drawer
https://github.com/cjbassi/gotop
GitHub
GitHub - cjbassi/gotop: A terminal based graphical activity monitor inspired by gtop and vtop
A terminal based graphical activity monitor inspired by gtop and vtop - cjbassi/gotop
Golang drawer
https://stripe.com/gb/blog/stripe-cli
Stripe
Stripe CLI
The Stripe CLI is a developer tool that helps you build, test, and manage your Stripe integration right from the terminal.
Golang drawer
https://gorgonia.org/tutorials/iris/
Gorgonia
Multivariate linear regression on Iris Dataset
About We will use Gorgonia to create a linear regression model.
The goal is, to predict the species of the Iris flowers given the characteristics:
sepal_length sepal_width petal_length petal_width The species we want to predict are:
setosa virginica versicolor…
Golang drawer
https://xwu64.github.io/2019/02/27/Understanding-Golang-sleep-function/
Xiaoliang's Blog
Understanding Golang sleep() function
When we write a simple Golang program test, like 1234567package mainimport "time"func main() { time.Sleep(1000 * time.Millisecond)} How Golang to implement these functions? In t
Golang drawer
http://henry.precheur.org/scratchpad/20191103_102445