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. ...
In this post, we look at how to compile a markdown-formatted resume into a clean, print-ready PDF using Pandoc inside a container. ...
In this post, we containerize this Hugo static site using Nginx and migrate our deployment pipeline from Google App Engine to Google Cloud Run. ...
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"); }
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. ...
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. ...