-
+
diff --git a/.env b/.env
index 04c3f8bb..226168c9 100644
--- a/.env
+++ b/.env
@@ -1,3 +1,4 @@
API_KEY_LASTFM=
API_KEY_TRAKT=
API_KEY_WEBMENTIONS_CORYD_DEV=
+SECRET_FEED_INSTAPAPER_FAVORITES=
\ No newline at end of file
diff --git a/src/_data/follow.js b/src/_data/follow.js
index 009a88ee..73be7b8b 100644
--- a/src/_data/follow.js
+++ b/src/_data/follow.js
@@ -2,6 +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('rss', '🎥', 'https://letterboxd.com/cdme/rss')
feed.addSource('rss', '📖', 'https://oku.club/rss/collection/NvEmF')
const entries = feed.getEntries().catch()
diff --git a/src/_data/links.js b/src/_data/links.js
new file mode 100644
index 00000000..c29b62f5
--- /dev/null
+++ b/src/_data/links.js
@@ -0,0 +1,24 @@
+const { extract } = require('@extractus/feed-extractor')
+const { AssetCache } = require('@11ty/eleventy-fetch')
+
+module.exports = async function () {
+ const URL = process.env.SECRET_FEED_INSTAPAPER_LIKES
+ // noinspection JSCheckFunctionSignatures
+ const asset = new AssetCache('links_data')
+ if (asset.isCacheValid('1h')) return await asset.getCachedValue()
+ const res = await extract(URL, {
+ getExtraEntryFields: (feedEntry) => {
+ return {
+ time: feedEntry['pubDate'] || '',
+ }
+ },
+ })
+ .catch((error) => {
+ console.log(error.message)
+ })
+ .catch()
+ const data = res.entries
+ const links = data.splice(0, 5)
+ await asset.save(links, 'json')
+ return links
+}
diff --git a/src/_includes/feed-links.liquid b/src/_includes/feed-links.liquid
new file mode 100644
index 00000000..931a3600
--- /dev/null
+++ b/src/_includes/feed-links.liquid
@@ -0,0 +1,18 @@
+
+
+
{{ status.emoji }} {{ status.content }}
@@ -26,12 +27,13 @@ layout: main {{ content }}- {% heroicon "solid" "terminal" "Terminal" "width=20 height=20" %} + {% heroicon "solid" "desktop-computer" "Hacking" "width=20 height=20" %} Hacking away on random projects like this page, my blog, and whatever else I can find time for.
@@ -40,8 +42,9 @@ layout: main