Topic:
Golang

advanced

Profile Guided Optimizations for Go Applications

🕘 4 Minutes

In this lesson, we'll be looking at how you can improve the efficiency of your Go applications using profile guided optimizations

advanced

Working with Websockets and Socket.IO in Go - Tutorial

🕘 4 Minutes

In this tutorial we'll look at how you can implement websockets in Golang

advanced

Go Protocol Buffer Tutorial

🕘 6 Minutes

In this tutorial, we are going to be taking a look at how you can use Protocol Buffers within your Go applications

advanced

Go WebAssembly Tutorial - Building a Calculator Tutorial

🕘 8 Minutes

In this tutorial, we are going to be looking at how you can compile your Go programs into WebAssembly

advanced

Go Oauth2 Tutorial

🕘 6 Minutes

In this tutorial, we are going to be diving into the world of Oauth2 in Go

advanced

Go Face Recognition Tutorial - Part 1

🕘 8 Minutes

advanced

Go Encryption and Decryption using AES - Tutorial

🕘 6 Minutes

advanced

Building a Solid Continuous Integration Pipeline with TravisCI for Your Go Projects

🕘 8 Minutes

In this tutorial, we look at how you can build a solid CI pipeline with Travis for your Go Projects

advanced go ci-cd

Writing Clean Functions in Go with the Full Mapping Strategy

🕘 6 Minutes

In this tutorial, we're going to be discussing how you can build clean functions in Go.

Advanced design-patterns go

Creating Real-Time Chat and Activity Systems With Getstream.io

🕘 1 Minutes

In this video tutorial, we are going to be looking at how you can build realtime chat and activity systems with GetStream.io's fantastic product offering,

advanced go realtime

Validating HTTP JSON Requests in Go

🕘 6 Minutes

In this tutorial, we are going to look at how we can add JSON request validation to our HTTP REST APIs in Go.

advanced

Getting Starting With Go Generics - Tutorial

🕘 9 Minutes

In this tutorial, we are going to be looking at how to work with the generic functions and types in Go!

advanced

Secure Coding in Go - Input Validation

🕘 8 Minutes

In this article, we will be reviewing general secure coding best practices and the OWASP Top 10 (2017) security risks, focusing on how they should be approached when coding using Go.

advanced

Writing a Frontend Web Framework with WebAssembly And Go

🕘 9 Minutes

In this tutorial, we are going to look at building a really simple frontend web framework using WebAssembly and Go

advanced

Securing Your Go REST APIs With JWTs

🕘 6 Minutes

In this tutorial, we are going to look at how you can secure your Go REST APIs with JSON Web Tokens

advanced go rest-api security

beginner

Getting Started With Go

🕘 4 Minutes

In this tutorial, we are going to get you up and running with Go so that you can go off and write your own Go programs.

beginner

Go Basic Types Tutorial

🕘 6 Minutes

In this tutorial, we are going to look at the various basic data types available in Go

beginner

Go Composite Types Tutorial

🕘 4 Minutes

In this tutorial, we are going to look at the various composite types available in Go

beginner

Go Functions Tutorial

🕘 5 Minutes

In this tutorial we'll look at what functions are in Golang and how you can use them in your programs

beginner

Go Methods Tutorial

🕘 2 Minutes

In this tutorial we'll look at what methods are in Golang and how you can use them in your programs

beginner go

Go Interfaces Tutorial

🕘 4 Minutes

In this tutorial, we are going to look at how you can create and use your own Interfaces within the Go Programming Langauge

beginner interfaces go

Reading in Console Input in Golang

🕘 3 Minutes

A quick and simple tutorial on how to read in console text input into your GoLang program. Excellent for simple shells and other command line driven tools.

beginner

Executing System Commands With Golang

🕘 4 Minutes

Executing system commands can be incredibly useful no matter what sort of software you are building,

beginner

Parsing JSON files With Golang

🕘 7 Minutes

In this tutorial we examine the encoding/json go package and how to parse JSON files.

beginner

Parsing XML Files With Golang

🕘 4 Minutes

In this tutorial we examine how to read in files and unmarshal them using the xml package in go.

beginner

The Go init Function

🕘 6 Minutes

In this tutorial we'll be looking at the Go init function, how to use it and some of the things to consider when using it within your Go programs.

beginner

Go JSON Tutorial

🕘 6 Minutes

In this tutorial, we are going to cover everything you need when it comes to working with JSON in Go.

beginner json go

Build a Go Serverless App in 5 Minutes With Sst

🕘 1 Minutes

In this video, we are going to look at what it takes to build a serverless application in Go in 5 minutes using SST.

beginner go serverless

Panic Recovery in Go - Tutorial

🕘 5 Minutes

