chore: misc updates
This commit is contained in:
parent
1746f8803a
commit
86b4a96a9e
16 changed files with 32 additions and 37 deletions
2
.env
2
.env
|
@ -3,6 +3,6 @@ API_KEY_PLAUSIBLE=
|
|||
API_KEY_TRAKT=
|
||||
API_KEY_MOVIEDB=
|
||||
API_KEY_WEBMENTIONS_CORYD_DEV=
|
||||
API_TOKEN_PINBOARD=
|
||||
API_TOKEN_READWISE=
|
||||
SECRET_FEED_ALBUM_RELEASES=
|
||||
COOKIE_STORYGRAPH=
|
2
.github/workflows/blog-posts-to-readme.yaml
vendored
2
.github/workflows/blog-posts-to-readme.yaml
vendored
|
@ -17,7 +17,7 @@ jobs:
|
|||
- name: Commit file changes
|
||||
run: |
|
||||
git config --global user.name 'cdransf'
|
||||
git config --global user.email 'coryd@fastmail.com'
|
||||
git config --global user.email 'cory.dransfeldt@gmail.com'
|
||||
git add .
|
||||
git diff --quiet --cached || git commit -m "Update README"
|
||||
- name: Push changes
|
||||
|
|
2
.github/workflows/fetch-artist-charts.yaml
vendored
2
.github/workflows/fetch-artist-charts.yaml
vendored
|
@ -27,4 +27,4 @@ jobs:
|
|||
with:
|
||||
commit_message: Update artist charts for the week.
|
||||
commit_user_name: cdransf
|
||||
commit_user_email: coryd@fastmail.com
|
||||
commit_user_email: cory.dransfeldt@gmail.com
|
||||
|
|
|
@ -41,7 +41,7 @@
|
|||
# redirects
|
||||
/articles/ / 301!
|
||||
/sitemap.txt /sitemap.xml 301!
|
||||
/calendar https://savvycal.com/ced/quick-chat 301!
|
||||
/calendar https://calendar.app.google/sQUW2GgcUhWuAWRU6 301!
|
||||
|
||||
# netlify app domain
|
||||
https://cdme.netlify.app https://coryd.dev 301!
|
||||
|
|
|
@ -1,20 +1,26 @@
|
|||
const EleventyFetch = require('@11ty/eleventy-fetch')
|
||||
|
||||
module.exports = async function () {
|
||||
const API_TOKEN_PINBOARD = process.env.API_TOKEN_PINBOARD
|
||||
const url = `https://api.pinboard.in/v1/posts/recent?auth_token=${API_TOKEN_PINBOARD}&format=json&tag=share`
|
||||
const API_TOKEN_READWISE = process.env.API_TOKEN_READWISE
|
||||
const url = 'https://readwise.io/api/v3/list?location=archive'
|
||||
const res = EleventyFetch(url, {
|
||||
duration: '1h',
|
||||
type: 'json',
|
||||
fetchOptions: {
|
||||
headers: {
|
||||
Authorization: `Token ${API_TOKEN_READWISE}`,
|
||||
},
|
||||
},
|
||||
}).catch()
|
||||
const links = await res
|
||||
return links['posts'].map((link) => {
|
||||
const data = await res
|
||||
const links = data['results'].map((link) => {
|
||||
return {
|
||||
title: link['description'],
|
||||
url: link['href'],
|
||||
tags: [...new Set(link['tags'].split(' '))],
|
||||
date: link['time'],
|
||||
description: `${link['extended']}<br/><br/>`,
|
||||
title: link['title'],
|
||||
url: link['source_url'],
|
||||
tags: [...new Set(Object.keys(link['tags']))],
|
||||
date: link['created_at'],
|
||||
description: `${link['summary']}<br/><br/>`,
|
||||
}
|
||||
})
|
||||
return links.filter((link) => link.tags.includes('share'))
|
||||
}
|
||||
|
|
|
@ -10,8 +10,7 @@ module.exports = async function () {
|
|||
{ name: 'Webrings', icon: 'heart-handshake' },
|
||||
],
|
||||
social: [
|
||||
{ name: 'Email', url: 'mailto:coryd@fastmail.com', icon: 'at' },
|
||||
{ name: 'Calendar', url: 'https://savvycal.com/ced/', icon: 'calendar-plus' },
|
||||
{ name: 'Email', url: 'mailto:cory.dransfeldt@gmail.com', icon: 'brand-gmail' },
|
||||
{ name: 'GitHub', url: 'https://github.com/cdransf', icon: 'brand-github' },
|
||||
{ name: 'Mastodon', url: 'https://social.lol/@cory', icon: 'brand-mastodon' },
|
||||
{
|
||||
|
@ -21,17 +20,7 @@ module.exports = async function () {
|
|||
},
|
||||
{ name: 'Trakt', url: 'https://trakt.tv/users/cdransf', icon: 'device-tv' },
|
||||
{ name: 'The StoryGraph', url: 'https://app.thestorygraph.com/profile/coryd', icon: 'books' },
|
||||
{ name: 'Pinboard', url: 'http://pinboard.in/u:cdme', icon: 'pin' },
|
||||
{ name: 'Buy Me a Coffee', url: 'https://www.buymeacoffee.com/cory', icon: 'cup' },
|
||||
],
|
||||
resume: [
|
||||
{ name: 'GitHub', url: 'https://github.com/cdransf', icon: 'brand-github' },
|
||||
{ name: 'LinkedIn', url: 'https://www.linkedin.com/in/cdransf/', icon: 'brand-linkedin' },
|
||||
{
|
||||
name: 'Calendar',
|
||||
url: 'https://coryd.dev/calendar',
|
||||
icon: 'calendar-plus',
|
||||
},
|
||||
],
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
module.exports = async function () {
|
||||
return {
|
||||
name: 'Cory Dransfeldt',
|
||||
email: 'coryd@fastmail.com',
|
||||
email: 'cory.dransfeldt@gmail.com',
|
||||
url: 'https://coryd.dev',
|
||||
logo: 'https://coryd.dev/assets/img/logo.webp',
|
||||
title: 'Cory Dransfeldt',
|
||||
|
|
|
@ -3,7 +3,7 @@ permalink: '.well-known/security.txt'
|
|||
eleventyExcludeFromCollections: true
|
||||
dynamicPermalink: false
|
||||
---
|
||||
Contact: mailto:coryd@fastmail.com
|
||||
Contact: mailto:cory.dransfeldt@gmail.com
|
||||
Expires: 2099-01-01T08:00:00.000Z
|
||||
Preferred-Languages: en
|
||||
Canonical: https://coryd.dev/.well-known/security.txt
|
|
@ -67,6 +67,6 @@ The final two post types / work flows I use are identical to the first aside fro
|
|||
textastic://x-callback-url/new?name=note.gallery.txt&text=Title:%20[[title]]%0D----%0DWhen:%20[[date|%m.%d.%Y]]%0D----%0DText:%20[[body]]
|
||||
```
|
||||
|
||||
Using these actions to publish content from Drafts to your Kirby-based site should be as simple as changing the file name sent to Textastic in each workflow. If you run in to any problems or have any suggestions for improving these workflows feel free to [let me know](mailto:<coryd@fastmail.com>.
|
||||
Using these actions to publish content from Drafts to your Kirby-based site should be as simple as changing the file name sent to Textastic in each workflow. If you run in to any problems or have any suggestions for improving these workflows feel free to [let me know](mailto:<cory.dransfeldt@gmail.com>.
|
||||
|
||||
Many thanks to [Alex Duner](http://alexduner.com/) and [Nate Boateng](http://rantsandrambles.net/) for the Statamic Drafts workflow they provided to get me pointed in the right direction on this.
|
||||
|
|
|
@ -29,4 +29,4 @@ template: link
|
|||
link: https://example.com
|
||||
```
|
||||
|
||||
Is there an easier or more effective way to do this? [Let me know.](mailto:coryd@fastmail.com)
|
||||
Is there an easier or more effective way to do this? [Let me know.](mailto:cory.dransfeldt@gmail.com)
|
||||
|
|
|
@ -63,9 +63,9 @@ I did quite a bit of research before switching to Fastmail and the following pos
|
|||
- [From Gmail to FastMail: Moving Away from Google – ReadWrite](http://readwrite.com/2012/03/19/from-gmail-to-fastmail-moving#awesm=~othfJ88hm9Tp8X 'From Gmail to FastMail: Moving Away from Google – ReadWrite')
|
||||
- [FastMail is My Favourite Email Provider](http://web.appstorm.net/reviews/email-apps/fastmail-is-my-favourite-email-provider/ 'FastMail is My Favourite Email Provider')
|
||||
|
||||
Have you moved to Fastmail? Are you thinking of doing so? [Let me know your thoughts](mailto:coryd@fastmail.com) on it or the move to it. You can sign up for Fastmail [here](https://www.fastmail.com).
|
||||
Have you moved to Fastmail? Are you thinking of doing so? [Let me know your thoughts](mailto:cory.dransfeldt@gmail.com) on it or the move to it. You can sign up for Fastmail [here](https://www.fastmail.com).
|
||||
|
||||
[^1]: My interest in this idea, specifically was sparked by this blog post by Marco Arment: [Let us pay for this service, so it won’t go down](http://www.marco.org/2011/04/05/let-us-pay-for-this-service-so-it-wont-go-down 'Let us pay for this service so it won’t go down – Marco.org')
|
||||
[^2]: I had previously consolidated all of my old email accounts in to my Google Apps account via forwarding and by checking them via IMAP through Gmail.
|
||||
[^3]: I currently use the first-party mail clients on both iOS and OSX so not having contacts and calendars synced with Fastmail is really only an issue when in the Fastmail web interface (which isn't all that frequently). For now, I've been manually uploading vCard files to Fastmail which is clunky, but not all that annoying. I _do_ miss being able to create events by clicking on parsed text (which Google Apps supported), but not all that much.
|
||||
[^4]: If you do get tripped up switching from another provider, Fastmail does have extensive documentation. [You can also feel free to get in touch](mailto:coryd@fastmail.com).
|
||||
[^4]: If you do get tripped up switching from another provider, Fastmail does have extensive documentation. [You can also feel free to get in touch](mailto:cory.dransfeldt@gmail.com).
|
||||
|
|
|
@ -39,4 +39,4 @@ Finally, restart apache:
|
|||
|
||||
Your site should now be served using http2. You can verify this using the KeyCDN tool located [here](https://tools.keycdn.com/http2-test).
|
||||
|
||||
_Did I miss anything? [Let me know.](mailto:coryd@fastmail.com)_
|
||||
_Did I miss anything? [Let me know.](mailto:cory.dransfeldt@gmail.com)_
|
||||
|
|
|
@ -81,7 +81,7 @@ All of these particular folders live as children of my Archive folder and are au
|
|||
|
||||
If you're a [1Password](https://1password.com) user you can link your accounts and generate per-service, [masked emails for improved security](https://www.fastmail.help/hc/en-us/articles/4406536368911-Masked-Email). The idea here being that if your primary email is known, it can be used to trigger password resets at different services or leveraged in brute-force attacks, but this is mitigated by using a masked/pseudo-random address for each service.
|
||||
|
||||
Did I miss anything? [Email me](mailto:coryd@fastmail.com)[^7].
|
||||
Did I miss anything? [Email me](mailto:cory.dransfeldt@gmail.com)[^7].
|
||||
|
||||
[^1]: As an aside, [mailbox.org](https://mailbox.org) is also quite nice and offers some nice privacy features but isn't _quite_ as polished as Fastmail.
|
||||
[^2]: Which amounts to seamless syncing with iOS at the system level or via an app like [DAVx](https://play.google.com/store/apps/details?id=at.bitfire.davdroid&hl=en) on Android.
|
||||
|
|
|
@ -361,7 +361,7 @@ So far this works seamlessly — if I want to update or add static content I can
|
|||
|
||||
Questions? Comments? Feel free to get in touch:
|
||||
|
||||
- [Email](mailto:coryd@fastmail.com)
|
||||
- [Email](mailto:cory.dransfeldt@gmail.com)
|
||||
- [Mastodon](https://social.lol/@cory)
|
||||
|
||||
---
|
||||
|
|
|
@ -10,7 +10,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.
|
||||
|
||||
{% image 'https://cdn.coryd.dev/blog/fastmail-workflow.jpg', 'A diagram of my Fastmail workflow', 'border border-blue-600 dark:border-blue-400 rounded-lg overflow-hidden [&>*]:w-full' %}
|
||||
{% image '<https://cdn.coryd.dev/blog/fastmail-workflow.jpg>', 'A diagram of my Fastmail workflow', 'border border-blue-600 dark:border-blue-400 rounded-lg overflow-hidden [&>*]:w-full' %}
|
||||
|
||||
## Alias-specific rules
|
||||
|
||||
|
@ -297,7 +297,7 @@ These I've left as a simple list wherein `any` included top level domain is file
|
|||
|
||||
That covers _most_ of what I use to manage my mail (outside of anything particularly personal). I fully expect the regular expressions I'm using could stand to be refined and I plan on continuing to do just that. But, with that said, things have worked better than I expected so far and false positives/mis-categorizations have been infrequent.
|
||||
|
||||
If you have any questions or suggestions I'm all ears. Feel free to [email me](mailto:coryd@fastmail.com) or ping me on [Mastodon](https://social.lol/@cory).
|
||||
If you have any questions or suggestions I'm all ears. Feel free to [email me](mailto:cory.dransfeldt@gmail.com) or ping me on [Mastodon](https://social.lol/@cory).
|
||||
|
||||
[^1]: Before, well, _all that_.
|
||||
[^2]: Fastmail has some helpful tips on regular expression rules [here](https://www.fastmail.help/hc/en-us/articles/360060591193-Rules-using-regular-expressions)
|
||||
|
|
|
@ -45,7 +45,7 @@ jobs:
|
|||
with:
|
||||
commit_message: Update artist charts for the week.
|
||||
commit_user_name: cdransf
|
||||
commit_user_email: coryd@fastmail.com
|
||||
commit_user_email: cory.dransfeldt@gmail.com
|
||||
commit_author: Cory Dransfeldt
|
||||
```
|
||||
|
||||
|
|
Reference in a new issue