Welcome to my blog!

Welcome to the Flat Cap Dev! The home of a guy who writes software by day and parents, does random house work, grills, solders, woodworks, programs, ferments, reads, plays with Lego and watches movies by night. Basically I'm a serial tinkerer.

There is no theme to this blog, I'm just hoping for some consistency!

Below are some of my favorite articles, or you can go to the blog page to see my most recent posts.

using System;
namespace HelloWorld
{
	class Hello
	{
		static void Main(string[] args)
		{
			Console.WriteLine("Hello World!");
		}
	}
}