In this article, we are going to be taking a look at how we can actively recover from panics within our Go applications.

beginner

Go Constructors Tutorial

🕘 5 Minutes

In this tutorial, we are going to be looking at the concept of constructors in Go.

beginner

Go Type Assertions Tutorial

🕘 4 Minutes

In this tutorial, we will be looking at Type Assertions in Go and some of the common use cases for Type Assertions!

beginner

Go Context Tutorial

🕘 6 Minutes

In this tutorial, we are going to be covering contexts in Go and how we can use them within our own Go applications.

beginner

Go Project Structure Best Practices

🕘 5 Minutes

In this article, we are going to look at some of the best practices that you should consider when structuring your Go applications.

beginner

Go Pointers Tutorial

🕘 5 Minutes

In this tutorial, we are going to be covering pointers in Go and how you can use them within your own Go programs. We'll be covering the best practices and we'll be covering some of the most common use-cases for pointers.

beginner

Go Sorting With the sort Package - Tutorial

🕘 3 Minutes

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.

beginner

Go Tickers Tutorial

🕘 3 Minutes

In this tutorial, we are going to look at how you can effectively use tickers in go to periodically execute tasks in your Go applications

beginner go

Go Modules Tutorial

🕘 6 Minutes

In this tutorial, we are going to be looking at how you can successfully work with modules in Go!

beginner go

Linked Lists in Go - Tutorial

🕘 4 Minutes

In this tutorial, we are going to have a look at how you can work with Linked Lists in the Go programming language

beginner go data-structures

books

ci-cd

cli

concurrency

data-structures

design-patterns

docker

file-upload

filesystem

go

Go Methods Tutorial

🕘 2 Minutes

In this tutorial we'll look at what methods are in Golang and how you can use them in your programs

beginner go

Go Interfaces Tutorial

🕘 4 Minutes

In this tutorial, we are going to look at how you can create and use your own Interfaces within the Go Programming Langauge

beginner interfaces go

Advanced Go Testing Tutorial

🕘 6 Minutes

In this tutorial, we are going to be having a look at some more advanced Go testing practices that the core language developers use to test the language itself.

testing go

An Intro to Go Dep

🕘 4 Minutes

In this tutorial, we are going to look at how you can get started using the go dep tool for your go projects.

intermediate go

An Introduction to Benchmarking Your Go Programs

🕘 5 Minutes

In this tutorial, we look at how you can effectively benchmark your go program.

misc performance go

Consuming A RESTful API With Go

🕘 6 Minutes

This tutorial demonstrates how you can consume an already running RESTful API using Go

intermediate go http rest-api

Go Maps Tutorial

🕘 4 Minutes

In this tutorial, we are going to look at how you can effectively use Maps within your Go applications.

concurrency data-structures go

Creating a RESTful API With Golang

🕘 14 Minutes

this tutorial demonstrates how you can create your own simple RESTful JSON api using Go(Lang)

intermediate go rest-api

Creating A Simple Web Server With Golang

🕘 6 Minutes

In this tutorial I'll be demonstrating how to create a very simple web server using Google's GoLang programming language.

intermediate web-server go

Building a Network Command Line Interface in Go

🕘 7 Minutes

In this tutorial, we are going to be building a very simple Command Line Interface or CLI in Go

intermediate cli go

Concurrency With Golang Goroutines

🕘 6 Minutes

In this tutorial we examine how we can build concurrent highly performant go programs using goroutines.

concurrency go

Go Mutex Tutorial

🕘 6 Minutes

In this tutorial, we are going to look at how you can use mutexes in your Go programs

concurrency go

Building a Solid Continuous Integration Pipeline with TravisCI for Your Go Projects

🕘 8 Minutes

In this tutorial, we look at how you can build a solid CI pipeline with Travis for your Go Projects

advanced go ci-cd

Go JSON Tutorial

🕘 6 Minutes

In this tutorial, we are going to cover everything you need when it comes to working with JSON in Go.

beginner json go

Writing Clean Functions in Go with the Full Mapping Strategy

🕘 6 Minutes

In this tutorial, we're going to be discussing how you can build clean functions in Go.

Advanced design-patterns go

Embedding Lua Scripts in Go with Shopify/go-lua

🕘 1 Minutes

In this snippet, we are going to look at how we can embed lua scripts into our Go applications using the Shopify/go-lua package.

go lua

Build a Go Serverless App in 5 Minutes With Sst

🕘 1 Minutes

In this video, we are going to look at what it takes to build a serverless application in Go in 5 minutes using SST.

beginner go serverless

Creating Real-Time Chat and Activity Systems With Getstream.io

🕘 1 Minutes

In this video tutorial, we are going to be looking at how you can build realtime chat and activity systems with GetStream.io's fantastic product offering,

