diff --git a/.eleventy.js b/.eleventy.js index 07888987..8b66b736 100644 --- a/.eleventy.js +++ b/.eleventy.js @@ -160,9 +160,8 @@ module.exports = function (eleventyConfig) { } if (item.data.links) { item.data.links.forEach((link) => { - const tagString = [ - ...new Set(link.tags.split(',').map((tag) => tagAliases[tag.toLowerCase()])), - ] + const tagString = link['tags'] + .map((tag) => tagAliases[tag.toLowerCase()]) .join(' ') .trim() if (tagString) tags[link.url] = tagString diff --git a/.env b/.env index e50b0ed4..3541d8d0 100644 --- a/.env +++ b/.env @@ -1,6 +1,7 @@ API_KEY_TRAKT= API_KEY_MOVIEDB= API_KEY_WEBMENTIONS_CORYD_DEV= +API_TOKEN_PINBOARD= API_APPLE_MUSIC_DEVELOPER_TOKEN= API_APPLE_MUSIC_USER_TOKEN= APPLE_RENEW_TOKEN_URL= diff --git a/src/_data/json/links.json b/src/_data/json/links.json deleted file mode 100644 index f189d04a..00000000 --- a/src/_data/json/links.json +++ /dev/null @@ -1,95 +0,0 @@ -{ - "links": [ - { - "tags": "development", - "title": "What Happened to Separation of Concerns in Frontend Development", - "id": "https://meiert.com/en/blog/what-happened-to-separation-of-concerns/", - "url": "https://meiert.com/en/blog/what-happened-to-separation-of-concerns/", - "date": "Tue, 31 Oct 2023 10:25:06 -0700" - }, - { - "tags": "development", - "title": "It's 2023, here is why your web design sucks.", - "id": "https://heather-buchel.com/blog/2023/10/why-your-web-design-sucks/", - "url": "https://heather-buchel.com/blog/2023/10/why-your-web-design-sucks/", - "date": "Tue, 31 Oct 2023 10:27:36 -0700" - }, - { - "tags": "music", - "title": "You should look at this chart about music genres", - "id": "https://pudding.cool/2023/10/genre/", - "url": "https://pudding.cool/2023/10/genre/", - "date": "Tue, 31 Oct 2023 11:02:55 -0700" - }, - { - "tags": "development", - "title": "The Fight For The Main Thread", - "id": "https://www.smashingmagazine.com/2023/10/speedcurve-fight-main-thread/", - "url": "https://www.smashingmagazine.com/2023/10/speedcurve-fight-main-thread/", - "date": "Tue, 31 Oct 2023 11:04:41 -0700" - }, - { - "tags": "development", - "title": "Why I Won't Use Next.js", - "id": "https://www.epicweb.dev/why-i-wont-use-nextjs", - "url": "https://www.epicweb.dev/why-i-wont-use-nextjs", - "date": "Tue, 31 Oct 2023 11:18:47 -0700" - }, - { - "tags": "development", - "title": "The ideal viewport doesn’t exist", - "id": "https://viewports.fyi/", - "url": "https://viewports.fyi/", - "date": "Tue, 31 Oct 2023 12:40:05 -0700" - }, - { - "tags": "development", - "title": "Software disenchantment", - "id": "https://tonsky.me/blog/disenchantment/", - "url": "https://tonsky.me/blog/disenchantment/", - "date": "Tue, 31 Oct 2023 18:53:38 -0700" - }, - { - "tags": "development", - "title": "Second-guessing the modern web", - "id": "https://macwright.com/2020/05/10/spa-fatigue.html", - "url": "https://macwright.com/2020/05/10/spa-fatigue.html", - "date": "Thu, 02 Nov 2023 08:55:58 -0700" - }, - { - "tags": "development", - "title": "Presentational shadow DOM", - "id": "https://www.mayank.co/blog/presentational-shadow-dom/", - "url": "https://www.mayank.co/blog/presentational-shadow-dom/", - "date": "Fri, 03 Nov 2023 12:40:07 -0700" - }, - { - "tags": "development", - "title": "10 hard-to-swallow truths they won't tell you about software engineer job", - "id": "https://www.mensurdurakovic.com/hard-to-swallow-truths-they-wont-tell-you-about-software-engineer-job/", - "url": "https://www.mensurdurakovic.com/hard-to-swallow-truths-they-wont-tell-you-about-software-engineer-job/", - "date": "Wed, 08 Nov 2023 11:51:21 -0800" - }, - { - "tags": "development", - "title": "Web developers: remarkably untalented and careless?", - "id": "https://www.baldurbjarnason.com/2023/web-dev-untalented/", - "url": "https://www.baldurbjarnason.com/2023/web-dev-untalented/", - "date": "Wed, 08 Nov 2023 11:52:01 -0800" - }, - { - "tags": "development", - "title": "The Longevity of Web Components Over Frameworks", - "id": "https://thathtml.blog/2023/11/longevity-of-web-components/", - "url": "https://thathtml.blog/2023/11/longevity-of-web-components/", - "date": "Wed, 08 Nov 2023 11:52:12 -0800" - }, - { - "tags": "tech, rss", - "title": "RSS?", - "id": "https://darthmall.net/weblog/2023/rss/", - "url": "https://darthmall.net/weblog/2023/rss/", - "date": "Thu, 09 Nov 2023 08:47:50 -0800" - } - ] -} diff --git a/src/_data/links.js b/src/_data/links.js index 3a83eaf5..4027e6aa 100644 --- a/src/_data/links.js +++ b/src/_data/links.js @@ -1,5 +1,20 @@ -const links = require('../_data/json/links.json') +const EleventyFetch = require('@11ty/eleventy-fetch') module.exports = async function () { - return links.links.reverse() + 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&count=5` + const res = EleventyFetch(url, { + duration: '1h', + type: 'json', + }).catch() + const links = await res + return links['posts'].map((link) => { + return { + title: link['description'], + url: link['href'], + tags: [...new Set(link['tags'].split(' '))], + date: link['time'], + description: link['extended'], + } + }) } diff --git a/src/_data/nav.js b/src/_data/nav.js index c2fd5aef..1702bab9 100644 --- a/src/_data/nav.js +++ b/src/_data/nav.js @@ -21,6 +21,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: [ diff --git a/src/uses.md b/src/uses.md index af0c533f..cad1f47f 100644 --- a/src/uses.md +++ b/src/uses.md @@ -26,7 +26,7 @@ meta: Software and services that I use for work and my own enjoyment. -{% image 'https://coryd.dev/assets/img/pages/uses.jpg', 'My desk', 'border border-blue-600 dark:border-blue-400 rounded-lg overflow-hidden [&>*]:w-full', 'eager' %} +{% image '', 'My desk', 'border border-blue-600 dark:border-blue-400 rounded-lg overflow-hidden [&>*]:w-full', 'eager' %}

Computer setup

@@ -81,6 +81,7 @@ Software and services that I use for work and my own enjoyment. - [IVPN](https://www.ivpn.net): my VPN of choice for browsing outside of my home network. Privacy-focused and trustworthy. - [Kagi](https://kagi.com): search that's actually helpful and ad-free. It's lenses feature and the ability to up/downvote and block results from different sites are indispensable. - [Feedbin](https://feedbin.com): the best available modern RSS service. I use its actions to filter noise out of my feed as well as to star and surface my must-read feeds and newsletters. +- [Pinboard](https://pinboard.in): an old, reliable and slow to change web service that does exactly what it sets out to — provide reliable bookmarking. - [forwardemail.net](https://forwardemail.net): a simple and reliable service for forwarding and routing emails from a few of the domains I own. - [Trakt](https://trakt.tv): my preferred TV and movie tracking service — it has a strong community (and isn't owned by a private equity firm). - [The Storygraph](https://thestorygraph.com): an excellent, focused and community driven book tracking app. All it needs is RSS/Atom feeds and/or an API.