chore: readwise -> pinboard etc
This commit is contained in:
parent
ada4e21a71
commit
58da474ee0
8 changed files with 30 additions and 30 deletions
2
.env
2
.env
|
@ -1,4 +1,4 @@
|
|||
API_KEY_LASTFM=
|
||||
API_KEY_TRAKT=
|
||||
API_KEY_WEBMENTIONS_CORYD_DEV=
|
||||
ACCESS_TOKEN_MATTER=
|
||||
API_KEY_PINBOARD=
|
||||
|
|
|
@ -1,15 +1,15 @@
|
|||
const EleventyFetch = require('@11ty/eleventy-fetch')
|
||||
|
||||
module.exports = async function () {
|
||||
const READWISE_KEY = process.env.API_KEY_READWISE
|
||||
const headers = { Authorization: `Token ${READWISE_KEY}` }
|
||||
const url = `https://readwise.io/api/v3/list/?category=article`
|
||||
const PINBOARD_KEY = process.env.API_KEY_PINBOARD
|
||||
const url = `https://api.pinboard.in/v1/posts/recent?auth_token=${PINBOARD_KEY}&count=100&format=json`
|
||||
const res = EleventyFetch(url, {
|
||||
duration: '1h',
|
||||
type: 'json',
|
||||
fetchOptions: { headers },
|
||||
}).catch()
|
||||
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)
|
||||
}
|
||||
|
|
|
@ -2,7 +2,7 @@ module.exports = async function () {
|
|||
const { ActivityFeed } = await import('@11ty/eleventy-activity-feed')
|
||||
const feed = new ActivityFeed()
|
||||
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://oku.club/rss/collection/NvEmF')
|
||||
const entries = feed.getEntries().catch()
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<link href="{{ pkg.homepage }}/links.xml" rel="self" />
|
||||
<link href="{{ pkg.homepage }}/" />
|
||||
<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>
|
||||
<author>
|
||||
<name>{{ site.name }}</name>
|
||||
|
|
|
@ -35,7 +35,7 @@ layout: main
|
|||
Hacking away on random projects like this page, my
|
||||
<a href="/">blog</a>, and whatever else I can find time for.</p>
|
||||
</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">
|
||||
Listening: artists
|
||||
</h2>
|
||||
|
@ -65,7 +65,7 @@ layout: main
|
|||
</div>
|
||||
</div>
|
||||
{% 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">
|
||||
Listening: albums
|
||||
</h2>
|
||||
|
@ -95,7 +95,7 @@ layout: main
|
|||
</div>
|
||||
</div>
|
||||
{% 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">
|
||||
Reading: books
|
||||
</h2>
|
||||
|
@ -111,24 +111,23 @@ layout: main
|
|||
</ul>
|
||||
</div>
|
||||
{% 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">
|
||||
Reading: shortlisted articles
|
||||
Reading: favorite articles
|
||||
</h2>
|
||||
<div>
|
||||
<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">
|
||||
{% comment %}<a href="{{article.url}}" title="{{article.title | escape}}">{% endcomment %}
|
||||
{% comment %}{{ article.title | escape }}{% endcomment %}
|
||||
{% comment %}</a>{% endcomment %}
|
||||
{{ article.title | escape }} by {{ article.author }}
|
||||
<a href="{{article.href}}" title="{{article.description | escape}}">
|
||||
{{ article.description }}
|
||||
</a>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
{% 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">
|
||||
Watching: movies
|
||||
</h2>
|
||||
|
@ -155,7 +154,7 @@ layout: main
|
|||
</div>
|
||||
</div>
|
||||
{% 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">
|
||||
Watching: tv
|
||||
</h2>
|
||||
|
|
|
@ -5,18 +5,16 @@ permalink: /links.xml
|
|||
{% layout "./_includes/feed-links.liquid" %}
|
||||
{% block title %}Links • Cory Dransfeldt{% 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 %}
|
||||
{% assign links = articles | reverse %}
|
||||
{% for link in links %}
|
||||
<entry>
|
||||
<title>{{ link.title | escape }}</title>
|
||||
<link href="{{link.url}}" />
|
||||
<updated>{{ link.created_at | date: "%m.%d.%Y" }}</updated>
|
||||
<id>{{ link.url }}</id>
|
||||
<content type="html">
|
||||
{{ link.summary | escape }}
|
||||
</content>
|
||||
<title>{{ link.description | escape }}</title>
|
||||
<link href="{{link.href}}" />
|
||||
<updated>{{ link.time | date: "%m.%d.%Y" }}</updated>
|
||||
<id>{{ link.href }}</id>
|
||||
<content type="html"></content>
|
||||
</entry>
|
||||
{% endfor %}
|
||||
{% endblock %}
|
||||
|
|
|
@ -10,7 +10,7 @@ module.exports = class {
|
|||
const feed = new ActivityFeed()
|
||||
|
||||
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://oku.club/rss/collection/NvEmF')
|
||||
|
||||
|
|
|
@ -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>
|
||||
|
||||
- [Obsidian](https://obsidian.md)
|
||||
- [Readkit](https://readkit.app)
|
||||
- [Pinstachio](https://pinstachio.com)
|
||||
- [Plexamp](https://plexamp.com)
|
||||
- [Ivory](https://tapbots.com/ivory)
|
||||
- [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://bunny.net?ref=revw3mehej" onclick="va('event',{name:'Bunny.net referral',data:{location:'Uses'}})">Bunny.net</a>
|
||||
- [1Password](https://1password.com)
|
||||
- [Reader](https://readwise.io/read)
|
||||
- [Feedbin](https://feedbin.com)
|
||||
- [Pinboard](https://pinboard.in)
|
||||
- [Trakt](https://trakt.tv)
|
||||
- [Letterboxd](https://letterboxd.com)
|
||||
- [Oku](https://oku.club)
|
||||
|
|
Reference in a new issue