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

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

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

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

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 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

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

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

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 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 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

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

books

concurrency

docker

file-upload

filesystem

graphql

http

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

Consuming A RESTful API With Go

🕘 6 Minutes

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

intermediate

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

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

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

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

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

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.

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

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

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

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

lua

mail

misc

redis

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

websockets