advanced go realtime

Accepting Interfaces and Returning Structs

🕘 10 Minutes

In this article, we are going to discuss the benefits of accepting interfaces in your code and returning structs.

go design-patterns intermediate

Go Websocket Tutorial

🕘 8 Minutes

In this tutorial, we are going to look at how we can work with WebSockets in our Go-based applications.

WebSockets go

Go gRPC Beginners Tutorial

🕘 8 Minutes

In this tutorial, we'll be covering how you can get up and running with gRPC in your Golang systems.

intermediate grpc go

Building a Basic REST API in Go using Fiber

🕘 10 Minutes

In this tutorial, we are going to be taking a look at how you can build a really simple Go REST API using the gofiber/fiber framework inspired by Express.js!

intermediate rest-api go

Getting Started with Redis and Go - Tutorial

🕘 6 Minutes

In this tutorial, we are going to look at how you can use Redis as a backend service for your Go applications.

Redis go

Go Tickers Tutorial

🕘 3 Minutes

In this tutorial, we are going to look at how you can effectively use tickers in go to periodically execute tasks in your Go applications

beginner go

Go Modules Tutorial

🕘 6 Minutes

In this tutorial, we are going to be looking at how you can successfully work with modules in Go!

beginner go

Go Multi-Stage Docker Tutorial

🕘 7 Minutes

In this follow-up tutorial, we are going to look at how you can optimize containerizing our Go applications with Multi-stage Docker images.

docker go

Building a Real-time YouTube Subscriber Monitor in Go

🕘 11 Minutes

In this tutorial, we'll be building a realtime websocket based YouTube Subscriber monitor in Go!

WebSockets go

Linked Lists in Go - Tutorial

🕘 4 Minutes

In this tutorial, we are going to have a look at how you can work with Linked Lists in the Go programming language

beginner go data-structures

Go Variadic Function Tutorial

🕘 2 Minutes

In this tutorial, we are going to look at variadic functions in Go and how you can use them within your own Go applications

intermediate go

Securing Your Go REST APIs With JWTs

🕘 6 Minutes

In this tutorial, we are going to look at how you can secure your Go REST APIs with JSON Web Tokens

advanced go rest-api security

The Best Books For Learning Golang

🕘 7 Minutes

The definitive list of the best books you can buy whether you are a beginner, intermediate or advanced golang developer

books go

Sending Email Using Go And Mailgun

🕘 1 Minutes

In this tutorial I'll be demonstrating how to send mail using Mailgun's API and Google's GoLang programming language.

mail go

graphql

grpc

http

interfaces

intermediate

An Intro to Go Dep

🕘 4 Minutes

In this tutorial, we are going to look at how you can get started using the go dep tool for your go projects.

intermediate go

Consuming A RESTful API With Go

🕘 6 Minutes

This tutorial demonstrates how you can consume an already running RESTful API using Go

intermediate go http rest-api

Creating a RESTful API With Golang

🕘 14 Minutes

this tutorial demonstrates how you can create your own simple RESTful JSON api using Go(Lang)

intermediate go rest-api

Creating A Simple Web Server With Golang

🕘 6 Minutes

In this tutorial I'll be demonstrating how to create a very simple web server using Google's GoLang programming language.

intermediate web-server go

Building a Network Command Line Interface in Go

🕘 7 Minutes

In this tutorial, we are going to be building a very simple Command Line Interface or CLI in Go

intermediate cli go

Writing A Twitter Bot in Golang

🕘 6 Minutes

In this tutorial I'll be demonstrating how you can implement a twitter bot using the go programming language

intermediate

Golang ORM Tutorial

🕘 5 Minutes

In this tutorial, we look at how you can use the Go ORM or GORM to easily manage interactions with the database

intermediate

Golang MySQL Tutorial

🕘 5 Minutes

In this tutorial I'll be demonstrating how we can work with MySQL databases using Go.

intermediate

Go 1.23 Iterators Tutorial

🕘 7 Minutes

👋 Welcome Gophers! In this article, we are going to be looking at how you can use GitHub actions to supercharge your Go project setup!

intermediate

Functional Options Parameter Pattern in Go

🕘 1 Minutes

In this tutorial, we'll be discussing one of my favorite patterns and how you can use it to supercharge your Go app dev.

intermediate

Joining Errors With errors.Join in Go

🕘 1 Minutes

In this tutorial, we'll be looking at how we can join errors together in Go using the errors.Join method!

intermediate

Getting Started With Testmain in Go

🕘 2 Minutes

In this tutorial, we'll be covering how you can simplify and improve your tests in Go using the TestMain function.

intermediate

Beginner's Guide to Logging in Tests in Golang

