diff --git a/docs/blog/posts/000-new_website.md b/docs/blog/posts/000-new_website.md index 0c082f6..bff337d 100644 --- a/docs/blog/posts/000-new_website.md +++ b/docs/blog/posts/000-new_website.md @@ -1,4 +1,6 @@ --- +title: New Website! +description: Every few years I grow tired of my website and build a new one. Here's what I did this time. date: 2019-01-20 categories: - Programming diff --git a/docs/blog/posts/001-year_of_linux_desktop.md b/docs/blog/posts/001-year_of_linux_desktop.md index b18d123..89c4081 100644 --- a/docs/blog/posts/001-year_of_linux_desktop.md +++ b/docs/blog/posts/001-year_of_linux_desktop.md @@ -1,4 +1,6 @@ --- +title: Year of the Linux Desktop +description: WSL is a powerful tool. Learn how to install it. date: 2019-09-30 categories: - Programming diff --git a/docs/blog/posts/002-work_litmus_test.md b/docs/blog/posts/002-work_litmus_test.md index ec945b7..49c13bf 100644 --- a/docs/blog/posts/002-work_litmus_test.md +++ b/docs/blog/posts/002-work_litmus_test.md @@ -1,4 +1,6 @@ --- +title: My Personal Job Litmus Test +description: This is how I figure out my feelings about my current role. date: 2020-11-20 categories: - Career diff --git a/docs/blog/posts/003-year_one_do.md b/docs/blog/posts/003-year_one_do.md index 3c2a1a6..4ecaf83 100644 --- a/docs/blog/posts/003-year_one_do.md +++ b/docs/blog/posts/003-year_one_do.md @@ -1,4 +1,6 @@ --- +title: "Exploring New Waters: A Year One DigitalOcean Recap" +description: A recap of my first year at DigitalOcean. date: 2020-12-18 categories: - Career diff --git a/docs/blog/posts/004-django_flask.md b/docs/blog/posts/004-django_flask.md index d642698..c0bc1f2 100644 --- a/docs/blog/posts/004-django_flask.md +++ b/docs/blog/posts/004-django_flask.md @@ -1,4 +1,6 @@ --- +title: "Django or Flask: How Do I Choose Which To Use?" +description: A quick little test to see if I want to use Flask or Django. date: 2021-01-17 categories: - Programming diff --git a/docs/blog/posts/005-interviews.md b/docs/blog/posts/005-interviews.md index 6380d54..6d36988 100644 --- a/docs/blog/posts/005-interviews.md +++ b/docs/blog/posts/005-interviews.md @@ -1,4 +1,6 @@ --- +title: Tech Industry Interviews are Bullshit. Let's Make Them Better +description: We all hate them. Why are they like this? date: 2021-02-15 categories: - Career diff --git a/docs/blog/posts/006-resumes.md b/docs/blog/posts/006-resumes.md index 5bd96f8..23afbe4 100644 --- a/docs/blog/posts/006-resumes.md +++ b/docs/blog/posts/006-resumes.md @@ -1,4 +1,6 @@ --- +title: Random Musings About Resumes +description: My thoughts on what I like and don't like to see on resumes. date: 2021-03-31 categories: - Resumes diff --git a/docs/blog/posts/007-year_two_do.md b/docs/blog/posts/007-year_two_do.md index 0d0075e..e916923 100644 --- a/docs/blog/posts/007-year_two_do.md +++ b/docs/blog/posts/007-year_two_do.md @@ -1,4 +1,6 @@ --- +title: "Swimming with the Sharks: Year 2 DO" +description: A Recap of My Second Year at DigitalOcean. date: 2022-01-03 categories: - Career diff --git a/docs/blog/posts/008-writing_talk_proposals.md b/docs/blog/posts/008-writing_talk_proposals.md index ed11241..b01773d 100644 --- a/docs/blog/posts/008-writing_talk_proposals.md +++ b/docs/blog/posts/008-writing_talk_proposals.md @@ -1,4 +1,6 @@ --- +title: How I Write Conference Talk Proposals +description: My process for writing conference talk proposals. date: 2022-01-30 categories: - Career diff --git a/docs/tutorials/index.md b/docs/tutorials/index.md index 7f91ea5..deecdc9 100644 --- a/docs/tutorials/index.md +++ b/docs/tutorials/index.md @@ -1,3 +1,7 @@ +--- +title: Tutorials +description: A collection of various tutorials I've written +--- # Tutorials These are technical tutorials on various topics that interest me or problems diff --git a/docs/tutorials/posts/001-7d2d.md b/docs/tutorials/posts/001-7d2d.md index f352c65..09fc2f6 100644 --- a/docs/tutorials/posts/001-7d2d.md +++ b/docs/tutorials/posts/001-7d2d.md @@ -1,4 +1,6 @@ --- +title: How To Build a 7 Days To Die Server on Ubuntu +description: Learn how to build a vanilla 7 Days to Die Server on Ubuntu. date: 2022-10-21 updated: 2023-09-19 updated_formatted: September 19, 2023 diff --git a/docs/tutorials/posts/002-python-redirect.md b/docs/tutorials/posts/002-python-redirect.md index 9fb5234..9fa3fb7 100644 --- a/docs/tutorials/posts/002-python-redirect.md +++ b/docs/tutorials/posts/002-python-redirect.md @@ -1,4 +1,6 @@ --- +title: Redirecting Web Traffic Using Flask +description: A tiny Flask App to redirect traffic that comes into a given URL date: 2021-04-15 categories: - Python