(fix) footnotes in excerpts
This commit is contained in:
parent
c5dfb420d2
commit
3eecb6e406
2 changed files with 2 additions and 2 deletions
|
@ -5,7 +5,7 @@ draft: false
|
||||||
tags: [swr, api, fetch, react, nextjs]
|
tags: [swr, api, fetch, react, nextjs]
|
||||||
---
|
---
|
||||||
|
|
||||||
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[^1]. I've added the display for this data to the top of the home page using a pair of light-weight React components.<!-- excerpt -->
|
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.
|
||||||
|
|
||||||
To fetch the data for these components I elected to leverage [vercel/swr](https://github.com/vercel/swr), described as:
|
To fetch the data for these components I elected to leverage [vercel/swr](https://github.com/vercel/swr), described as:
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@ draft: false
|
||||||
tags: ['email', 'fastmail', 'regular expressions', 'workflows', 'chatgpt']
|
tags: ['email', 'fastmail', 'regular expressions', 'workflows', 'chatgpt']
|
||||||
---
|
---
|
||||||
|
|
||||||
I've been using Fastmail for years now and have explored a number of different approaches to handling mail. I've approached it by creating rules targeting lists of top level domains, I've gone with no rules at all and a heavy-handed approach to unsubscribing from messages (operating under the idea that _everything_ warrants being seen and triaged) and I've even used HEY [^1].<!-- excerpt -->
|
I've been using Fastmail for years now and have explored a number of different approaches to handling mail. I've approached it by creating rules targeting lists of top level domains, I've gone with no rules at all and a heavy-handed approach to unsubscribing from messages (operating under the idea that _everything_ warrants being seen and triaged) and I've even used HEY.<!-- excerpt -->[^1]
|
||||||
|
|
||||||
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.
|
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.
|
||||||
|
|
||||||
|
|
Reference in a new issue