Generating a PDF Resume with Pandoc and Docker

In this post, we look at how to compile a markdown-formatted resume into a clean, print-ready PDF using Pandoc inside a container. ...

June 12, 2026 · 2 min · Tyler Samples

Containerizing Hugo with Nginx on Google Cloud Run

In this post, we containerize this Hugo static site using Nginx and migrate our deployment pipeline from Google App Engine to Google Cloud Run. ...

June 11, 2026 · 3 min · Tyler Samples

PowerShell Rename Hashtable Properties

This is a brief demonstration of how we can rename property names uniformly across a hash table, effectively renaming the “Column Name” that will be output if we generate a CSV. $Data = Get-Content -Path ~\jsonextract.json | ConvertFrom-Json -AsHashtable foreach($D in $Data) { $D.newPropertyName = $D.oldPropertyName; $D.Remove("oldPropertyName"); }

December 5, 2024 · 1 min · Tyler Samples

sp_who_azsqldb

This is a very mildly tweaked version of sp_who2 intended for use on Azure SQL DB to address some of its differences from standard SQL Server. ...

October 22, 2024 · 2 min · Tyler Samples

Migrate Data from SQL to Azure Table Storage

This is a quick demonstration of how we can migrate data from Azure SQL Database (or any other source that can be converted to CSV) into Azure Table Storage. ...

September 18, 2023 · 2 min · Tyler Samples