chore: readwise -> pinboard etc

This commit is contained in:
Cory Dransfeldt 2023-05-14 18:12:00 -07:00
parent ada4e21a71
commit 58da474ee0
No known key found for this signature in database
8 changed files with 30 additions and 30 deletions

2
.env
View file

@ -1,4 +1,4 @@
API_KEY_LASTFM= API_KEY_LASTFM=
API_KEY_TRAKT= API_KEY_TRAKT=
API_KEY_WEBMENTIONS_CORYD_DEV= API_KEY_WEBMENTIONS_CORYD_DEV=
ACCESS_TOKEN_MATTER= API_KEY_PINBOARD=

View file

@ -1,15 +1,15 @@
const EleventyFetch = require('@11ty/eleventy-fetch') const EleventyFetch = require('@11ty/eleventy-fetch')
module.exports = async function () { module.exports = async function () {
const READWISE_KEY = process.env.API_KEY_READWISE const PINBOARD_KEY = process.env.API_KEY_PINBOARD
const headers = { Authorization: `Token ${READWISE_KEY}` } const url = `https://api.pinboard.in/v1/posts/recent?auth_token=${PINBOARD_KEY}&count=100&format=json`
const url = `https://readwise.io/api/v3/list/?category=article`
const res = EleventyFetch(url, { const res = EleventyFetch(url, {
duration: '1h', duration: '1h',
type: 'json', type: 'json',
fetchOptions: { headers },
}).catch() }).catch()
const feed = await res const feed = await res
const filtered = feed.results.filter((item) => Object.keys(item.tags).includes('shortlist')) const filtered = feed.posts.filter((item) => {
return item.shared === 'yes' && item.tags.includes('share')
})
return filtered.splice(0, 5) return filtered.splice(0, 5)
} }

View file

