+
diff --git a/site/pages/unoffice-hours.md b/site/pages/unoffice-hours.md
index 27ea8bf..c568ec0 100644
--- a/site/pages/unoffice-hours.md
+++ b/site/pages/unoffice-hours.md
@@ -3,6 +3,7 @@ title: Unoffice Hours
layout: "page.njk"
omitDate: true
omitTOS: true
+keywords: Unoffice hours
---
Working remotely has a lot of benefits, but we miss out on the serendipitous connections and socialization that happened just from being in the same room. Unoffice hours is part of an attempt to make new connections, but without applying the giant invisible filter of my own preferences.
diff --git a/site/posts/2020-07-02-authority-consents-blind-spot.md b/site/posts/2020-07-02-authority-consents-blind-spot.md
index 6ef6818..f3dfb3c 100644
--- a/site/posts/2020-07-02-authority-consents-blind-spot.md
+++ b/site/posts/2020-07-02-authority-consents-blind-spot.md
@@ -2,8 +2,7 @@
title: Authority - Consent's Blind Spot
description: Authority is the idea that certain people are justified in violating consent. This belief allows people to force others to do what they want with a clear conscience.
tags:
- - opinions
- - worldview
+ - ethos
---
> 2025 disclaimer: I haven't thought through all these ideas in a while, but I probably would change some of this or soften/rephrase it.
diff --git a/site/posts/2021-10-16-embracing-mysticism.md b/site/posts/2021-10-16-embracing-mysticism.md
index 79b42f2..7261b0a 100644
--- a/site/posts/2021-10-16-embracing-mysticism.md
+++ b/site/posts/2021-10-16-embracing-mysticism.md
@@ -2,9 +2,8 @@
title: Embracing Mysticism
description: Society is moving from a materialistic era into a mystical one. I describe my attempt to gain mystical proficiency.
tags:
- - opinions
- faith
- - worldview
+ - ethos
---
Logical arguments no longer work. This has been especially visible in the pandemic response in 2020. If you dug even a little below the surface of any mainstream narrative in the past two years, you likely found points of disagreement. But showing people scientific papers, charts, statistical analysis, or other types of evidence accomplishes nothing, or worse it invites accusations of being part of the Other Team, one of those backwards, wrong, stupid people.
diff --git a/site/posts/2023-07-14-finally-a-coherent-worldview.md b/site/posts/2023-07-14-finally-a-coherent-worldview.md
index 71dc477..e2989d5 100644
--- a/site/posts/2023-07-14-finally-a-coherent-worldview.md
+++ b/site/posts/2023-07-14-finally-a-coherent-worldview.md
@@ -3,7 +3,7 @@ title: Finally, a Coherent Worldview
description: Why did I think I could figure everything out on my own?
tags:
- faith
- - worldview
+ - ethos
---
Around the time of my previous post, I had just been received into the Orthodox church. Since then I have found it to be everything I was looking for, and a great deal more. There is such a wealth of wisdom, going back thousands of years. And it was all there, un-seen, un-read, as far as I was concerned not existing at all! It seems impossible to me that I was so unaware of these treasures by chance.
diff --git a/site/posts/2024-06-05-redesign.md b/site/posts/2024-06-05-redesign.md
index e65dfcb..75cbb11 100644
--- a/site/posts/2024-06-05-redesign.md
+++ b/site/posts/2024-06-05-redesign.md
@@ -2,7 +2,7 @@
title: Site design updated
description: New look, simpler tech.
tags:
- - this site
+ - technical
---
New design! The tools I used before have a lot of unmaintained or outdated dependencies and I wanted something a little simpler. The new site uses [pnpm](https://pnpm.io/), [11ty](https://www.11ty.dev/), and [Nunjucks](https://mozilla.github.io/nunjucks/). Content is still in [markdown](https://daringfireball.net/projects/markdown/).
diff --git a/site/posts/2025-04-24-thinking-machines.md b/site/posts/2025-04-24-thinking-machines.md
index f29121f..2419e02 100644
--- a/site/posts/2025-04-24-thinking-machines.md
+++ b/site/posts/2025-04-24-thinking-machines.md
@@ -4,8 +4,7 @@ slug: thinking-machines
description: "The computers will start thinking, and people will stop."
cover: "/2025-04-24--computers-will-start-thinking.jpg"
tags:
- - opinions
- - trends
+ - zeitgeist
- ai
---
diff --git a/site/posts/2025-05-15-tools-of-the-trade.md b/site/posts/2025-05-15-tools-of-the-trade.md
index d4773f9..40ff74c 100644
--- a/site/posts/2025-05-15-tools-of-the-trade.md
+++ b/site/posts/2025-05-15-tools-of-the-trade.md
@@ -5,7 +5,6 @@ description: Some dev tools I recommend.
tags:
- technical
- software
- - opinions
---
Everyone has different tools that they find especially effective. Here are some I have found with a few words about why I like them.
diff --git a/site/posts/posts.11tydata.js b/site/posts/posts.11tydata.js
index 1dabe26..4f5c77d 100644
--- a/site/posts/posts.11tydata.js
+++ b/site/posts/posts.11tydata.js
@@ -6,6 +6,7 @@ export default {
eleventyComputed: {
date: "{{ page.date }}",
slug: "{{ page.slug }}",
+ keywords: (data) => data.tags.join(", "),
permalink: (data) => {
if (process.env.ELEVENTY_RUN_MODE !== "build") return data.permalink;
else return data.draft ? false : data.permalink;