Jump to Content

Andrew M McCall

Andrew M McCall - Web Developer In Traverse City, Michigan

Web Development

Why Sublime Text Is Worth It In 2026 From A Paid License Holder

Sublime Text is a lightweight, easy to use text editor that was extremely popular in years past. I argue that it is still a viable text editor and one of the best you can choose in 2026.

Web Components a Beginner Friendly Guide

The basic elements of using the Web Components API broken down into some of the most common things we do with them.

Different Types of String Encoding Using Golang

Notes regarding string encoding in golang

Golang Check for Mysql Duplicate Key Error

In short, we cast the error to a Mysql Error and check the code

Docker Buildx Setup

A getting started guide for docker buildx

Docker: Important Topics & Notes

This is a repository of my notes and important topics on docker commands. Helpful for when I forget things.

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.