<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/"><channel><title>Posts on Samples of Code | Tyler Samples</title><link>https://tysamples.com/post/</link><description>Recent content in Posts on Samples of Code | Tyler Samples</description><generator>Hugo</generator><language>en-us</language><copyright>Tyler Samples</copyright><lastBuildDate>Fri, 12 Jun 2026 00:00:00 +0000</lastBuildDate><atom:link href="https://tysamples.com/post/index.xml" rel="self" type="application/rss+xml"/><item><title>Generating a PDF Resume with Pandoc and Docker</title><link>https://tysamples.com/p/generating-a-pdf-resume-with-pandoc-and-docker/</link><pubDate>Fri, 12 Jun 2026 00:00:00 +0000</pubDate><guid>https://tysamples.com/p/generating-a-pdf-resume-with-pandoc-and-docker/</guid><description>&lt;p&gt;In this post, we look at how to compile a markdown-formatted resume into a clean, print-ready PDF using Pandoc inside a container.&lt;/p&gt;</description></item><item><title>Containerizing Hugo with Nginx on Google Cloud Run</title><link>https://tysamples.com/p/containerizing-hugo-with-nginx-on-google-cloud-run/</link><pubDate>Thu, 11 Jun 2026 00:00:00 +0000</pubDate><guid>https://tysamples.com/p/containerizing-hugo-with-nginx-on-google-cloud-run/</guid><description>&lt;p&gt;In this post, we containerize this Hugo static site using Nginx and migrate our deployment pipeline from Google App Engine to Google Cloud Run.&lt;/p&gt;</description></item><item><title>PowerShell Rename Hashtable Properties</title><link>https://tysamples.com/p/powershell-rename-hashtable-properties/</link><pubDate>Thu, 05 Dec 2024 08:59:47 -0800</pubDate><guid>https://tysamples.com/p/powershell-rename-hashtable-properties/</guid><description>&lt;p&gt;This is a brief demonstration of how we can rename property names uniformly across a hash table, effectively renaming the &amp;ldquo;Column Name&amp;rdquo; that will be output if we generate a CSV.&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;"&gt;&lt;code class="language-Powershell" data-lang="Powershell"&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;$Data = Get-Content -Path ~\jsonextract.json | ConvertFrom-Json -AsHashtable
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;&lt;span style="color:#66d9ef"&gt;foreach&lt;/span&gt;($D &lt;span style="color:#66d9ef"&gt;in&lt;/span&gt; $Data)
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;{
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt; $D.newPropertyName = $D.oldPropertyName;
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt; $D.Remove(&lt;span style="color:#e6db74"&gt;&amp;#34;oldPropertyName&amp;#34;&lt;/span&gt;);
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span&gt;}
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;</description></item><item><title>sp_who_azsqldb</title><link>https://tysamples.com/p/sp_who_azsqldb/</link><pubDate>Tue, 22 Oct 2024 10:37:53 -0700</pubDate><guid>https://tysamples.com/p/sp_who_azsqldb/</guid><description>&lt;p&gt;This is a very mildly tweaked version of &lt;code&gt;sp_who2&lt;/code&gt; intended for use on Azure SQL DB to address some of its differences from standard SQL Server.&lt;/p&gt;</description></item><item><title>Migrate Data from SQL to Azure Table Storage</title><link>https://tysamples.com/p/migrate-data-from-sql-to-azure-table-storage/</link><pubDate>Mon, 18 Sep 2023 15:51:23 -0700</pubDate><guid>https://tysamples.com/p/migrate-data-from-sql-to-azure-table-storage/</guid><description>&lt;p&gt;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.&lt;/p&gt;</description></item><item><title>nvim Cheat Sheet</title><link>https://tysamples.com/p/nvim-cheat-sheet/</link><pubDate>Wed, 13 Sep 2023 14:18:27 -0700</pubDate><guid>https://tysamples.com/p/nvim-cheat-sheet/</guid><description>&lt;p&gt;nvim Cheat Sheets&lt;/p&gt;</description></item><item><title>Docker SQL Server Container</title><link>https://tysamples.com/p/docker-sql-server-container/</link><pubDate>Tue, 12 Sep 2023 00:00:00 +0000</pubDate><guid>https://tysamples.com/p/docker-sql-server-container/</guid><description>&lt;p&gt;These are the quick, basic steps to get a SQL Server instance running in Docker on your local machine for development purposes.&lt;/p&gt;</description></item><item><title>Basic Build and Deploy Pipeline</title><link>https://tysamples.com/p/basic-build-and-deploy-pipeline/</link><pubDate>Fri, 08 Sep 2023 00:00:00 +0000</pubDate><guid>https://tysamples.com/p/basic-build-and-deploy-pipeline/</guid><description>&lt;p&gt;This is a basic yaml pipeline used in GitHub Actions in order to build this Hugo site and deploys it. After every commit to the &lt;code&gt;main&lt;/code&gt; branch, this process converts markdown files to HTML using the Hugo build actions then deploys the updated site to an App Engine on Google Cloud Provider.&lt;/p&gt;</description></item><item><title>Terminal Setup</title><link>https://tysamples.com/p/terminal-setup/</link><pubDate>Tue, 05 Sep 2023 00:00:00 +0000</pubDate><guid>https://tysamples.com/p/terminal-setup/</guid><description>&lt;p&gt;This is a quick tutorial on getting the basics of a useful Terminal environment for development on a Windows machine.&lt;/p&gt;</description></item></channel></rss>