Golang drawer
@golang101
174
subscribers
1
photo
5.03K
links
Curated Golang news
Download Telegram
Join
Golang drawer
174 subscribers
Golang drawer
https://utcc.utoronto.ca/~cks/space/blog/programming/IntelCPUIDNotes
Golang drawer
https://dev.to/sematext/ebpf-and-xdp-for-processing-packets-at-bare-metal-speed-m5b
The DEV Community
eBPF and XDP for Processing Packets at Bare-metal Speed
Golang drawer
https://www.bsdcan.org/2019/schedule/attachments/529_Porting_Go_to_netbsd_arm64.pdf
Golang drawer
https://arslan.io/2019/06/13/using-go-analysis-to-write-a-custom-linter/
Fatih Arslan
Using go/analysis to write a custom linter
We're going to write a custom linter using the new go/analysis framework which dramatically speeds up creating new linters.
Golang drawer
https://www.tbray.org/ongoing/When/201x/2019/06/12/Go-Creeping-In
Golang drawer
https://github.com/google/wire
GitHub
GitHub - google/wire: Compile-time Dependency Injection for Go
Compile-time Dependency Injection for Go. Contribute to google/wire development by creating an account on GitHub.
Golang drawer
https://engineering.infinityworks.com/sequence-diagrams/
Infinityworks
Generating sequence diagrams from tests in Golang
Golang drawer
https://serialized.net/2019/06/smarter-smart/
serialized.net
Making a Smarter Smart Thermostat with Go, Lambda, and SAM
The Sensibo Sky improved the temperature control in my office, and almost worked the way I wanted. This is the story of getting it the rest of the way, with a little extra help from Go and Serverless technologies.
Golang drawer
https://camilopayan.com/posts/netlify-form-submissions-with-golang-lambda-functions/
Camilopayan
Netlify Form Submissions With Golang Lambda Functions
Static websites are a great way to recapture some of the best parts of the history of the web. They provide low overhead and simple deployments. One of the things that a static website loses, however, is the ability to use your backend to handle form data.…
Golang drawer
https://ap4tt.hashnode.dev/what-go-programming-language-does-and-does-not-have-cjwp6rsde0001hos1jls5e2zo
DevDiary
What Go Programming Language does and does not have
Go has the benefit of hindsight, and basics are well done: it has a garbage collection, a package system, first class functions, lexical scope, a system call interface and immutable strings in which text are generally encoded in UTF-8. But it has com...
Golang drawer
https://dominicstpierre.com/easier-way-run-dotnet-linux-with-go
Dominicstpierre
An ~easier way to run ASP.NET MVC 5 apps on Linux with Go
Dominic St-Pierre's Blog
Golang drawer
https://github.com/thedevsaddam/govalidator
GitHub
GitHub - thedevsaddam/govalidator: Validate Golang request data with simple rules. Highly inspired by Laravel's request validation.
Validate Golang request data with simple rules. Highly inspired by Laravel's request validation. - thedevsaddam/govalidator
Golang drawer
https://github.com/axw/gocov
GitHub
GitHub - axw/gocov: Coverage testing tool for The Go Programming Language
Coverage testing tool for The Go Programming Language - axw/gocov
Golang drawer
https://github.com/allegro/bigcache
GitHub
GitHub - allegro/bigcache: Efficient cache for gigabytes of data written in Go.
Efficient cache for gigabytes of data written in Go. - allegro/bigcache
Golang drawer
https://github.com/olivia-ai/olivia
GitHub
GitHub - olivia-ai/olivia:
💁♀️
Your new best friend powered by an artificial neural network
💁♀️
Your new best friend powered by an artificial neural network - olivia-ai/olivia
Golang drawer
https://github.com/hacdias/webdav
GitHub
GitHub - hacdias/webdav: A simple and standalone WebDAV server.
A simple and standalone WebDAV server. Contribute to hacdias/webdav development by creating an account on GitHub.
Golang drawer
https://github.com/FluuxIO/go-xmpp
GitHub
GitHub - FluuxIO/go-xmpp: Native Go XMPP library
Native Go XMPP library. Contribute to FluuxIO/go-xmpp development by creating an account on GitHub.
Golang drawer
https://youtu.be/0HXtN01M-0M
YouTube
2 5 Go Modules in everyday life
讲师:Florin Patan 公司&职位:JetBrains/Developer Advocate 演讲主题:Using Go Modules in everyday life 主题摘要: 这次演讲的目的是深入介绍Go模块。 1. 将介绍Go模块的工作原理,以及使用它们的优点和缺点; 2. 将展示它们是如何工作...
Golang drawer
https://mohamedtaqi.com/learn/programming/go-programming-language/go-variables
Mohamedtaqi
Go: Variables - mohamedtaqi.com
In this lesson, we will learn:
What is a variable?
...
Golang drawer
https://mohamedtaqi.com/learn/programming/go-programming-language/go-names-and-scope
Mohamedtaqi
Go: Names and Scope - mohamedtaqi.com
The way you declare a variable or function, and the naming convention you use are very important, and some case differences affect scope too. In this...
Golang drawer
https://medium.com/rungo/defer-panic-and-recover-in-go-689dfa7f8802
Medium
Defer, Panic and Recover in Go
As we have seen the earlier tutorial, Go treats error as a value. But at times, Go breaks the program in runtime and such types of errors…