Hello Again

Return to blogging on a new platform

Published on Saturday, 16 October 2021

A long time ago I used Blogspot as a platform for blogging. I was never very happy with it, and many posts never were officially published because included code looked terrible and was unusable. I thought I'd revisit posting them after finding a style and/or way to make code easier to consume. Sadly that never happened, and once you pause something life happens, and pause becomes 'stop.'

Recently I've been having some conversations with former coworkers talking about the good-old-days and was reminded of the old blog. Certainly things have improved recently in this world, right? Turns out, not really. I'd rather write in Markdown, use modern tooling, be able to style sample code, and lots more. Coincidentally, I was inspired by Mike Hadlow who recently redid his blog platform, and is a worthwhile read - much of what I said here was said better by Mike.

While looking further into options, Rick Strahl was kind enough to respond to a question regarding using Markdown Monster and mentioned Statiq.Web (among other options), and given Mike Hadlow's comments, thought I'd investigate that a bit more. There are a few blogging templates for it. One by Bradley Wells, and another a CleanBlog by Dave Glick (author of Statiq.Web). I also found a set of posts by Feiko Gorter that walk you through a process to create and automate this via GitHub Pages. What you see here is essentially thanks to that article.

using System;

public class Program{
  public static Main(){
    Console.WriteLine("Hello World (again)");
  }
}