Skip to content

Commit 82dce68

Browse files
committed
chore(blog): normalize dates and remove youtube frontmatter
- Normalize all post dates to T12:00:00-05:00 format - Remove youtube frontmatter from 4 posts with unavailable videos
1 parent 3c2ae41 commit 82dce68

27 files changed

Lines changed: 26 additions & 30 deletions

File tree

  • src/content/blog
    • 2020
      • c-8-switch-expressions
      • clean-coding-in-c-part-i
      • git-tag-based-released-process-using-github-actions
      • gitkraken-git-gui-how-to-add-remove-files
      • gitkraken-git-gui-how-to-cloning-a-repository
      • gitkraken-git-gui-how-to-committing-changes
    • 2021
      • installing-docker-and-docker-compose-in-wsl2ubuntu-on-windows
      • real-time-ui-updates-with-postgres-and-signalr
      • whats-the-difference-anyway-class-struct-record-oh-my
    • 2022
      • adding-a-cla-bot-to-your-github-repository
      • extending-visual-studio-codelens-functionality
      • generating-code-coverage-metrics-for-net-framework-applications
      • is-codelens-enabled
      • opening-an-ssh-tuneel-in-an-azure-devops-pipeline
      • uploading-files-with-httpclient-in-net-6
    • 2023
      • extending-visual-studio-codelens-functionality-part-ii
      • finding-symbols-in-your-c-projects-using-roslyn
      • introducing-the-breakpoint-notifier-visual-studio-extension
      • introducing-the-open-bin-folder-visual-studio-extension
      • introducing-the-open-bin-folder-visual-studio-for-mac-extension
      • introducing-the-super-clean-visual-studio-extension
      • introducing-the-super-clean-visual-studio-for-mac-extension
      • introducing-the-visual-studio-marketplace-publish-github-action
      • introducing-the-visual-studio-vsix-signer-github-action
      • introducing-the-visual-studio-vsix-versioner-github-action
      • my-video-recording-live-streaming-setup
    • 2025/creating-your-own-msbuild-sdk-it-s-easier-than-you-think

src/content/blog/2020/c-8-switch-expressions/index.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
title: "C# 8.0 - Switch Expressions"
33
categories: [csharp,dotnet]
44
description: "Switch 'expressions' are a more concise version of a switch 'statement' that was released in C# 8.0. Let's take a look!"
5-
youtube: "https://www.youtube.com/embed/yLJl4bJtoMQ"
65
date: "2020-02-01T12:00:00-05:00"
76
---
87

src/content/blog/2020/clean-coding-in-c-part-i/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: "Clean Coding in C# - Part I"
3-
date: "2020-04-30T09:13:31-04:00"
3+
date: "2020-04-30T12:00:00-05:00"
44
categories: [csharp,dotnet]
55
description: "The first post in a new series about what I consider to be 'clean code' (using C#, of course). In this one, let's take a look at conditionals (if/else statements)"
66
---

src/content/blog/2020/git-tag-based-released-process-using-github-actions/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: "Git Tag Based Released Process Using GitHub Actions"
3-
date: "2020-05-08T14:58:37-04:00"
3+
date: "2020-05-08T12:00:00-05:00"
44
categories: [csharp,git,github]
55
description: "In this post, we're going to take a look at using Git Tags and Conditional Steps in GitHub Actions to create a release process."
66
---

src/content/blog/2020/gitkraken-git-gui-how-to-add-remove-files/index.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
---
22
title: "GitKraken Git GUI How-To: Add & Remove Files"
3-
date: "2020-05-29T21:55:11-04:00"
3+
date: "2020-05-29T12:00:00-05:00"
44
categories: [gitkraken,git]
55
description: "In this post, we're going to look at how you add new files - and remove them - to be committed in the GitKraken Git GUI."
6-
youtube: https://www.youtube.com/embed/9r6Fp0EeMNI
76
---
87