@ -2,7 +2,7 @@ module.exports = async function () {
const { ActivityFeed } = await import('@11ty/eleventy-activity-feed') const { ActivityFeed } = await import('@11ty/eleventy-activity-feed')
const feed = new ActivityFeed() const feed = new ActivityFeed()
feed.addSource('atom', '📝', 'https://coryd.dev/feed.xml') feed.addSource('atom', '📝', 'https://coryd.dev/feed.xml')
// feed.addSource('atom', '🔗', 'https://coryd.dev/links.xml') feed.addSource('atom', '🔗', 'https://coryd.dev/links.xml')
feed.addSource('rss', '🎥', 'https://letterboxd.com/cdme/rss') feed.addSource('rss', '🎥', 'https://letterboxd.com/cdme/rss')
feed.addSource('rss', '📖', 'https://oku.club/rss/collection/NvEmF') feed.addSource('rss', '📖', 'https://oku.club/rss/collection/NvEmF')
const entries = feed.getEntries().catch() const entries = feed.getEntries().catch()

View file

@ -7,7 +7,7 @@
<link href="{{ pkg.homepage }}/links.xml" rel="self" /> <link href="{{ pkg.homepage }}/links.xml" rel="self" />
<link href="{{ pkg.homepage }}/" /> <link href="{{ pkg.homepage }}/" />
<link rel="hub" href="https://pubsubhubbub.superfeedr.com/" /> <link rel="hub" href="https://pubsubhubbub.superfeedr.com/" />
<updated>{% block update %}{{ articles[0].created_at | date: "%Y-%m-%dT%H:%M:%S-08:00" }}{% endblock %}</updated> <updated>{% block update %}{{ articles[0].date | date: "%Y-%m-%dT%H:%M:%S-08:00" }}{% endblock %}</updated>
<id>{{ site.url }}</id> <id>{{ site.url }}</id>
<author> <author>
<name>{{ site.name }}</name> <name>{{ site.name }}</name>

View file

@ -35,7 +35,7 @@ layout: main
Hacking away on random projects like this page, my Hacking away on random projects like this page, my
<a href="/">blog</a>, and whatever else I can find time for.</p> <a href="/">blog</a>, and whatever else I can find time for.</p>
</div> </div>
{% if artists %} {% if artists.size > 0 %}
<h2 class="m-0 text-xl font-black leading-tight tracking-normal dark:text-gray-200 md:text-2xl mt-8 mb-4"> <h2 class="m-0 text-xl font-black leading-tight tracking-normal dark:text-gray-200 md:text-2xl mt-8 mb-4">
Listening: artists Listening: artists
</h2> </h2>
@ -65,7 +65,7 @@ layout: main
</div> </div>
</div> </div>
{% endif %} {% endif %}
{% if albums %} {% if albums.size > 0 %}
<h2 class="m-0 text-xl font-black leading-tight tracking-normal dark:text-gray-200 md:text-2xl mt-8 mb-4"> <h2 class="m-0 text-xl font-black leading-tight tracking-normal dark:text-gray-200 md:text-2xl mt-8 mb-4">
Listening: albums Listening: albums
</h2> </h2>
@ -95,7 +95,7 @@ layout: main
</div> </div>
</div> </div>
{% endif %} {% endif %}
{% if books %} {% if books.size > 0 %}
<h2 class="m-0 text-xl font-black leading-tight tracking-normal dark:text-gray-200 md:text-2xl mt-6 mb-4"> <h2 class="m-0 text-xl font-black leading-tight tracking-normal dark:text-gray-200 md:text-2xl mt-6 mb-4">
Reading: books Reading: books
</h2> </h2>
@ -111,24 +111,23 @@ layout: main
</ul> </ul>
</div> </div>
{% endif %} {% endif %}
{% if articles %} {% if articles.size > 0 %}
<h2 class="m-0 text-xl font-black leading-tight tracking-normal dark:text-gray-200 md:text-2xl mt-6 mb-4"> <h2 class="m-0 text-xl font-black leading-tight tracking-normal dark:text-gray-200 md:text-2xl mt-6 mb-4">
Reading: shortlisted articles Reading: favorite articles
</h2> </h2>
<div> <div>
<ul class="list-inside list-disc pl-5 md:pl-10"> <ul class="list-inside list-disc pl-5 md:pl-10">
{% for article in articles | reverse %} {% for article in articles %}
<li class="mt-1.5 mb-2"> <li class="mt-1.5 mb-2">
{% comment %}<a href="{{article.url}}" title="{{article.title | escape}}">{% endcomment %} <a href="{{article.href}}" title="{{article.description | escape}}">
{% comment %}{{ article.title | escape }}{% endcomment %} {{ article.description }}
{% comment %}</a>{% endcomment %} </a>
{{ article.title | escape }} by {{ article.author }}
</li> </li>
{% endfor %} {% endfor %}
</ul> </ul>
</div> </div>
{% endif %} {% endif %}
{% if movies %} {% if movies.size > 0 %}
<h2 class="m-0 text-xl font-black leading-tight tracking-normal dark:text-gray-200 md:text-2xl mt-6 mb-4"> <h2 class="m-0 text-xl font-black leading-tight tracking-normal dark:text-gray-200 md:text-2xl mt-6 mb-4">
Watching: movies Watching: movies
</h2> </h2>
@ -155,7 +154,7 @@ layout: main
</div> </div>
</div> </div>
{% endif %} {% endif %}
{% if tv %} {% if tv.size > 0 %}
<h2 class="m-0 text-xl font-black leading-tight tracking-normal dark:text-gray-200 md:text-2xl mt-6 mb-4"> <h2 class="m-0 text-xl font-black leading-tight tracking-normal dark:text-gray-200 md:text-2xl mt-6 mb-4">
Watching: tv Watching: tv
</h2> </h2>

View file

@ -5,18 +5,16 @@ permalink: /links.xml
{% layout "./_includes/feed-links.liquid" %} {% layout "./_includes/feed-links.liquid" %}
{% block title %}Links • Cory Dransfeldt{% endblock %} {% block title %}Links • Cory Dransfeldt{% endblock %}
{% block self %}links.xml{% endblock %} {% block self %}links.xml{% endblock %}
{% block update %}{{ articles[0].created_at | date: "%Y-%m-%dT%H:%M:%S-08:00" }}{% endblock %} {% block update %}{{ articles[0].time | date: "%Y-%m-%dT%H:%M:%S-08:00" }}{% endblock %}
{% block entries %} {% block entries %}
{% assign links = articles | reverse %} {% assign links = articles | reverse %}
{% for link in links %} {% for link in links %}
<entry> <entry>
<title>{{ link.title | escape }}</title> <title>{{ link.description | escape }}</title>
<link href="{{link.url}}" /> <link href="{{link.href}}" />
<updated>{{ link.created_at | date: "%m.%d.%Y" }}</updated> <updated>{{ link.time | date: "%m.%d.%Y" }}</updated>
<id>{{ link.url }}</id> <id>{{ link.href }}</id>
<content type="html"> <content type="html"></content>
{{ link.summary | escape }}
</content>
</entry> </entry>
{% endfor %} {% endfor %}
{% endblock %} {% endblock %}

View file

@ -10,7 +10,7 @@ module.exports = class {
const feed = new ActivityFeed() const feed = new ActivityFeed()
feed.addSource('atom', '📝', 'https://coryd.dev/feed.xml') feed.addSource('atom', '📝', 'https://coryd.dev/feed.xml')
// feed.addSource('atom', '🔗', 'https://coryd.dev/links.xml') feed.addSource('atom', '🔗', 'https://coryd.dev/links.xml')
feed.addSource('rss', '🎥', 'https://letterboxd.com/cdme/rss') feed.addSource('rss', '🎥', 'https://letterboxd.com/cdme/rss')
feed.addSource('rss', '📖', 'https://oku.club/rss/collection/NvEmF') feed.addSource('rss', '📖', 'https://oku.club/rss/collection/NvEmF')

View file

@ -23,6 +23,8 @@ Software and services that I use for work and my own enjoyment.
<h3 className="text-xl font-extrabold leading-9 tracking-tight text-gray-900 dark:text-gray-100 sm:text-2xl sm:leading-10 md:text-4xl md:leading-14">macOS + iOS</h3> <h3 className="text-xl font-extrabold leading-9 tracking-tight text-gray-900 dark:text-gray-100 sm:text-2xl sm:leading-10 md:text-4xl md:leading-14">macOS + iOS</h3>
- [Obsidian](https://obsidian.md) - [Obsidian](https://obsidian.md)
- [Readkit](https://readkit.app)
- [Pinstachio](https://pinstachio.com)
- [Plexamp](https://plexamp.com) - [Plexamp](https://plexamp.com)
- [Ivory](https://tapbots.com/ivory) - [Ivory](https://tapbots.com/ivory)
- [Parcel](https://parcelapp.net) - [Parcel](https://parcelapp.net)
@ -57,7 +59,8 @@ Software and services that I use for work and my own enjoyment.
- <a href="https://dnsimple.com/r/3a7cbb9e15df8f" onclick="va('event',{name:'DNSimple referral',data:{location:'Uses'}})">DNSimple</a> - <a href="https://dnsimple.com/r/3a7cbb9e15df8f" onclick="va('event',{name:'DNSimple referral',data:{location:'Uses'}})">DNSimple</a>
- <a href="https://bunny.net?ref=revw3mehej" onclick="va('event',{name:'Bunny.net referral',data:{location:'Uses'}})">Bunny.net</a> - <a href="https://bunny.net?ref=revw3mehej" onclick="va('event',{name:'Bunny.net referral',data:{location:'Uses'}})">Bunny.net</a>
- [1Password](https://1password.com) - [1Password](https://1password.com)
- [Reader](https://readwise.io/read) - [Feedbin](https://feedbin.com)
- [Pinboard](https://pinboard.in)
- [Trakt](https://trakt.tv) - [Trakt](https://trakt.tv)
- [Letterboxd](https://letterboxd.com) - [Letterboxd](https://letterboxd.com)
- [Oku](https://oku.club) - [Oku](https://oku.club)