From 362ce5e88b7b47037741baaf9b41b4c47a90f772 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Mon, 13 Mar 2023 13:31:52 -0700 Subject: [PATCH] misc fixes --- src/_data/site.json | 1 - src/_includes/now-topper.liquid | 2 +- .../apple-centric-digital-privacy-tools.md | 4 -- ...ail-with-regex-filters-now-with-chatgpt.md | 2 +- vercel.json | 48 +++++++++++++++++++ 5 files changed, 50 insertions(+), 7 deletions(-) create mode 100644 vercel.json diff --git a/src/_data/site.json b/src/_data/site.json index 393ac38a..4b967481 100644 --- a/src/_data/site.json +++ b/src/_data/site.json @@ -1,7 +1,6 @@ { "name": "Cory Dransfeldt", "url": "https://coryd.dev", - "urlCdn": "https://cdn.coryd.dev", "title": "Cory Dransfeldt", "description": "I'm a software developer in Camarillo, California. I enjoy hanging out with my beautiful family and 4 rescue dogs, technology, automation, music, writing, reading and tv and movies.", "gmail": "mailto:hi@coryd.dev", diff --git a/src/_includes/now-topper.liquid b/src/_includes/now-topper.liquid index 0f8dbfeb..70ef3d46 100644 --- a/src/_includes/now-topper.liquid +++ b/src/_includes/now-topper.liquid @@ -2,5 +2,5 @@

Now

I'm a software developer in Camarillo, California. I enjoy hanging out with my beautiful family and 4 rescue dogs, technology, automation, music, writing, reading and tv and movies.

{{ status.emoji }} {{ status.content }}

-

{% heroicon "solid" "music-note" "Now playing" "width=20 height=20" %} {{nowplaying.title}} by {{nowplaying.artist}}

+

{% heroicon "solid" "music-note" "Now playing" "width=20 height=20" %} {{nowplaying.title}} by {{nowplaying.artist}}

diff --git a/src/posts/2022/apple-centric-digital-privacy-tools.md b/src/posts/2022/apple-centric-digital-privacy-tools.md index a801fe49..e88e0e1b 100644 --- a/src/posts/2022/apple-centric-digital-privacy-tools.md +++ b/src/posts/2022/apple-centric-digital-privacy-tools.md @@ -8,10 +8,6 @@ images: ['/static/images/blog/privacy.jpg'] A rundown of privacy tools that work well with Apple's technology ecosystem.[^1] -## Overview - - - ## Email providers Ubiquitous free email providers profit by mining user data (whether humans are involved or not). Your inbox acts as a key to your digital life and you should avoid using any provider that monetizes its contents. diff --git a/src/posts/2023/fastmail-handling-inbound-email-with-regex-filters-now-with-chatgpt.md b/src/posts/2023/fastmail-handling-inbound-email-with-regex-filters-now-with-chatgpt.md index 5243fed1..1a23083b 100644 --- a/src/posts/2023/fastmail-handling-inbound-email-with-regex-filters-now-with-chatgpt.md +++ b/src/posts/2023/fastmail-handling-inbound-email-with-regex-filters-now-with-chatgpt.md @@ -9,7 +9,7 @@ I've been using Fastmail for years now and have explored a number of different a For now, I've approached filtering my mail by applying regular expressions to reasonably broad categories of incoming mail[^2]. My thinking with this approach is that will scale better over the long term by applying heuristics to common phrases and patterns in incoming mail without the need to apply rules to senders on a per address or domain basis. -A diagram of my Fastmail workflow +A diagram of my Fastmail workflow ## Alias-specific rules diff --git a/vercel.json b/vercel.json new file mode 100644 index 00000000..c1d99bee --- /dev/null +++ b/vercel.json @@ -0,0 +1,48 @@ +{ + "redirects": [ + { + "source": "/blog/fixing-safari-icloud-syncing", + "destination": "/posts/2022/fixing-safari-icloud-syncing/" + }, + { + "source": "/blog/migrating-to-fastmail", + "destination": "/posts/2022/migrating-to-fastmail/" + }, + { + "source": "/blog/client-side-webmentions-in-nextjs", + "destination": "/posts/2023/client-side-webmentions-in-nextjs/" + }, + { + "source": "/blog/apple-centric-digital-privacy-tools", + "destination": "/posts/2022/apple-centric-digital-privacy-tools/" + }, + { + "source": "/blog/automating-rss-syndication-with-nextjs-github", + "destination": "/posts/2023/automating-rss-syndication-with-nextjs-github/" + }, + { + "source": "/blog/apple-music-a-tale-of-woe", + "destination": "/posts/2021/apple-music-a-tale-of-woe/" + }, + { + "source": "/blog/building-a-now-page-using-nextjs-and-social-apis", + "destination": "/posts/2023/building-a-now-page-using-nextjs-and-social-apis/" + }, + { + "source": "/blog/adding-client-side-rendered-webmentions-to-my-blog", + "destination": "/posts/2023/client-side-webmentions-in-nextjs/" + }, + { + "source": "/blog/automating-email-cleanup-in-gmail", + "destination": "/posts/2022/automating-email-cleanup-in-gmail/" + }, + { + "source": "/blog/fastmail-handling-inbound-email-with-regex-filters-now-with-chatgpt", + "destination": "/posts/2023/fastmail-handling-inbound-email-with-regex-filters-now-with-chatgpt/" + }, + { + "source": "/blog/simple-api-fetch-hooks-with-swr", + "destination": "/posts/2022/simple-api-fetch-hooks-with-swr/" + } + ] +}