98
In my previous post, "[GitKraken Git GUI How-To: Cloning a Repository](https://www.codingwithcalvin.net/gitkraken-git-gui-how-to-cloning-a-repository/)", we went over how to do just that. Now that we have a repository to work with, we need to make some changes! Maybe that involves changing existing files, or adding new ones. However, just editing or creating files in the repository doesn't necessarily mean they'll be committed, pushed (future topics, I promise), and available for other folks to work with.

src/content/blog/2020/gitkraken-git-gui-how-to-cloning-a-repository/index.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
---
22
title: "GitKraken Git GUI How-To: Cloning a Repository"
3-
date: "2020-05-09T12:50:37-04:00"
3+
date: "2020-05-09T12:00:00-05:00"
44
categories: [gitkraken,git]
55
description: "In this tutorial, I'm going to show you how to use the GitKraken Git GUI to clone a repository"
6-
youtube: "https://www.youtube.com/embed/Yprw5ttuJLk"
76
---
87

98
If you're new to the GitKraken Git GUI or interested in it, one of the first things you'll want to do after installing it is clone a repository so you can get to work.

src/content/blog/2020/gitkraken-git-gui-how-to-committing-changes/index.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
---
22
title: "GitKraken Git GUI How-To: Committing Changes"
3-
date: "2020-06-19T20:55:38-04:00"
3+
date: "2020-06-19T12:00:00-05:00"
44
categories: [gitkraken,git]
55
description: "In this post, we'll take a look at how to commit your changes inside the GitKraken Git GUI application."
6-
youtube: https://www.youtube.com/embed/b9d24BMbCYk
76
---
87

98
In my previous post, "[GitKraken Git GUI How-To: Add & Remove Files](https://www.codingwithcalvin.net/gitkraken-git-gui-how-to-add-remove-files)", we went over how to add and remove (stage and unstage) changes using the GitKraken Git GUI application.

src/content/blog/2021/installing-docker-and-docker-compose-in-wsl2ubuntu-on-windows/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: "Installing Docker, and Docker-Compose, in WSL2/Ubuntu on Windows"
3-
date: "2021-09-02T14:01:44-04:00"
3+
date: "2021-09-02T12:00:00-05:00"
44
categories: [wsl,docker]
55
description: "Since Docker Desktop has a new subscription model, I needed a way to run docker and docker-compose, without subscribing. That's easier said than done on Windows, though, so WSL2 to the rescue!"
66
---

src/content/blog/2021/real-time-ui-updates-with-postgres-and-signalr/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: "Real-Time UI Updates with Postgres and SignalR"
3-
date: "2021-05-16T15:19:28-04:00"
3+
date: "2021-05-16T12:00:00-05:00"
44
categories: [postgres,signalr,dotnet]
55
description: "In this post, I'll discuss how I sent new database records to the UI with Postgres and SignalR."
66
---

src/content/blog/2021/whats-the-difference-anyway-class-struct-record-oh-my/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: "What's the Difference Anyway?! Class, Struct, Record, oh my!"
3-
date: "2021-12-25T08:00:00-05:00"
3+
date: "2021-12-25T12:00:00-05:00"
44
categories: [dotnet,csharp]
55
description: "In this post, we'll talk briefly about the differences between a class, struct, and a record in C#."
66
subtitle: "Understanding C# type fundamentals!"

src/content/blog/2022/adding-a-cla-bot-to-your-github-repository/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: "Adding a CLA Bot to Your GitHub Repository"
3-
date: "2022-05-27T12:20:17-05:00"
3+
date: "2022-05-27T12:00:00-05:00"
44
categories: [github,devops,cla]
55
description: "Today, I spent a little bit of time figuring out how to get a proper CLA bot attached to some GitHub repositories. Gotta tell ya, it wasn't that hard, but I wanted to blog it anyway so I can refer back when I have to do it again in 5 years."
66
---

0 commit comments

Comments
 (0)