Jump to Content

Andrew M McCall

Andrew M McCall - Web Developer In Traverse City, Michigan

Go

Go Net Listener Http Server Example

We explore the net package, spin up a net.Listener, accept requests, and respond with html

Using Go Embed Package for Template Rendering

Go’s embed package is excellent for creating a Go template rendering engine. The benefit of using the embed package is that your templates get bundled with your binary. Learn how to use the embed package to render templates in golang applications.

Notes On Testing Golang Applications

My personal collection of Go testing notes. Some of these may be helpful if you find yourself in similar situations writing web applications.

Custom Golang Http Router With Middleware

Go standard library, as well as many others have already solved implementing a robust, production grade http server. So why bother writing one? This post will hopefully yield some insight of why it is important to revisit established technology.

Neovim Custom File Extension Syntax Highlighting

We learn how to use treesitter injections to setup syntax highlighting for custom file extensions

Golang Send Multipart Form Data to Api Endpoint

We often need to send data and files from one JSON API endpoint to another. In this post, I explain how to use multipartform writer to send form data across api endpoint boundaries.

Unit Testing Json Encode

Here are my notes on testing a JSON writer for Golang that lets you wrap the response in an envelope

Go Channels Tutorial - Understanding Goroutines and Channels

Go has powerful concurrency tools fully baked into the programming Language. This post aims to explain go routines and channels so you can get started using them in your own projects.

Golang Read Environment Variables From File: How To Do It [Code Snippets]

A brief overview of parsing your own environment file using Go