Golang drawer
@golang101
174
subscribers
1
photo
5.03K
links
Curated Golang news
Download Telegram
Join
Golang drawer
174 subscribers
Golang drawer
https://www.gobeyond.dev/real-world-sql-part-one/
Go Beyond
Real-world SQL in Go: Part I
Whether you hate SQL or merely tolerate it, you probably use it in your application. We'll look at ways to cleanly organize your SQL code in Go.
Golang drawer
https://www.youtube.com/watch?v=a1SneuI65O0
YouTube
Go (Golang) Debugging with Delve
Delve is a third-party debugger for the Go programming language and it’s available on github https://github.com/go-delve/delve. It’s a valid alternative to the GDB golang debugger (https://golang.org/doc/gdb) as it’s more feature rich as mentioned in the…
Golang drawer
https://www.openfaas.com/blog/integrate-with-github-apps-and-faasd/
OpenFaaS - Serverless Functions Made Simple
How to integrate with GitHub the right way with GitHub Apps
In this guide, we are going to demonstrate how to build your own GitHub App to get a fine-grained integration with GitHub’s API and to act on the behalf of its users.
Golang drawer
https://www.youtube.com/watch?v=Sw53HGyCGcU
YouTube
Featherweight Go - Raymond Hu, Julien Lange, Bernardo Toninho
Happy New Year!!! What better way to kick off 2021 than a new Go Premier
🎉
Please get involved, ask questions in chat, talk about the latest things in Go or just wave and clap to show your appreciation for the speakers.
As an online event, no matter where…
Golang drawer
https://github.com/inancgumus/learngo
GitHub
GitHub - inancgumus/learngo:
❤️
1000+ Hand-Crafted Go Examples, Exercises, and Quizzes.
🚀
Learn Go by fixing 1000+ tiny programs.
❤️
1000+ Hand-Crafted Go Examples, Exercises, and Quizzes.
🚀
Learn Go by fixing 1000+ tiny programs. - inancgumus/learngo
Golang drawer
https://benjamincongdon.me/blog/2021/01/21/A-Tour-of-Go-116s-iofs-package/
benjamincongdon.me
A Tour of Go 1.16's io/fs package
Looking into Go’s new standard library packages for filesystem abstraction.
Golang drawer
https://eli.thegreenplace.net/2021/rest-servers-in-go-part-1-standard-library/
Golang drawer
Forwarded from
DevOps drawer
https://blog.heyal.co.uk/unit-testing-helm-charts/
blog.heyal.co.uk
How to unit-test your helm charts with Golang
We explore unit testing Helm charts with Golang
Golang drawer
https://github.com/geohot/minikeyvalue
GitHub
GitHub - geohot/minikeyvalue: A distributed key value store in under 1000 lines. Used in production at comma.ai
A distributed key value store in under 1000 lines. Used in production at comma.ai - geohot/minikeyvalue
Golang drawer
https://entgo.io
entgo.io
Golang drawer
https://github.com/mikefarah/yq
GitHub
GitHub - mikefarah/yq: yq is a portable command-line YAML, JSON, XML, CSV, TOML and properties processor
yq is a portable command-line YAML, JSON, XML, CSV, TOML and properties processor - mikefarah/yq
Golang drawer
https://github.com/nikoksr/notify
GitHub
GitHub - nikoksr/notify: A dead simple Go library for sending notifications to various messaging services.
A dead simple Go library for sending notifications to various messaging services. - nikoksr/notify
Golang drawer
https://github.com/modfy/go-fluent-ffmpeg
GitHub
GitHub - scalarhq/go-fluent-ffmpeg: A Go implementation of fluent-ffmpeg
A Go implementation of fluent-ffmpeg. Contribute to scalarhq/go-fluent-ffmpeg development by creating an account on GitHub.
Golang drawer
https://aws.amazon.com/blogs/developer/aws-sso-support-in-the-aws-sdk-for-go/
Amazon
AWS SSO Support in the AWS SDK for Go | Amazon Web Services
The Go SDK team is excited to announce support for AWS Single Sign-On (SSO) credential providers in the AWS SDK for Go version 1 and version 2. The AWS SSO credential provider allows you to retrieve temporary AWS credentials associated with an AWS account…
Golang drawer
https://github.com/achannarasappa/ticker
GitHub
GitHub - achannarasappa/ticker: Track stocks, crypto, and derivatives prices and positions in real time from your terminal
Track stocks, crypto, and derivatives prices and positions in real time from your terminal - achannarasappa/ticker
Golang drawer
https://www.youtube.com/watch?v=U-eO9_lNi7w
YouTube
Unit Testing in Golang | hatchpad
Unit Testing in Golang | hatchpad
🚀
Sign-Up for Weekly hatchpad Newsletter: https://www.myhatchpad.com/newsletter/
🔔
Get alerted about startup job openings: https://www.myhatchpad.com/job/submit-your-profile/?source=YouTube+Description
Chloé Powell, Senior…
Golang drawer
https://changelog.com/gotime/165
Changelog
When Go programs end with Michael Knyszek from the Go team (Go Time #165)
Michael Knyszek from the Go team joins us to talk about what happens when a program ends. How are file handles cleaned up? When are deferred functions run, and when are they skipped entirely? Is there a way to terminate all running goroutines? Tune in to…
Golang drawer
https://www.openfaas.com/blog/gitea-faas/
OpenFaaS - Serverless Functions Made Simple
Extend and automate self-hosted Gitea with functions
Switching to Gitea doesn’t mean having to give up your bot automations
Golang drawer
https://www.makeworld.gq/2021/01/lgpl_go.html
www.makeworld.gq
Don’t use the LGPL for Go code
TL;DR: Use the Mozilla Public License (MPL 2.0). It’s like the LGPL, but allows static linking.
Golang drawer
https://benhoyt.com/writings/go-readdir/
Benhoyt
Coming in Go 1.16: ReadDir and DirEntry
A look at the new os.ReadDir function and os.DirEntry interface coming in Go 1.16, with a comparison to os.scandir in Python.