fix: fixed tags and categories in several blog posts

This commit is contained in:
Rick van Lieshout 2023-09-24 15:35:46 +02:00
parent 1d9ddc82fe
commit 7019f34005
16 changed files with 30 additions and 29 deletions

View File

@ -7,8 +7,8 @@ A list of categories used in the blog
| ----------- | -------------------------------------------------------- | | ----------- | -------------------------------------------------------- |
| blog | random blog stuff | | blog | random blog stuff |
| IOT | anything to do with IOT | | IOT | anything to do with IOT |
| Homelab | anything to do with my homelab (including smart home...) | | homelab | anything to do with my homelab (including smart home...) |
| Development | anything to do with regular development | | development | anything to do with regular development |
| exploits | blogs about exploits and bugs in open-source software | | exploits | blogs about exploits and bugs in open-source software |
| Lego | blogs about Lego | | lego | blogs about Lego |
| house | Content about the place I live | | house | Content about the place I live |

View File

@ -2,7 +2,7 @@
title: "Raspberry pi cluster Step 1: Shopping" title: "Raspberry pi cluster Step 1: Shopping"
date: "2014-09-05 23:00" date: "2014-09-05 23:00"
template: "post" template: "post"
category: "Homelab" category: "homelab"
tags: tags:
- "raspberry" - "raspberry"
- "cluster" - "cluster"

View File

@ -2,7 +2,7 @@
title: "Raspberry pi cluster Step 2: Assembling the hardware" title: "Raspberry pi cluster Step 2: Assembling the hardware"
date: "2014-09-10" date: "2014-09-10"
template: "post" template: "post"
category: "Homelab" category: "homelab"
tags: tags:
- "raspberry" - "raspberry"
- "cluster" - "cluster"

View File

@ -2,7 +2,7 @@
title: "Raspberry pi cluster Step 3: Installing the OS" title: "Raspberry pi cluster Step 3: Installing the OS"
date: "2014-09-14" date: "2014-09-14"
template: "post" template: "post"
category: "Homelab" category: "homelab"
tags: tags:
- "raspberry" - "raspberry"
- "cluster" - "cluster"

View File

@ -2,7 +2,7 @@
title: "Raspberry pi cluster Step 4: Setting up the master node" title: "Raspberry pi cluster Step 4: Setting up the master node"
date: "2014-09-17" date: "2014-09-17"
template: "post" template: "post"
category: "Homelab" category: "homelab"
tags: tags:
- "raspberry" - "raspberry"
- "cluster" - "cluster"

View File

@ -2,7 +2,7 @@
title: "Raspberry pi cluster step 5: Expanding the cluster" title: "Raspberry pi cluster step 5: Expanding the cluster"
date: "2014-09-19" date: "2014-09-19"
template: "post" template: "post"
category: "Homelab" category: "homelab"
tags: tags:
- "raspberry" - "raspberry"
- "cluster" - "cluster"

View File

@ -2,12 +2,12 @@
title: "The pi cluster, home automation & kickstarter monitoring" title: "The pi cluster, home automation & kickstarter monitoring"
date: "2014-09-27" date: "2014-09-27"
template: "post" template: "post"
category: "Homelab" category: "homelab"
tags: tags:
- "python" - "python"
- "raspberry" - "raspberry"
- "pi" - "pi"
- "home automation" - "home-automation"
description: "Today's blog is about home automation." description: "Today's blog is about home automation."
disqusId: "7" disqusId: "7"
--- ---

View File

@ -3,9 +3,9 @@ title: Scala Day 0 - What is Scala?
date: "2017-03-30" date: "2017-03-30"
template: "post" template: "post"
draft: false draft: false
category: "Development" category: "development"
tags: tags:
- "Development" - "development"
- "slsw" - "slsw"
description: "My final assignment for a school course is to learn a new language from a book (uh-oh). I picked Scala and here's why" description: "My final assignment for a school course is to learn a new language from a book (uh-oh). I picked Scala and here's why"
disqusId: "20" disqusId: "20"

View File

