Golang drawer
@golang101
174
subscribers
1
photo
5.03K
links
Curated Golang news
Download Telegram
Join
Golang drawer
174 subscribers
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…
Golang drawer
https://medium.com/@william.la.martin/effective-ginkgo-gomega-b6c28d476a09
Medium
Effective Ginkgo/Gomega
I’ve been writing Go tests using the Ginkgo BDD test library, and its preferred matcher library Gomega for almost four years as of writing…
Golang drawer
https://harrisonbrock.dev/2019/06/14/different-ways-to-remove-whitespaces-from-strings-in-go/
Harrison Brock
Different Ways to Remove Whitespaces From Strings In Go - Harrison Brock
Learn how to remove whitespaces from a string using the TrimSpace function.
Golang drawer
https://ctoasaservice.org/2019/06/18/creating-a-slackbot-on-aws-using-golang-part-2-price-based-alerting/
CTO as a Service
Creating a Slackbot on AWS using Golang - Part 2 - Price-based Alerting - CTO as a Service
A Stock Quote Alerter Slash Command for Slack using Golang and AWS
Golang drawer
https://blog.eduardohitek.com/posts/ya-mongodb-tutorial/
Eduardohitek
Yet Another MongoDB Golang Tutorial
After years relying on Community drivers like mgo and globalsign/mgo, last year MongoDB announced they were building it’s own solution. Last March they released the version 1.0.0, so let’s see how to make some normal operations using the Oficial driver.
First…
Golang drawer
https://developer.here.com/blog/real-time-maps-with-a-raspberry-pi-golang-and-here-xyz
HERE Developer Blog
Real-Time Maps with a Raspberry Pi, Golang, and HERE XYZ - HERE Developer
By now you’ve probably seen a few of my tutorials related to Raspberry Pi and location data. I’m a big fan of these small Internet of Things (IoT) devices and have written tutorials around WLAN positioning with Golang and GPS positioning with Node.js.
Golang drawer
https://dev.to/camilopayan/netlify-form-submissions-with-golang-lambda-functions-537l
The DEV Community
Netlify Form Submissions With Golang Lambda Functions
Golang drawer
https://github.com/lopezator/migrator
GitHub
GitHub - lopezator/migrator: Dead simple Go database migration library.
Dead simple Go database migration library. Contribute to lopezator/migrator development by creating an account on GitHub.
Golang drawer
https://blog.pragmaticengineer.com/good-code-reviews-better-code-reviews/
The Pragmatic Engineer
Good Code Reviews, Better Code Reviews
I've published an updated and re-edited version of this article on the Stack
Overflow blog - check it out
[https://stackoverflow.blog/2019/09/30/how-to-make-good-code-reviews-better/]!
I have been doing day to day code reviews for over a decade now. The…
Golang drawer
https://docs.keydb.dev/blog/2019/06/17/blog-post/
docs.keydb.dev
How Fast can A Single Instance of Redis be? | KeyDB - The Faster Redis Alternative
Redis is known as one of the fastest databases out there. But what if some of the limitations were removed, how fast could a stand-alone instance become? We often hear that Redis will likely become network bound or memory bound before it is CPU bound on performance…
Golang drawer
https://sudo-bmitch.github.io/presentations/docker-build/presentation.html#1
Golang drawer
https://pragmacoders.com/blog/multithreading-in-go-a-tutorial
Golang drawer
https://go-colly.org/
go-colly.org
Scraping Framework for Golang
Scraping framework for extracting the data you need from websites, used for a wide range of applications, like data mining, data processing or archiving
Golang drawer
https://blog.alexellis.io/golang-json-api-client/
Alex Ellis' Blog
Golang basics - grab JSON from an API
Learn a Golang recipe for parsing JSON from a remote API on the Internet over HTTP. This is beginner/intermediate content in the Golang basics series
Golang drawer
https://github.com/dghubble/go-twitter
GitHub
GitHub - dghubble/go-twitter: Go Twitter REST and Streaming API v1.1
Go Twitter REST and Streaming API v1.1. Contribute to dghubble/go-twitter development by creating an account on GitHub.
Golang drawer
https://thinkingeek.com/2017/05/21/small-telegram-bot/
Think In Geek
A small Telegram Bot in Go
I started using Telegram a few years ago. Most of the time I don’t use it much to have 1 to 1 conversations but rather chat in a small group of friends which I’ve known for a while now. Every now a...
Golang drawer
https://youtu.be/IauflMdOWTg
YouTube
USENIX ATC'19 lightning talk: Secured Routines: Language-based Construction of TEEs
Secured Routines: Language-based Construction of Trusted Execution Environments authors: Adrien Ghosn, James R. Larus, Edouard Bugnion. This video is the lig...
Golang drawer
https://medium.com/@blanchon.vincent/go-race-detector-with-threadsanitizer-8e497f9e42db
Medium
Go: Race Detector with ThreadSanitizer
Go provides a powerful tool to detect race conditions. This tool can be enabled by the flag -race that you can use with your tests or…