Golang drawer
@golang101
174
subscribers
1
photo
5.03K
links
Curated Golang news
Download Telegram
Join
Golang drawer
174 subscribers
Golang drawer
https://alehatsman.com/post/golang_type_declaration_abuse.html
Golang drawer
https://dev.to/douglasmakey/golang-capturing-logs-and-send-an-email-37fc
DEV Community
👩💻
👨💻
Golang: capturing logs and send an email
Capturing logs and send an email by go.
Golang drawer
https://nullprogram.com/blog/2019/06/30/
Golang drawer
https://eleni.blog/2019/06/30/variable-scopes-and-shadowing-in-go/
Eleni Fragkiadaki
Variable scopes and shadowing in Go
A lot of things in life are a matter of perspective and visibility and the same applies to variables in Go
😅
. But what is a variable’s scope, how is it defined and what does it mean to shadow…
Golang drawer
https://medium.com/@kent.rancourt/go-pointers-ex-post-facto-interfaces-100001877b87
Medium
Go Pointers: Ex Post Facto Interfaces
Ex post facto is a Latin phrase meaning “with retroactive effect.” I find this an apt descriptor for the pattern I want to explore in this…
Golang drawer
https://blog.dgraph.io/post/serialization-versioning/
dgraph.io
Semantic Versioning, Go Modules, and Databases
A little bit over a month I joined Dgraph Labs, a really cool tiny startup based (mostly) in San Francisco and Bangalore building what we believe is the next generation of Graph Databases.
Golang drawer
https://tutorialedge.net/golang/go-maps-tutorial/
TutorialEdge.net
Go Maps Tutorial
In this tutorial, we are going to look at how you can effectively use Maps within your Go applications.
Golang drawer
https://tutorialedge.net/golang/go-sorting-with-sort-tutorial/
TutorialEdge.net
Go Sorting With the sort Package - Tutorial
In this tutorial, we are going to be taking a look at how you can implement sorting in your Go applications using the sort package.
Golang drawer
https://golangbot.com/methods/
golangbot
Methods in Go
A method is a function with a receiver type. This tutorial explains the syntax and uses of methods along with the difference between functions and methods.
Golang drawer
https://medium.com/@moshe.beladev.mb/watch-out-for-compiler-optimizations-bdd027071843
Medium
Watch out for Compiler Optimizations
Every compiler, including Golang’s, optimizes our code to an extent. This makes our build faster and outputs a smaller and probably more…
Golang drawer
https://alehatsman.com/post/golang_type_declaration_abuse.html
Golang drawer
https://gophp.io/how-to-run-a-go-web-server-on-aws/
GoPHP.io
How To Run A Go Web Server On AWS - GoPHP.io
This guide covers how to configure and run a go program on AWS. We walk through how to create an instance and have go serve some text on port 80.
Golang drawer
https://drivy.engineering/things-to-consider-when-choosing-a-third-party-api/
Drivy Engineering
Things to consider when choosing a third-party API | Drivy Engineering
There are a lot of third-party-services APIs, but not all are created equally. In this article, we'll list the different points you should consider before you take a decision: documentation, libraries, SDKs, support, pricing, data privacy, and maintenance
Golang drawer
https://www.scribd.com/document/415603131/The-Ultimate-Guide-to-Building-Database-Intensive-Apps-With-Go?secret_password=Djt7QACg9xlTqEFi2Tty
Golang drawer
https://boyter.org/posts/sloc-cloc-code-badges/
Golang drawer
https://hackernoon.com/continuous-development-with-docker-and-vscode-go-version-164ee78d09bf
Hackernoon
Continuous Development with Docker and VSCode — Go Version | Hacker Noon
Golang drawer
https://golangbot.com/polymorphism/
golangbot
Polymorphism - OOP in Go
Polymorphism in Go is achieved with the help of interfaces. A variable of type interface can hold any value which implements the interface. This property is used to achieve polymorphism in Go.
Golang drawer
https://golangbot.com/interfaces-part-1/
golangbot
Interfaces - Part I
Learn how interfaces work in Go with the help of practical examples. This tutorial also covers empty interface, type assertion and type switch.
Golang drawer
https://tutorialedge.net/golang/writing-a-twitter-bot-golang/#searching-tweets
TutorialEdge.net
Writing A Twitter Bot in Golang
In this tutorial I'll be demonstrating how you can implement a twitter bot using the go programming language
Golang drawer
https://dave.cheney.net/2019/07/09/clear-is-better-than-clever
Golang drawer
https://eli.thegreenplace.net/2019/go-compiler-internals-adding-a-new-statement-to-go-part-1/