@ -3,9 +3,9 @@ title: Scala Day 1 - The Basics
date: "2017-04-02" date: "2017-04-02"
template: "post" template: "post"
draft: false draft: false
category: "Development" category: "development"
tags: tags:
- "Development" - "development"
- "slsw" - "slsw"
description: "Let's take a deep dive into a programming book and Scala!" description: "Let's take a deep dive into a programming book and Scala!"
disqusId: "21" disqusId: "21"

View File

@ -3,9 +3,9 @@ title: Scala Day 2 - Let's get functional
date: "2017-04-03" date: "2017-04-03"
template: "post" template: "post"
draft: false draft: false
category: "Development" category: "development"
tags: tags:
- "Development" - "development"
- "slsw" - "slsw"
description: "Today we'll focus on the functional aspects of Scala" description: "Today we'll focus on the functional aspects of Scala"
disqusId: "22" disqusId: "22"

View File

@ -3,9 +3,9 @@ title: Scala Day 3 - Concurrency is key!
date: "2017-04-04" date: "2017-04-04"
template: "post" template: "post"
draft: false draft: false
category: "Development" category: "development"
tags: tags:
- "Development" - "development"
- "slsw" - "slsw"
description: "A day full of functional joy and concurrency " description: "A day full of functional joy and concurrency "
disqusId: "23" disqusId: "23"

View File

@ -3,9 +3,9 @@ title: Scala Day 4 - A challenge!
date: "2017-04-05" date: "2017-04-05"
template: "post" template: "post"
draft: false draft: false
category: "Development" category: "development"
tags: tags:
- "Development" - "development"
- "slsw" - "slsw"
description: "The last day of my journey with Scala is said to be a challenge" description: "The last day of my journey with Scala is said to be a challenge"
disqusId: "24" disqusId: "24"

View File

@ -2,13 +2,13 @@
title: Adopting conventional commits and standard versions in a git and npm codebase title: Adopting conventional commits and standard versions in a git and npm codebase
date: "2022-11-07" date: "2022-11-07"
template: "post" template: "post"
category: "Development" category: "development"
tags: tags:
- "git" - "git"
- "conventional commits" - "conventional-commits"
- "semantic commits" - "semantic-commits"
- "INFORIT" - "inforit"
- "Standard releases" - "standard-releases"
description: "A dive into conventional commits and their benefit whilst releasing with standard versions." description: "A dive into conventional commits and their benefit whilst releasing with standard versions."
socialImage: "./media/husky-error.png" socialImage: "./media/husky-error.png"

View File

@ -2,14 +2,14 @@
title: Flashing the LSI-9211 to IT mode using an EFI shell title: Flashing the LSI-9211 to IT mode using an EFI shell
date: "2023-04-12" date: "2023-04-12"
template: "post" template: "post"
category: "Homelab" category: "homelab"
tags: tags:
- "lsi" - "lsi"
- "lsi9211" - "lsi9211"
- "raid card" - "raid card"
- "storage" - "storage"
- "SAS2000" - "sas2000"
- "it mode" - "it-mode"
description: "Flashing the LSI-9211 used to be way more difficult, luckily the EFI shell makes this task a lot simpler!" description: "Flashing the LSI-9211 used to be way more difficult, luckily the EFI shell makes this task a lot simpler!"
socialImage: ./media/flash-result.jpg socialImage: ./media/flash-result.jpg
--- ---

View File

@ -9,6 +9,7 @@ tags:
- "programming" - "programming"
- "team" - "team"
- "work" - "work"
- "inforit"
description: "At INFORIT we love to play! Be it DND, board games or in this case... Legos. Read on to find out what we've been up to this past summer vacation" description: "At INFORIT we love to play! Be it DND, board games or in this case... Legos. Read on to find out what we've been up to this past summer vacation"
socialImage: ./media/lego-spike-set.png socialImage: ./media/lego-spike-set.png
--- ---

View File

@ -4,7 +4,7 @@ date: "2023-02-14"
template: "post" template: "post"
category: "blog" category: "blog"
tags: tags:
- "Lego" - "lego"
- "house" - "house"
description: "What started as a simple decoration piece to fill some empty space in my home quickly grew into a new hobby of which the remnants can be found throughout my house" description: "What started as a simple decoration piece to fill some empty space in my home quickly grew into a new hobby of which the remnants can be found throughout my house"
socialImage: ./media/building-the-owl.jpg socialImage: ./media/building-the-owl.jpg