🕘 2 Minutes

In this tutorial, we're going to be looking at how we can improve our test output readability using the inbuilt helper methods in the testing package!

intermediate

Taskfiles for Go Developers

🕘 6 Minutes

In this tutorial, we are going to explore how we can leverage Taskfiles within our Go development

intermediate

Accepting Interfaces and Returning Structs

🕘 10 Minutes

In this article, we are going to discuss the benefits of accepting interfaces in your code and returning structs.

go design-patterns intermediate

GitHub Actions for Go Projects

🕘 7 Minutes

👋 Welcome Gophers! In this article, we are going to be looking at how you can use GitHub actions to supercharge your Go project setup!

intermediate

Go RabbitMQ Beginners Tutorial

🕘 9 Minutes

In this tutorial, we are going to look at how you can build incredibly simple Go applications that interact with RabbitMQ.

intermediate

Go gRPC Beginners Tutorial

🕘 8 Minutes

In this tutorial, we'll be covering how you can get up and running with gRPC in your Golang systems.

intermediate grpc go

Building a Basic REST API in Go using Fiber

🕘 10 Minutes

In this tutorial, we are going to be taking a look at how you can build a really simple Go REST API using the gofiber/fiber framework inspired by Express.js!

intermediate rest-api go

An Introduction to Go Closures - Tutorial

🕘 3 Minutes

In this tutorial, we are going to be looking at closures and how you can use them within your own Go applications.

intermediate

Go Variadic Function Tutorial

🕘 2 Minutes

In this tutorial, we are going to look at variadic functions in Go and how you can use them within your own Go applications

intermediate go

Working With Environment Variables in Go

🕘 5 Minutes

The definitive list of all the books you should buy if you want to master the art of programming Golang applications

intermediate

Go Decorator Function Pattern Tutorial

🕘 6 Minutes

In this tutorial, we are going to be looking at how you can implement your own decorator functions in Go.

intermediate

json

lua

mail

misc

performance

realtime

redis

rest-api

security

serverless

snippet

snippets

Handling Panics in Go

🕘 2 Minutes

In this code snippet, we are going to be looking at how we can handle panics within our Go applications.

snippets

Variadic Functions in Go

🕘 2 Minutes

In this code snippet, we are going to look at how variadic functions in Go work!

snippets

Generating UUIDs in Go

🕘 1 Minutes

In this snippet, we are going to look at how we can generate UUIDs in Go, using the satori/go.uuid package

snippets

Deleting Elements From A Map In Go

🕘 1 Minutes

In this snippet, we are going to look at

snippets

Pretty Printing JSON Structs in Go

🕘 1 Minutes

In this snippet, we are going to look at how you can pretty print JSON values in Go!

snippets

Looping Over Array in Go

🕘 1 Minutes

In this snippet, we are going to look at how you can quickly loop over an array in Go

snippets

Checking if a string contains a sub-string in Go

🕘 1 Minutes

In this code snippet, we are going to look at how you can query the underlying system information such as CPU, RAM and hard drive utilization

snippets

Type Casting an Int to a Float in Go

🕘 1 Minutes

In this code snippet, we are going to look at how you can effectively cast an int in go to a float

snippets

Type Casting an Interface to a String in Go

🕘 1 Minutes

In this code snippet, we are going to look at how you can effectively cast an interface in go to a string.

snippets

Checking if a Key Exists in a Map in Go

🕘 2 Minutes

In this code snippet, we are going to look at how you can check to see if a key exists within a Map in Go

snippets

Comparing 2 Structs in Go

🕘 1 Minutes

In this code snippet, we are going to look at how you can compare 2 structs in Go!

snippets

Parsing Date Strings in Go

🕘 1 Minutes

In this code snippet, we are going to look at how you can parse date and time strings in Go using the time package.

snippets

Adding Values to an Array in Go

🕘 1 Minutes

In this code snippet, we are going to look at how you can add values to an array in Go

snippets

Concatenate Strings in Go

🕘 1 Minutes

In this code snippet, we are going to look at how you can use the strings.Builder type to efficiently concatenate strings in Go.

snippets

Converting a String to an Int in Go

🕘 1 Minutes

In this code snippet, we are going to look at how you can convert a string to an int value in Go

snippets

Getting the Size of an Array or Slice in Go

🕘 1 Minutes

In this code snippet, we are going to look at how you can retrieve the size or length of an Array or slice in Go

snippets

Sort Map by Value

🕘 1 Minutes

In this code snippet, we look at how you can quickly and easily sort maps in Go

snippets

Converting Byte Slices to Strings in Go

🕘 1 Minutes

In this article, we look at how you can convert a byte array or slice in Go to a string value.

snippets

testing

tools

web-server

websockets