Jump to Content

Andrew M McCall

Andrew M McCall - Web Developer In Traverse City, Michigan

Blog

Make a Slideshow With Rasberry Pi

This is my instructions for how to create a fast and easy photo slideshow using a raspberry pi 3B+ and an old television.

Setup Virt Manager With Qemu on Arch Linux

A no nonsense guide to setting up virt-manager on Arch Linux with qemu and libvirt

Pl Sql Architecture Introduction

PL/SQL is an extension of SQL Engine created by Oracle to add logical programming to SQL for Oracle databases which offers a blend of programming as well as optimizations for SQL engine.

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.