Made a library? Written a blog post? Found a useful tutorial? Share it with the Go community here or just enjoy what everyone else has found!
Creating serverless Slack commands in minutes with Go & Up
This post walks through the creation of a serverless Slack command written in Golang, and deployed to AWS Lambda in seconds with Up.
Go does not support inheritance, however it does support composition https://golangbot.com/inheritance/
For those new to Golang, here is a pretty popular Go Programming Book
Understanding mutexes, solving race condition using mutexes and channels https://golangbot.com/mutex/
https://golangbot.com/select/ Learn how select statement works and also get to know the practical use of select.
https://evilmartians.com/chronicles/introducing-overmind-and-hivemind
Procfile, introduced by David Dollar's foreman
, is a popular format for declaring processes—everyone who ever used Heroku, knows it well. Anyone who didn't, really should learn it—it's an easy way to declare all the stuff that is needed to run your project (web app, additional apps, background processing, tools and daemons) and launch it.
Unfortunately, foreman
had some limitations, so there are new kids on the block—tmux
support, tons of features, speedy and stable. Check them out!
In this video we will look at how we can use the github.com/gobuffalo/x/mail
package to send emails within a Buffalo application. We’ll see how to set multiple bodies, as well as an attachment, to the email. This video also demonstrates the new buffalo-mail plugin for this package.
https://blog.gobuffalo.io/sending-emails-in-buffalo-e211d3d8e20a
Read this article (https://www.fedux.org/articles/2017/07/29/bootstrapping-go.html) if you're interested in bootstrapping an environment for building go binaries to run on Windows, MacOS and Linux.
Learn how buffered channels work and how they can be used to implement worker pool. https://golangbot.com/buffered-channels-worker-pools/