chore: format and clean up tags

This commit is contained in:
Cory Dransfeldt 2023-04-14 20:27:45 -07:00
parent cb0573ae2d
commit 5d1e198140
No known key found for this signature in database
64 changed files with 76 additions and 76 deletions

View file

@ -2,7 +2,7 @@
title: '2022 reading list'
date: '2022-04-03'
draft: false
tags: ['reading']
tags: ['books']
---
I'm still plugging away with my reading habit and my streak is now at 772 days.<!-- excerpt --> Here's where I'm at for 2022 so far:

View file

@ -2,7 +2,7 @@
title: 'Apple-centric digital privacy tools'
date: '2022-05-31'
draft: false
tags: ['apple', 'privacy', 'iOS', 'macOS', 'tech']
tags: ['Apple', 'privacy', 'iOS', 'macOS', 'tech']
images: ['/static/images/blog/privacy.jpg']
---

View file

@ -2,7 +2,7 @@
title: 'Apple Messages: a tale of woe OR how to fix sync, a crash loop and accept data loss'
date: '2022-04-06'
draft: false
tags: ['apple', 'services']
tags: ['Apple', 'services']
---
Apple's Messages app recently started crashing in a loop on my Mac Mini — it would happen every time the app was opened after a 5-10 second delay. Deleting conversations from other devices and letting that change sync over didn't appear to help.<!-- excerpt -->
@ -11,7 +11,7 @@ If you're attached to your message history and have a device where Messages.app
Navigate to `~/Library` and delete:
```
```plaintext
Messages
Caches/com.apple.Messages
Caches/com.apple.imfoundation.IMRemoteURLConnectionAgent

View file

@ -2,7 +2,7 @@
title: 'Automating email cleanup in Gmail'
date: '2022-03-28'
draft: false
tags: ['gmail', 'automation']
tags: ['Gmail', 'automation']
---
Lately I've been leaning into automating the cleanup of email I receive in Gmail using a combination of Inbox-era categories that the application still exposes via search and [Google Apps Script](https://www.google.com/script/start/).<!-- excerpt -->
@ -11,7 +11,7 @@ I wasn't using Gmail when Inbox was available (I'm sure I missed out) and know n
I've created filter rules leveraging all of these legacy filters to automatically categorize messages the same way the current tabs do. These rules look like the following:
```
```plaintext
# emails gmail categorizes as travel related
Matches: category:travel
Do this: Apply label "Traveling"
@ -31,14 +31,14 @@ Do this: Apply label "Reservations"
Expanding on this, I also have a few forwarding addresses in place to conditionally handle other types of messages. First up, I use some compiled search terms to redirect emails indicating something I've ordered has shipped off to [Deliveries.app](https://junecloud.com). That rule looks like this:
```
```plaintext
Matches: subject:({"has shipped" "was shipped" "on its way" "tracking number" "shipment from order" "order shipped confirmation" "Shipped:"})
Do this: Skip Inbox, Mark as read, Apply label "Deliveries", Forward to <UNIQUE-ID>@junecloud.com
```
For newsletters, I sign up using Gmail's plus addressing scheme to automatically label them as `newsletters`[^2]:
```
```plaintext
Matches: to:(cory.dransfeldt+newsletters@gmail.com)
Do this: Skip Inbox, Mark as read, Apply label "Newsletters", Forward to <UNIQUE-ID>@newsletters.feedbin.com
```
@ -47,7 +47,7 @@ For both newsletters and deliveries this leaves me with a fair amount of archive
I take a similar approach to actionable/alert-style messages:
```
```plaintext
Matches: <SUPER IMPORTANT CONDITION HERE>
Do this: Apply label "Alerts", Forward to <UNIQUE-ID>@todoist.net, Mark it as important, Categorize as Primary
```
@ -78,13 +78,13 @@ The rules for deliveries and alerts operate in very much the same way, but with
**Deliveries (omitting Gmail-identified receipts and the inbox)**
```
```plaintext
'label:deliveries -label:inbox -label:receipts'
```
**Alerts (omitting the inbox)**
```
```plaintext
'label:alerts -label:inbox'
```

View file

@ -2,7 +2,7 @@
title: 'Fixing Safari iCloud syncing'
date: '2022-05-28'
draft: false
tags: [apple, iOS, macOS]
tags: [Apple, iOS, macOS]
---
I've been having an intermittent issue with Safari failing to sync any data via iCloud that you would normally expect — history, tabs, bookmarks and the landing page were all behaving independently despite iCloud syncing being enabled.<!-- excerpt -->

View file

@ -2,7 +2,7 @@
title: 'Migrating to Fastmail'
date: '2022-04-13'
draft: false
tags: ['email', 'fastmail', 'gmail']
tags: ['Email', 'Fastmail', 'Gmail']
---
So you want to migrate over to Fastmail for your email — here's how you can go about doing so as seamlessly as possible.<!-- excerpt -->

View file

@ -2,7 +2,7 @@
title: 'Simple data fetching with custom React hooks and SWR'
date: '2022-05-23'
draft: false
tags: [swr, api, fetch, react, next.js]
tags: [SWR, API, fetch, React, Next.js]
---
My site was scaffolded out using [Timothy Lin](https://github.com/timlrx)'s [tailwind-nextjs-starter-blog](https://github.com/timlrx/tailwind-nextjs-starter-blog) project (which I highly recommend checking out). As part of the build out I wanted to display the books I'm currently reading and the song I most recently listened to, data available from [oku](https://oku.club) and [Last.fm](https://last.fm), respectively.<!-- excerpt -->[^1] I've added the display for this data to the top of the home page using a pair of light-weight React components.