feat: refactor feeds; reduce dependencies
This commit is contained in:
parent
4067148658
commit
d768007f1c
375 changed files with 2568 additions and 13971 deletions
|
@ -12,7 +12,7 @@ import filters from './config/filters/index.js'
|
|||
import { slugifyString } from './config/utils/index.js'
|
||||
import { svgToJpeg } from './config/events/index.js'
|
||||
import { minifyJsComponents } from './config/events/index.js'
|
||||
import { searchIndex, tagList, tagMap, postStats, tagsSortedByCount } from './config/collections/index.js'
|
||||
import { searchIndex, tagList, postStats, tagsSortedByCount, links } from './config/collections/index.js'
|
||||
import { img } from './config/shortcodes/index.js'
|
||||
|
||||
// load .env
|
||||
|
@ -52,9 +52,6 @@ export default async function (eleventyConfig) {
|
|||
// passthrough
|
||||
eleventyConfig.addPassthroughCopy('src/assets')
|
||||
eleventyConfig.addPassthroughCopy('_redirects')
|
||||
eleventyConfig.addPassthroughCopy({
|
||||
'node_modules/@daviddarnes/mastodon-post/mastodon-post.js': 'assets/scripts/components/mastodon-post.js'
|
||||
})
|
||||
eleventyConfig.addPassthroughCopy({
|
||||
'node_modules/minisearch/dist/umd/index.js': 'assets/scripts/components/minisearch.js',
|
||||
})
|
||||
|
@ -90,9 +87,9 @@ export default async function (eleventyConfig) {
|
|||
// collections
|
||||
eleventyConfig.addCollection('searchIndex', searchIndex)
|
||||
eleventyConfig.addCollection('tagList', tagList)
|
||||
eleventyConfig.addCollection('tagMap', tagMap)
|
||||
eleventyConfig.addCollection('postStats', postStats)
|
||||
eleventyConfig.addCollection('tagsSortedByCount', tagsSortedByCount)
|
||||
eleventyConfig.addCollection('links', links)
|
||||
|
||||
const md = markdownIt({ html: true, linkify: true })
|
||||
md.use(markdownItAnchor, {
|
||||
|
|
4
.env
4
.env
|
@ -1,12 +1,8 @@
|
|||
ACCESS_KEY_B2=
|
||||
SECRET_KEY_B2=
|
||||
BUCKET_B2=
|
||||
API_KEY_LASTFM=
|
||||
SITE_ID_CLICKY=
|
||||
SITE_KEY_CLICKY=
|
||||
API_KEY_TRAKT=
|
||||
API_KEY_MOVIEDB=
|
||||
API_TOKEN_READWISE=
|
||||
SECRET_FEED_ALBUM_RELEASES=
|
||||
COOKIE_STORYGRAPH=
|
||||
ACCOUNT_ID_PLEX=
|
26
.github/workflows/blog-posts-to-readme.yaml
vendored
26
.github/workflows/blog-posts-to-readme.yaml
vendored
|
@ -1,26 +0,0 @@
|
|||
name: Blog posts to readme
|
||||
on:
|
||||
workflow_dispatch:
|
||||
schedule:
|
||||
- cron: '0 15 * * *'
|
||||
jobs:
|
||||
pull_blog_rss:
|
||||
name: Update with latest blog posts
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Get RSS Feed
|
||||
uses: kohrongying/readme-the-rss@master
|
||||
with:
|
||||
feed_url: https://coryd.dev/feeds/posts
|
||||
count: 5
|
||||
- name: Commit file changes
|
||||
run: |
|
||||
git config --global user.name 'cdransf'
|
||||
git config --global user.email 'coryd@hey.com'
|
||||
git add .
|
||||
git diff --quiet --cached || git commit -m "Update README"
|
||||
- name: Push changes
|
||||
uses: ad-m/github-push-action@master
|
||||
with:
|
||||
github_token: ${{ secrets.GH_TOKEN }}
|
57
.github/workflows/reading.yaml
vendored
Normal file
57
.github/workflows/reading.yaml
vendored
Normal file
|
@ -0,0 +1,57 @@
|
|||
name: Update book
|
||||
run-name: Book (${{ inputs.isbn }})
|
||||
permissions:
|
||||
contents: write
|
||||
on:
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
isbn:
|
||||
description: The book's ISBN. Required.
|
||||
required: true
|
||||
type: string
|
||||
notes:
|
||||
description: Notes about the book. Optional.
|
||||
type: string
|
||||
rating:
|
||||
description: Rate the book. Optional.
|
||||
type: choice
|
||||
default: "unrated"
|
||||
options:
|
||||
- "unrated"
|
||||
- ⭐️
|
||||
- ⭐️⭐️
|
||||
- ⭐️⭐️⭐️
|
||||
- ⭐️⭐️⭐️⭐️
|
||||
- ⭐️⭐️⭐️⭐️⭐️
|
||||
# Tags are optional.
|
||||
tags:
|
||||
description: Add tags to categorize the book. Separate each tag with a comma. Optional.
|
||||
type: string
|
||||
# If you do not submit date-started or date-finished, the book status will be set to "want to read"
|
||||
date-started:
|
||||
description: Date you started the book (YYYY-MM-DD). Optional.
|
||||
type: string
|
||||
date-finished:
|
||||
description: Date you finished the book (YYYY-MM-DD). Optional.
|
||||
type: string
|
||||
jobs:
|
||||
update-library:
|
||||
runs-on: macOS-latest
|
||||
name: Read
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Read
|
||||
uses: katydecorah/read-action@v7.1.0
|
||||
with:
|
||||
filename: src/_data/json/read.json
|
||||
time-zone: America/Los_Angeles
|
||||
|
||||
- name: Commit updated read file
|
||||
run: |
|
||||
git pull
|
||||
git config --local user.email "coryd@hey.com"
|
||||
git config --local user.name "Cory Dransfeldt"
|
||||
git add -A && git commit -m "📚 “${{ env.BookTitle }}” (${{ env.BookStatus }})"
|
||||
git push
|
22
.github/workflows/scheduled-post-to-bluesky.yaml
vendored
22
.github/workflows/scheduled-post-to-bluesky.yaml
vendored
|
@ -1,22 +0,0 @@
|
|||
name: Scheduled post to Bluesky
|
||||
on:
|
||||
workflow_dispatch:
|
||||
schedule:
|
||||
- cron: '0 */2 * * *'
|
||||
jobs:
|
||||
Feed2SocialMedia:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Feed to social media
|
||||
uses: lwojcik/github-action-feed-to-social-media@v2
|
||||
with:
|
||||
feedUrl: 'https://feedpress.me/coryd'
|
||||
newestItemStrategy: 'latestDate'
|
||||
postFormat: "📝: {title} {link}"
|
||||
# Bluesky settings
|
||||
blueskyEnable: true
|
||||
blueskyPostFormat: "📝: {title} {link}"
|
||||
blueskyHandle: 'cdransf.bsky.social'
|
||||
blueskyAppPassword: ${{ secrets.BLUESKY_TOKEN }}
|
||||
blueskyOwnerHandle: 'cdransf.bsky.social'
|
||||
blueskyOwnerContact: 'coryd@hey.com'
|
22
.github/workflows/scheduled-post.yaml
vendored
22
.github/workflows/scheduled-post.yaml
vendored
|
@ -1,22 +0,0 @@
|
|||
name: Scheduled follow feed to Mastodon
|
||||
on:
|
||||
workflow_dispatch:
|
||||
schedule:
|
||||
- cron: '0 */2 * * *'
|
||||
jobs:
|
||||
JSONFeed2Mastodon:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
- name: Feed to Mastodon
|
||||
uses: nhoizey/github-action-feed-to-mastodon@v2
|
||||
with:
|
||||
feedUrl: "https://coryd.dev/feeds/share-follow.json"
|
||||
mastodonInstance: "https://social.lol"
|
||||
mastodonToken: ${{ secrets.MASTODON_TOKEN }}
|
||||
globalDelayToots: 0
|
||||
- name: Pull any changes from Git
|
||||
run: git pull
|
||||
- name: Commit and push
|
||||
uses: stefanzweifel/git-auto-commit-action@v4
|
14
README.md
14
README.md
|
@ -1,6 +1,6 @@
|
|||
# coryd.dev
|
||||
|
||||
[](https://app.netlify.com/sites/cdme/deploys) [](https://github.com/cdransf/coryd.dev/actions/workflows/scheduled-build.yaml) [](https://github.com/cdransf/coryd.dev/actions/workflows/scheduled-speedlify-build.yaml) [](https://github.com/cdransf/coryd.dev/actions/workflows/scheduled-post.yaml) [](https://github.com/cdransf/coryd.dev/actions/workflows/scheduled-post-to-bluesky.yaml) [](https://github.com/cdransf/coryd.dev/actions/workflows/blog-posts-to-readme.yaml)
|
||||
[](https://app.netlify.com/sites/cdme/deploys) [](https://github.com/cdransf/coryd.dev/actions/workflows/scheduled-build.yaml) [](https://github.com/cdransf/coryd.dev/actions/workflows/scheduled-speedlify-build.yaml)
|
||||
|
||||
Hi! I'm Cory. 👋🏻
|
||||
|
||||
|
@ -8,14 +8,4 @@ This is the code for my personal website and portfolio. Built using [11ty](https
|
|||
|
||||
[](https://social.lol/@cory) [](https://www.buymeacoffee.com/cory) [](https://eleventy.dev)
|
||||
|
||||
[Now](https://coryd.dev/now) • [About](https://coryd.dev/about) • [Uses](https://coryd.dev/uses) • [Referrals](https://coryd.dev/referrals) • [Blogroll](https://coryd.dev/blogroll) • [Speedlify](https://coryd.dev/speedlify) • [Stats](https://coryd.dev/stats)
|
||||
|
||||
## 📝 Recent posts
|
||||
|
||||
<!-- BLOGPOSTS:START -->
|
||||
- [Model behavior](https://coryd.dev/posts/2024/model-behavior/)
|
||||
- [You can choose to be kind](https://coryd.dev/posts/2024/you-can-choose-to-be-kind/)
|
||||
- [We've stopped making things anyone wants](https://coryd.dev/posts/2024/weve-stopped-making-things-anyone-wants/)
|
||||
- [Don’t be afraid to admit when you don’t know something](https://coryd.dev/posts/2024/dont-be-afraid-to-admin-when-you-dont-know-something/)
|
||||
- [A retrospective on a year without streaming music](https://coryd.dev/posts/2024/a-retrospective-on-a-year-without-streaming-music/)
|
||||
<!-- BLOGPOSTS:END -->
|
||||
[Now](https://coryd.dev/now) • [About](https://coryd.dev/about) • [Uses](https://coryd.dev/uses) • [Referrals](https://coryd.dev/referrals) • [Blogroll](https://coryd.dev/blogroll) • [Speedlify](https://coryd.dev/speedlify) • [Stats](https://coryd.dev/stats)
|
1
cache/feed-to-social-media.json
vendored
1
cache/feed-to-social-media.json
vendored
|
@ -1 +0,0 @@
|
|||
{"id":"https://coryd.dev/posts/2024/model-behavior/","title":"Model behavior","link":"https://coryd.dev/posts/2024/model-behavior/","published":1713150000000,"description":"AI models can generate output modeled on input. They can respond to prompts and generate vaguely intelligible text — provided the right inputs, the right human-generated inputs.Rather than engaging with content created by modeling human input, my request is this: model better behavior by avoiding it.AI generated music? Skip it.AI generated video? Don't watch it.AI generated text? Skip it — go read some lorum ipsum instead.AI generated art? Keep on scrolling.AI generated code? Don't review it.New AI feature in your favorite app? Look for something new.It's a tool, but it's an exploitative one. If you want your work valued, if you want your time valued (as you should!) then you shouldn't be engaging with tools that devalues the creative work of anyone. Take a look at the GitHub repository for this project. (And give it a star if you feel like it.) This is a full text feed, but not all content can be rendered perfeclty within the feed. If something looks off, feel free to visit my site for the original post.","pubDate":"Mon, 15 Apr 2024 03:00:00 GMT"}
|
3
cache/jsonfeed-to-mastodon-timestamp.json
vendored
3
cache/jsonfeed-to-mastodon-timestamp.json
vendored
|
@ -1,3 +0,0 @@
|
|||
{
|
||||
"timestamp": 1713319829577
|
||||
}
|
12612
cache/jsonfeed-to-mastodon.json
vendored
12612
cache/jsonfeed-to-mastodon.json
vendored
File diff suppressed because it is too large
Load diff
|
@ -1,5 +1,4 @@
|
|||
import { DateTime } from 'luxon'
|
||||
import tagAliases from '../data/tag-aliases.js'
|
||||
import { makeYearStats, processPostFile } from './utils.js'
|
||||
|
||||
export const searchIndex = (collection) => {
|
||||
|
@ -45,32 +44,6 @@ export const tagList = (collection) => {
|
|||
return Array.from(tagsSet).sort()
|
||||
}
|
||||
|
||||
export const tagMap = (collection) => {
|
||||
const tags = {}
|
||||
const collectionData = collection.getAll()[0]
|
||||
const posts = collectionData.data.collections.posts
|
||||
const links = collectionData.data.links
|
||||
if (posts) {
|
||||
posts.forEach((post) => {
|
||||
const url = post.url.includes('http') ? post.url : `https://coryd.dev${post.url}`
|
||||
const tagString = [...new Set(post.data.tags.map((tag) => tagAliases[tag.toLowerCase()]))]
|
||||
.join(' ')
|
||||
.trim()
|
||||
if (tagString) tags[url] = tagString.replace(/\s+/g,' ')
|
||||
})
|
||||
}
|
||||
if (links) {
|
||||
links.forEach((link) => {
|
||||
const tagString = link['tags']
|
||||
.map((tag) => tagAliases[tag.toLowerCase()])
|
||||
.join(' ')
|
||||
.trim()
|
||||
if (tagString) tags[link.url] = tagString.replace(/\s+/g,' ')
|
||||
})
|
||||
}
|
||||
return tags
|
||||
}
|
||||
|
||||
export const tagsSortedByCount = (collection) => {
|
||||
const tagStats = {};
|
||||
collection.getFilteredByGlob('src/posts/**/*.*').forEach((item) => {
|
||||
|
@ -85,6 +58,8 @@ export const tagsSortedByCount = (collection) => {
|
|||
return Object.entries(tagStats).sort((a, b) => b[1] - a[1]).map(([key, value]) => `${key}`);
|
||||
}
|
||||
|
||||
export const links = (collection) => collection.getFilteredByGlob('src/links/**/*.*').reverse()
|
||||
|
||||
export const postStats = (collection) => {
|
||||
const oneDayMilliseconds = 1000 * 60 * 60 * 24
|
||||
const statsObject = {
|
||||
|
|
|
@ -1,42 +0,0 @@
|
|||
export default {
|
||||
'11ty': '#Eleventy',
|
||||
accessibility: '#Accessibility',
|
||||
ai: '#AI',
|
||||
'black metal': '#BlackMetal',
|
||||
blogging: '#Blogging',
|
||||
books: '#Books',
|
||||
climate: '#Climate',
|
||||
css: '#CSS',
|
||||
'death metal': '#DeathMetal',
|
||||
development: '#WebDev',
|
||||
economics: '#Economics',
|
||||
eleventy: '#Eleventy',
|
||||
email: '#Email',
|
||||
emo: '#Emo',
|
||||
fastmail: '#Email',
|
||||
gmail: '#Email',
|
||||
grindcore: '#Grindcore',
|
||||
health: '#Health',
|
||||
'indie web': '#IndieWeb #SmallWeb',
|
||||
ios: '#iOS #Apple',
|
||||
javascript: '#JavaScript',
|
||||
'last.fm': '#Music',
|
||||
journalism: '#Journalism',
|
||||
labor: '#Work',
|
||||
lastfm: '#Music',
|
||||
macos: '#macOS #Apple',
|
||||
mastodon: '#Mastodon',
|
||||
music: '#Music',
|
||||
privacy: '#Privacy',
|
||||
productivity: '#Productivity',
|
||||
react: '#JavaScript',
|
||||
rss: '#RSS',
|
||||
shoegaze: '#Shoegaze',
|
||||
'social media': '#SocialMedia',
|
||||
spotify: '#Music',
|
||||
'surveillance capitalism': '#SurveillanceCapitalism',
|
||||
'tattoos': '#Tattoos',
|
||||
tech: '#Tech',
|
||||
technology: '#Tech',
|
||||
'web components': '#WebComponents'
|
||||
}
|
|
@ -60,14 +60,6 @@ export default {
|
|||
})
|
||||
},
|
||||
|
||||
// tags
|
||||
tagLookup: (url, tagMap) => {
|
||||
if (!url) return
|
||||
if (url.includes('thestorygraph.com')) return '#Books #NowReading #TheStoryGraph'
|
||||
if (url.includes('trakt.tv')) return '#Movies #Watching #Trakt'
|
||||
return tagMap[url] || ''
|
||||
},
|
||||
|
||||
// dates
|
||||
readableDate: (date) => {
|
||||
return DateTime.fromISO(date).toFormat('LLLL d, yyyy')
|
||||
|
@ -144,6 +136,7 @@ export default {
|
|||
|
||||
// set the entry excerpt
|
||||
if (entry.description) excerpt = entry.description
|
||||
if (entry?.data?.description) excerpt = entry?.data?.description
|
||||
if (entry.content) excerpt = sanitizeHtml(`${entry.content}${feedNote}`, {
|
||||
disallowedTagsMode: 'completelyDiscard'
|
||||
})
|
||||
|
@ -153,7 +146,7 @@ export default {
|
|||
posts.push({
|
||||
title: entry.data?.title || entry.title,
|
||||
url: entry.url.includes('http') ? entry.url : new URL(entry.url, BASE_URL).toString(),
|
||||
content: entry.description,
|
||||
content: entry?.description || entry?.data?.description,
|
||||
date,
|
||||
excerpt,
|
||||
})
|
||||
|
|
1069
package-lock.json
generated
1069
package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "coryd.dev",
|
||||
"version": "11.4.16",
|
||||
"version": "12.0.0",
|
||||
"description": "The source for my personal site. Built using 11ty.",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
|
@ -23,8 +23,6 @@
|
|||
"@cdransf/select-pagination": "^1.0.4",
|
||||
"@cdransf/theme-toggle": "^1.2.3",
|
||||
"@daviddarnes/link-peek": "^1.0.0",
|
||||
"@daviddarnes/mastodon-post": "^1.1.1",
|
||||
"@remy/webmention": "^1.5.0",
|
||||
"@zachleat/webcare-webshare": "^1.0.3",
|
||||
"minisearch": "^6.3.0",
|
||||
"youtube-video-element": "^1.0.0"
|
||||
|
|
|
@ -1,23 +0,0 @@
|
|||
export default async function () {
|
||||
const { ActivityFeed } = await import('@11ty/eleventy-activity-feed')
|
||||
const feed = new ActivityFeed()
|
||||
feed.addSource('rss', '📝', 'https://coryd.dev/feeds/posts')
|
||||
feed.addSource('rss', '🎥', 'https://coryd.dev/feeds/movies')
|
||||
feed.addSource('rss', '📖', 'https://coryd.dev/feeds/books')
|
||||
feed.addSource('rss', '🔗', 'https://coryd.dev/feeds/links')
|
||||
feed.addSource('rss', '🎧', 'https://coryd.dev/feeds/weekly-artist-chart')
|
||||
const entries = feed.getEntries().catch()
|
||||
const res = await entries
|
||||
const activity = { posts: [] }
|
||||
res.forEach((entry) => {
|
||||
activity.posts.push({
|
||||
id: entry.url,
|
||||
title: entry.title,
|
||||
url: entry.url,
|
||||
description: entry.content,
|
||||
content_html: entry.content,
|
||||
date_published: entry.published,
|
||||
})
|
||||
})
|
||||
return activity
|
||||
}
|
File diff suppressed because one or more lines are too long
|
@ -1,8 +0,0 @@
|
|||
import { createRequire } from 'module'
|
||||
|
||||
const require = createRequire(import.meta.url)
|
||||
const mastodonCache = require('../../cache/jsonfeed-to-mastodon.json')
|
||||
|
||||
export default async function () {
|
||||
return mastodonCache
|
||||
}
|
|
@ -1,97 +0,0 @@
|
|||
import EleventyFetch from '@11ty/eleventy-fetch'
|
||||
import { S3Client, GetObjectCommand, PutObjectCommand } from '@aws-sdk/client-s3'
|
||||
|
||||
const getReadableData = (readable) => {
|
||||
return new Promise((resolve, reject) => {
|
||||
const chunks = []
|
||||
readable.once('error', (err) => reject(err))
|
||||
readable.on('data', (chunk) => chunks.push(chunk))
|
||||
readable.once('end', () => resolve(chunks.join('')))
|
||||
})
|
||||
}
|
||||
|
||||
const filterDuplicates = array => {
|
||||
const seenIds = new Set();
|
||||
return array.filter(obj => !seenIds.has(obj.id) && seenIds.add(obj.id));
|
||||
};
|
||||
|
||||
export default async function () {
|
||||
const client = new S3Client({
|
||||
credentials: {
|
||||
accessKeyId: process.env.ACCESS_KEY_B2,
|
||||
secretAccessKey: process.env.SECRET_KEY_B2,
|
||||
},
|
||||
endpoint: {
|
||||
url: 'https://s3.us-west-001.backblazeb2.com',
|
||||
},
|
||||
region: 'us-west-1',
|
||||
})
|
||||
const BUCKET_B2 = process.env.BUCKET_B2
|
||||
const API_TOKEN_READWISE = process.env.API_TOKEN_READWISE
|
||||
const formatLinkData = (links) => links.map((link) => {
|
||||
return {
|
||||
title: link['title'],
|
||||
url: link['source_url'],
|
||||
tags: [...new Set(Object.keys(link['tags']))],
|
||||
date: `${link['created_at'] || link['updated_at']}`,
|
||||
author: link['author'],
|
||||
summary: link['summary'],
|
||||
note: link['notes'],
|
||||
description: `${link['summary']}<br/><br/>`,
|
||||
id: link['id']
|
||||
}
|
||||
})
|
||||
const fullData = [];
|
||||
const maxRequests = process.env.ELEVENTY_PRODUCTION ? 10 : 2
|
||||
let nextPageCursor = null;
|
||||
let requestCount = 0;
|
||||
let cachedLinks;
|
||||
|
||||
if (process.env.ELEVENTY_PRODUCTION) {
|
||||
const cachedLinksOutput = await client.send(
|
||||
new GetObjectCommand({
|
||||
Bucket: BUCKET_B2,
|
||||
Key: 'links.json',
|
||||
})
|
||||
)
|
||||
const cachedLinksData = getReadableData(cachedLinksOutput.Body)
|
||||
cachedLinks = await cachedLinksData.then((tracks) => JSON.parse(tracks)).catch()
|
||||
}
|
||||
|
||||
while (true) {
|
||||
const queryParams = new URLSearchParams()
|
||||
if (nextPageCursor) queryParams.append('pageCursor', nextPageCursor)
|
||||
const res = EleventyFetch(`https://readwise.io/api/v3/list?location=archive&${queryParams.toString()}`, {
|
||||
duration: '1h',
|
||||
type: 'json',
|
||||
fetchOptions: {
|
||||
headers: {
|
||||
Authorization: `Token ${API_TOKEN_READWISE}`,
|
||||
},
|
||||
},
|
||||
}).catch()
|
||||
const data = await res
|
||||
fullData.push(...data['results']);
|
||||
nextPageCursor = data['nextPageCursor']
|
||||
requestCount++;
|
||||
if (!nextPageCursor || requestCount === maxRequests) break;
|
||||
}
|
||||
|
||||
if (process.env.ELEVENTY_PRODUCTION) {
|
||||
const mergedData = filterDuplicates([
|
||||
...formatLinkData(fullData).filter((link) => link.tags.includes('share')),
|
||||
...Object.values(cachedLinks)
|
||||
]).sort((a,b) => new Date(b.date) - new Date(a.date));
|
||||
|
||||
await client.send(
|
||||
new PutObjectCommand({
|
||||
Bucket: BUCKET_B2,
|
||||
Key: 'links.json',
|
||||
Body: JSON.stringify(mergedData),
|
||||
})
|
||||
)
|
||||
return mergedData
|
||||
}
|
||||
|
||||
return formatLinkData(fullData).filter((link) => link.tags.includes('share'))
|
||||
}
|
|
@ -23,7 +23,6 @@ export default async function () {
|
|||
{ name: 'Mastodon', url: 'https://social.lol/@cory', icon: 'brand-mastodon' },
|
||||
{ name: 'Last.fm', url: 'https://www.last.fm/user/coryd_', icon: 'brand-lastfm' },
|
||||
{ name: 'Trakt', url: 'https://trakt.tv/users/cdransf', icon: 'device-tv' },
|
||||
{ name: 'The StoryGraph', url: 'https://app.thestorygraph.com/profile/coryd', icon: 'books' },
|
||||
{ name: 'Webrings', url: '/webrings', icon: 'heart-handshake' },
|
||||
],
|
||||
}
|
||||
|
|
|
@ -88,7 +88,7 @@ layout: default
|
|||
Books
|
||||
</h2>
|
||||
{% render "partials/now/media-grid.liquid", data:books, shape: "vertical", count: 6 %}
|
||||
{% render "partials/recent-links.liquid", links:links %}
|
||||
{% render "partials/recent-links.liquid", links:collections.links %}
|
||||
<h2 id="movies" class="now-header flex-centered">
|
||||
{% tablericon "movie" "Movies" %}
|
||||
Movies
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
"id": "{{ entry.url | btoa }}",
|
||||
"title": "{{ entry.title | replaceQuotes }}",
|
||||
"url": "{{ entry.url }}",
|
||||
"content_text": "{{ entry.title | replaceQuotes }}{% if tagMap %} {{ entry.url | tagLookup: tagMap }}{% endif %} {{ entry.url }}",
|
||||
"content_text": "{{ entry.title | replaceQuotes }} {{ entry.url }}",
|
||||
"date_published": "{{ entry.date | stringToRFC822Date }}"
|
||||
}{% if not forloop.last %},{% endif %}
|
||||
{%- endfor %}
|
||||
|
|
|
@ -1,24 +0,0 @@
|
|||
{%- assign shareLink = postUrl | findPost: linkPosts -%}
|
||||
{%- if shareLink %}
|
||||
<script type="module" src="/assets/scripts/components/mastodon-post.js"></script>
|
||||
<template id="mastodon-post-template">
|
||||
<div class="mastodon-post-wrapper">
|
||||
<blockquote data-key="content"></blockquote>
|
||||
<dl>
|
||||
<dt>{% tablericon "refresh" "Reposts" %}</dt>
|
||||
<dd data-key="reblogs_count"></dd>
|
||||
<dt>{% tablericon "message-circle" "Replies" %}</dt>
|
||||
<dd data-key="replies_count"></dd>
|
||||
<dt>{% tablericon "star" "Favorites" %}</dt>
|
||||
<dd data-key="favourites_count"></dd>
|
||||
</dl>
|
||||
</div>
|
||||
</template>
|
||||
<span class="client-side">
|
||||
<mastodon-post>
|
||||
<a href="{{ shareLink }}">
|
||||
Discuss on Mastodon
|
||||
</a>
|
||||
</mastodon-post>
|
||||
</span>
|
||||
{% endif -%}
|
|
@ -6,8 +6,8 @@
|
|||
<ul class="link-list">
|
||||
{% for link in links limit: 5 %}
|
||||
<li>
|
||||
<a href="{{link.url}}" title="{{link.title | escape}}">
|
||||
{{ link.title }}
|
||||
<a href="{{ link.url }}" title="{{ link.data.title | escape }}">
|
||||
{{ link.data.title }}
|
||||
</a>
|
||||
</li>
|
||||
{% endfor %}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<script type="module" src="/assets/scripts/components/webcare-webshare.js"></script>
|
||||
<webcare-webshare share-text="{{ title }} {{ url | tagLookup: tagMap }}" share-url="{{ url }}" copy-text="{{ title }} {{ url | tagLookup: tagMap }} {{ url }}">
|
||||
<webcare-webshare share-text="{{ title }} {{ url }}" share-url="{{ url }}" copy-text="{{ title }} {{ url }} {{ url }}">
|
||||
<button class="share icon-small icon-center-vertical" disabled>{% tablericon "share" "Share" %}</button>
|
||||
</webcare-webshare>
|
|
@ -23,5 +23,4 @@ schema: blog
|
|||
</div>
|
||||
</article>
|
||||
</div>
|
||||
{% render "partials/mastodon-post.liquid", postUrl:postUrl, linkPosts:linkPosts %}
|
||||
{% render "partials/addon-links.liquid", posts:collections.posts, analytics:analytics, links:links %}
|
||||
{% render "partials/addon-links.liquid", posts:collections.posts, analytics:analytics, links:collections.links %}
|
|
@ -1,18 +0,0 @@
|
|||
.mastodon-post-wrapper {
|
||||
border-bottom: 1px solid var(--gray-light);
|
||||
margin-bottom: var(--sizing-base);
|
||||
padding-bottom: var(--sizing-base);
|
||||
|
||||
& dl {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
}
|
||||
|
||||
& dd {
|
||||
margin-left: var(--sizing-xs);
|
||||
|
||||
&:not(:last-child) {
|
||||
margin-right: var(--sizing-lg);
|
||||
}
|
||||
}
|
||||
}
|
|
@ -30,7 +30,6 @@
|
|||
@import url('./components/buttons.css') layer(components);
|
||||
@import url('./components/forms.css') layer(components);
|
||||
@import url('./components/link-peek.css') layer(components);
|
||||
@import url('./components/mastodon-post.css') layer(components);
|
||||
@import url('./components/media-grid.css') layer(components);
|
||||
@import url('./components/paginator.css') layer(components);
|
||||
@import url('./components/post-graph.css') layer(components);
|
||||
|
|
|
@ -1,12 +0,0 @@
|
|||
---
|
||||
layout: null
|
||||
eleventyExcludeFromCollections: true
|
||||
permalink: /feeds/follow.json
|
||||
---
|
||||
{% render "partials/feeds/json.liquid"
|
||||
permalink:'/feeds/follow'
|
||||
title:'Follow • Cory Dransfeldt'
|
||||
data:follow.posts
|
||||
updated:follow.posts[0].date_published
|
||||
site:site
|
||||
%}
|
|
@ -1,13 +0,0 @@
|
|||
---
|
||||
layout: null
|
||||
eleventyExcludeFromCollections: true
|
||||
permalink: /feeds/follow
|
||||
---
|
||||
{% render "partials/feeds/rss.liquid"
|
||||
permalink:"/feeds/follow"
|
||||
title:"Follow • Cory Dransfeldt"
|
||||
description:"My activity from around the web."
|
||||
data:follow.posts
|
||||
updated:follow.posts[0].date_published
|
||||
site:site
|
||||
%}
|
|
@ -7,7 +7,7 @@ permalink: /feeds/links
|
|||
permalink:"/feeds/links"
|
||||
title:"Links • Cory Dransfeldt"
|
||||
description:"Links I've liked."
|
||||
data:links
|
||||
data:collections.links
|
||||
updated:links[0].date
|
||||
site:site
|
||||
%}
|
|
@ -1,13 +0,0 @@
|
|||
---
|
||||
layout: null
|
||||
eleventyExcludeFromCollections: true
|
||||
permalink: /feeds/share-follow.json
|
||||
---
|
||||
{% render "partials/feeds/json.liquid"
|
||||
permalink:'/feeds/share-follow.json'
|
||||
title:'Follow • Cory Dransfeldt'
|
||||
data:follow.posts
|
||||
updated:follow.posts[0].date_published
|
||||
site:site
|
||||
tagMap:collections.tagMap
|
||||
%}
|
|
@ -2,14 +2,15 @@
|
|||
title: Links
|
||||
layout: default
|
||||
pagination:
|
||||
data: links
|
||||
data: collections.links
|
||||
size: 30
|
||||
---
|
||||
<ul class="link-list reduced-spacing">
|
||||
{% for link in pagination.items %}
|
||||
<li>
|
||||
<a href="{{ link.url }}">{{ link.title }}</a>
|
||||
{% if link.author and link.author != 'undefined' %}by {{ link.author }}{% endif %}
|
||||
<a href="{{ link.url }}" title="{{ link.data.title | escape }}">
|
||||
{{ link.data.title }}
|
||||
</a>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
|
|
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
title: "‘A certain danger lurks there’: how the inventor of the first chatbot turned against AI"
|
||||
date: "2023-07-28T14:55-08:00"
|
||||
tags: ["tech"]
|
||||
description: "Computer scientist Joseph Weizenbaum was there at the dawn of artificial intelligence – but he was also adamant that we must never confuse computers with humans"
|
||||
link: https://www.theguardian.com/technology/2023/jul/25/joseph-weizenbaum-inventor-eliza-chatbot-turned-against-artificial-intelligence-ai
|
||||
---
|
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
title: "The Right to Lie: Google’s “Web Environment Integrity” Proposal is a Geyser of Badness Threatening to Swamp the Open Web."
|
||||
date: "2023-07-30T21:43-08:00"
|
||||
tags: ["tech", "development"]
|
||||
description: "This is a fundamental principle of free and open source software. The World Wide Web abides by this principle, although we don’t often think of it that way."
|
||||
link: https://rants.org/2023/07/the-right-to-lie-and-google-wei/
|
||||
---
|
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
title: "When Emo Conquered the Mainstream"
|
||||
date: "2023-07-30T21:40-08:00"
|
||||
tags: ["music"]
|
||||
description: "Sometime in the eighties, the story goes—and every musical genre is ultimately a story—a few bands in America’s hypermasculine hardcore-punk scene started making music with poetic, emotionally vulnerable lyrics, and people called this music “emo,” as in “emocore,” as in “emotional hardcore."
|
||||
link: https://www.newyorker.com/books/page-turner/when-emo-conquered-the-mainstream
|
||||
---
|
7
src/links/2023/2023-08-03-splitting-the-web.md
Normal file
7
src/links/2023/2023-08-03-splitting-the-web.md
Normal file
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
title: "Splitting the Web"
|
||||
date: "2023-08-03T17:44-08:00"
|
||||
tags: ["tech", "economics"]
|
||||
description: "Splitting the Web écrit par Ploum, Lionel Dricot, ingénieur, écrivain de science-fiction, développeur de logiciels libres."
|
||||
link: https://ploum.net/2023-08-01-splitting-the-web.html
|
||||
---
|
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
title: "Why Threads will never be the new Twitter"
|
||||
date: "2023-08-07T16:22-08:00"
|
||||
tags: ["tech", "social media"]
|
||||
description: "Threads doesn`t want to be the new Twitter. It wants to be a shopping mall designed to sell you useless crap."
|
||||
link: https://www.businessinsider.com/threads-never-replace-twitter-meta-zuckerberg-musk-advertisers-brands-influencers-2023-7?utm_source=substack&utm_medium=email
|
||||
---
|
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
title: "I don't want to host services (but I do)"
|
||||
date: "2023-08-10T03:40-08:00"
|
||||
tags: ["tech"]
|
||||
description: "I don’t want to self-host, and even worse: I think most individuals shouldn’t host services for others. Yet, I am self-hosting services and I even teach people how to do it."
|
||||
link: https://ergaster.org/posts/2023/08/09-i-dont-want-to-host-services-but-i-do/
|
||||
---
|
7
src/links/2023/2023-08-09-when-our-tools-hold-us-back.md
Normal file
7
src/links/2023/2023-08-09-when-our-tools-hold-us-back.md
Normal file
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
title: "When Our Tools Hold Us Back"
|
||||
date: "2023-08-09T21:28-08:00"
|
||||
tags: ["development"]
|
||||
description: "What happens if the `pace layers` get out of sync?"
|
||||
link: https://www.oddbird.net/2022/11/11/platform-tools/
|
||||
---
|
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
title: "Most websites should be served statically"
|
||||
date: "2023-08-12T23:31-08:00"
|
||||
tags: ["development"]
|
||||
description: "I’ve had this thought for quite some time, and it’s that most websites don’t need to be served dynamically."
|
||||
link: https://chrishannah.me/most-websites-should-be-served-statically/
|
||||
---
|
7
src/links/2023/2023-08-12-what-makes-a-website-cool-.md
Normal file
7
src/links/2023/2023-08-12-what-makes-a-website-cool-.md
Normal file
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
title: "What makes a website cool?"
|
||||
date: "2023-08-12T23:32-08:00"
|
||||
tags: ["development"]
|
||||
description: "The website of Robin Rendle, a designer and writer from the UK."
|
||||
link: https://robinrendle.com/newsletter/what-makes-a-website-cool/
|
||||
---
|
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
title: "The Top 10 Web Design Mistakes of 1999"
|
||||
date: "2023-08-14T23:43-08:00"
|
||||
tags: ["development"]
|
||||
description: "New technology and conventions have led to several new classes of usability problems in Web design."
|
||||
link: https://www.nngroup.com/articles/the-top-ten-web-design-mistakes-of-1999/
|
||||
---
|
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
title: "Confessions of a Dinosaur Jr. Guy"
|
||||
date: "2023-08-16T21:06-08:00"
|
||||
tags: ["music", "shortlist"]
|
||||
description: "What it means to be a fan lies somewhere in the fraught dynamic between these three men."
|
||||
link: https://www.vulture.com/2022/08/dinosaur-jr-freakscene.html
|
||||
---
|
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
title: "Squeeze the hell out of the system you have"
|
||||
date: "2023-08-18T17:22-08:00"
|
||||
tags: ["development"]
|
||||
description: "When complexity leaps are on the table, there’s usually also an opportunity to squeeze some extra juice out of the system you have. By tweaking the workload, tuning performance, or supplement…"
|
||||
link: https://blog.danslimmon.com/2023/08/11/squeeze-the-hell-out-of-the-system-you-have/
|
||||
---
|
7
src/links/2023/2023-08-20-does-ai-just-suck-.md
Normal file
7
src/links/2023/2023-08-20-does-ai-just-suck-.md
Normal file
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
title: "Does AI Just Suck?"
|
||||
date: "2023-08-20T19:25-08:00"
|
||||
tags: ["tech"]
|
||||
description: "Above, on the left, is an image of the late actor John Candy created by the unfathomably complicated AI image generator Midjourney, which no doubt based this image on thousands of pictures of its subject. On the right is a cartoon version of John Candy made by some animator, probably based on a handful of still photographs of him. Here is John Candy."
|
||||
link: https://freddiedeboer.substack.com/p/does-ai-just-suck
|
||||
---
|
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
title: "The endpoint of Web Environment Integrity is a closed Web"
|
||||
date: "2023-08-20T17:29-08:00"
|
||||
tags: ["tech", "shortlist", "development"]
|
||||
description: "We had to destroy the Web in order to save it"
|
||||
link: https://educatedguesswork.org/posts/wei/
|
||||
---
|
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
title: "When human knowledge becomes feedstock"
|
||||
date: "2023-08-20T19:25-08:00"
|
||||
tags: ["tech"]
|
||||
description: "Case study: new tech, new responsibilities"
|
||||
link: https://www.theprivacywhisperer.com/p/when-human-knowledge-becomes-feedstock
|
||||
---
|
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
title: "Pros and cons of using Shadow DOM and style encapsulation"
|
||||
date: "2023-08-23T11:39-08:00"
|
||||
tags: ["development"]
|
||||
description: "When I started to work with web components, I compared different options and decided to go with lit. I knew the extra performance cost would pay off quickly, and it fit into my performance budget. I’m still happy with my decision."
|
||||
link: https://www.matuzo.at/blog/2023/pros-and-cons-of-shadow-dom/
|
||||
---
|
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
title: "Remembering the ’70s activist group that tried to save us from the tech industry"
|
||||
date: "2023-08-29T01:33-08:00"
|
||||
tags: ["tech", "politics"]
|
||||
description: "Computer People for Peace were ahead of their time."
|
||||
link: https://theoutline.com/post/4029/computer-people-for-peace-history
|
||||
---
|
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
title: "Educational Sensational Inspirational Foundational"
|
||||
date: "2023-08-29T21:12-08:00"
|
||||
tags: ["development"]
|
||||
description: "A historical record of foundational web development blog posts."
|
||||
link: https://esif.dev/
|
||||
---
|
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
title: "Other People’s Busted Software is an Opportunity"
|
||||
date: "2023-08-29T20:55-08:00"
|
||||
tags: ["development"]
|
||||
description: "I was at the airport the other day, and a guy who works for Delta told me he wants to use their website-based system to give a friend a flight voucher. He can’t do it from his phone, it just doesn’t work from phones (cool neat). He needs a laptop to do it, and asked […]"
|
||||
link: https://chriscoyier.net/2023/08/01/other-peoples-busted-software-is-an-opportunity/
|
||||
---
|
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
title: "Why are websites embarrassing?"
|
||||
date: "2023-08-29T17:19-08:00"
|
||||
tags: ["development "]
|
||||
description: "The website of Robin Rendle, a designer and writer from the UK."
|
||||
link: https://robinrendle.com/notes/why-are-websites-embarrassing/
|
||||
---
|
7
src/links/2023/2023-09-03-no-one-is--non-technical-.md
Normal file
7
src/links/2023/2023-09-03-no-one-is--non-technical-.md
Normal file
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
title: "No one is “non-technical”"
|
||||
date: "2023-09-03T23:14-08:00"
|
||||
tags: ["tech"]
|
||||
description: "There’s no such thing as a “non-technical” role; there are only different techniques."
|
||||
link: https://everythingchanges.us/blog/no-one-is-non-technical/
|
||||
---
|
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
title: "Possibilities if you don't ask for what you want vs. if you do"
|
||||
date: "2023-09-05T01:14-08:00"
|
||||
tags: ["tech"]
|
||||
description: "When you hesitate to ask for what you want or need, you aren`t just missing out on immediate rewards or opportunities. You`re also doing a disservice to your future self and others who might benefit from knowing what you’re after. Here`s why you should nip that hesitation in the bud."
|
||||
link: https://addyosmani.com/blog/possibilities/
|
||||
---
|
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
title: "AOL Pretends to be the Internet"
|
||||
date: "2023-09-07T12:39-08:00"
|
||||
tags: ["tech"]
|
||||
description: "In 1994, Ted Leonsis was the head of the new media marketing firm he created, Redgate Communications, spun out six […]"
|
||||
link: https://thehistoryoftheweb.com/postscript/aol-pretends-to-be-the-internet/
|
||||
---
|
7
src/links/2023/2023-09-07-kagi-small-web.md
Normal file
7
src/links/2023/2023-09-07-kagi-small-web.md
Normal file
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
title: "Kagi Small Web"
|
||||
date: "2023-09-07T15:32-08:00"
|
||||
tags: ["tech"]
|
||||
description: "As a part of our ongoing pursuit to humanize the web, we are pleased to announce the launch of Kagi Small Web."
|
||||
link: https://blog.kagi.com/small-web
|
||||
---
|
7
src/links/2023/2023-09-14-simple---boring.md
Normal file
7
src/links/2023/2023-09-14-simple---boring.md
Normal file
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
title: "Simple & Boring"
|
||||
date: "2023-09-14T15:27-08:00"
|
||||
tags: ["development"]
|
||||
description: "Simplicity is a funny adjective in web design and development. I`m sure it`s a quoted goal for just about every project ever done. Nobody walks into a kickoff"
|
||||
link: https://css-tricks.com/simple-boring/
|
||||
---
|
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
title: "California lawmakers pass bill to make it easier to delete online personal data"
|
||||
date: "2023-09-15T18:48-08:00"
|
||||
tags: ["tech"]
|
||||
description: "California lawmakers on Thursday passed a bill known as the Delete Act that would allow consumers, with a single request, to have every data broker delete their personal information."
|
||||
link: https://www.latimes.com/politics/story/2023-09-14/california-bill-delete-online-personal-data
|
||||
---
|
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
title: "There's no such thing as the fundamentals of web development"
|
||||
date: "2023-09-15T22:57-08:00"
|
||||
tags: ["development"]
|
||||
description: "Nine months ago I gave a talk about how there is no such thing as the fundamentals of web development. It`s a thing I have been saying for years but keep getting pushback on, and when that happens it`s time to write a proper blog post about it rather than just arguing with people one at a time."
|
||||
link: https://seldo.com/posts/theres-no-such-thing-as-the-fundamentals
|
||||
---
|
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
title: "Customer Focus is Paramount in Measuring Developer Productivity"
|
||||
date: "2023-09-17T21:49-08:00"
|
||||
tags: ["development"]
|
||||
description: "My Thoughts on the recent discussion around measuring developer productivity"
|
||||
link: https://jdotc.xyz/blog/developer-productivity/
|
||||
---
|
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
title: "The Internet Isn’t Meant To Be So Small"
|
||||
date: "2023-09-17T17:49-08:00"
|
||||
tags: ["tech"]
|
||||
description: "Because my brain was infested with worms at a very early age, I value continuity of username across platforms more than my own sanity. I have used the same username since AIM, and god help me, I will not lose it. My username has served me well through Neopets and Xanga and Livejournal and LikeALittle […]"
|
||||
link: https://defector.com/the-internet-isnt-meant-to-be-so-small
|
||||
---
|
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
title: "The JS community on Twitter is dead."
|
||||
date: "2023-09-17T17:27-08:00"
|
||||
tags: ["development"]
|
||||
description: "Something something about once you`re a nazi bar you`re always a nazi bar."
|
||||
link: https://heather-buchel.com/blog/2023/09/the-js-community-on-twitter-is-dead/
|
||||
---
|
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
title: "Which Kinds of Tests Should I Write? Revisited"
|
||||
date: "2023-09-18T15:14-08:00"
|
||||
tags: ["development"]
|
||||
description: "I see so many programmers tying themselves up in knots, trying to find “the right” testing strategy."
|
||||
link: https://blog.thecodewhisperer.com/permalink/which-kinds-of-tests-should-i-write-revisited
|
||||
---
|
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
title: "50 Dystopian Movies Ranked by How Close They Got to Accurately Predicting the Hell We Live In"
|
||||
date: "2023-10-28T17:19-08:00"
|
||||
tags: ["culture"]
|
||||
description: "Whether we want to admit it or not we are currently in the end of times, and we ranked dystopian movies based on how close they came to getting it right."
|
||||
link: https://thehardtimes.net/lists/50-dystopian-movies-ranked-by-how-close-they-got-to-accurately-predicting-the-hell-we-live-in/
|
||||
---
|
7
src/links/2023/2023-10-28-death-metal-english.md
Normal file
7
src/links/2023/2023-10-28-death-metal-english.md
Normal file
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
title: "Death Metal English"
|
||||
date: "2023-10-28T17:19-08:00"
|
||||
tags: ["music"]
|
||||
description: "Death metal has a unique approach to the language. Here`s how it works."
|
||||
link: https://www.invisibleoranges.com/death-metal-english/
|
||||
---
|
7
src/links/2023/2023-10-28-dissocial-media.md
Normal file
7
src/links/2023/2023-10-28-dissocial-media.md
Normal file
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
title: "Dissocial Media"
|
||||
date: "2023-10-28T17:19-08:00"
|
||||
tags: ["tech", "social media"]
|
||||
description: "Thoughts on jettisoning social media."
|
||||
link: https://nazhamid.com/journal/dissocial-media/
|
||||
---
|
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
title: "It's now possible to block ChatGPT's crawler on any website..."
|
||||
date: "2023-10-28T17:19-08:00"
|
||||
tags: ["tech"]
|
||||
description: "It`s now possible to block ChatGPT`s crawler on any website you control."
|
||||
link: https://twitter.com/gergelyorosz/status/1688829094249615360
|
||||
---
|
7
src/links/2023/2023-10-28-just-normal-web-things-.md
Normal file
7
src/links/2023/2023-10-28-just-normal-web-things-.md
Normal file
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
title: "Just normal web things."
|
||||
date: "2023-10-28T17:19-08:00"
|
||||
tags: ["development"]
|
||||
description: "A plea for us to get back to building websites that can do normal website things."
|
||||
link: https://heather-buchel.com/blog/2023/07/just-normal-web-things/
|
||||
---
|
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
title: "Let a website be a worry stone."
|
||||
date: "2023-10-28T17:19-08:00"
|
||||
tags: ["design", "development"]
|
||||
description: "One turn deserves another."
|
||||
link: https://ethanmarcotte.com/wrote/let-a-website-be-a-worry-stone/
|
||||
---
|
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
title: "Offline Is Just Online With Extreme Latency"
|
||||
date: "2023-10-28T17:19-08:00"
|
||||
tags: ["development"]
|
||||
description: "Writing about the big beautiful mess that is making things for the world wide web."
|
||||
link: https://blog.jim-nielsen.com/2023/offline-is-online-with-extreme-latency/
|
||||
---
|
7
src/links/2023/2023-10-28-one-quick--one-slow.md
Normal file
7
src/links/2023/2023-10-28-one-quick--one-slow.md
Normal file
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
title: "One Quick, One Slow"
|
||||
date: "2023-10-28T17:19-08:00"
|
||||
tags: ["tech", "social media"]
|
||||
description: "Even if social media is crumbling around us, people can endure."
|
||||
link: https://lucybellwood.com/one-quick-one-slow/
|
||||
---
|
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
title: "SEO and Web Components - 2023 Edition"
|
||||
date: "2023-10-28T17:19-08:00"
|
||||
tags: ["development"]
|
||||
description: "This post includes some important updates about web components and search engine optimization (SEO)"
|
||||
link: https://dev.to/stuffbreaker/seo-and-web-components-2023-edition-3l6i
|
||||
---
|
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
title: "The Coming Enshittification of Public Libraries"
|
||||
date: "2023-10-28T17:19-08:00"
|
||||
tags: ["politics", "economics"]
|
||||
description: "Global investment vampires have positioned themselves to suck our libraries dry"
|
||||
link: https://karawynn.substack.com/p/the-coming-enshittification-of-public-libraries
|
||||
---
|
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
title: "The Great Social Media Wars of 2023"
|
||||
date: "2023-10-28T17:19-08:00"
|
||||
tags: ["tech", "social media"]
|
||||
description: "all will enter, none will survive"
|
||||
link: https://leahreich.substack.com/p/the-great-social-media-wars-of-2023
|
||||
---
|
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
title: "Tomorrow & tomorrow & tomorrow"
|
||||
date: "2023-10-28T17:19-08:00"
|
||||
tags: ["tech", "social media"]
|
||||
description: "We realize then that it is just the patterns of events in space which are repeating in the building or the town: and nothing else. Nothing of any"
|
||||
link: https://erinkissane.com/tomorrow-and-tomorrow-and-tomorrow
|
||||
---
|
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
title: "World Wide Web, Not Wealthy Western Web (Part 1)"
|
||||
date: "2023-10-28T17:19-08:00"
|
||||
tags: ["tech", "development"]
|
||||
description: "Many of the developing economies across the worls are growing extraordinarily fast, with a rapidly expanding middle class that has increasing disposable income."
|
||||
link: https://www.smashingmagazine.com/2017/03/world-wide-web-not-wealthy-western-web-part-1/
|
||||
---
|
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
title: "Block ChatGPT with robots.txt"
|
||||
date: "2023-11-23T02:58-08:00"
|
||||
tags: ["development"]
|
||||
description: "A robots.txt file `tells search engine crawlers which URLs the crawler can access on your site`. Generally one would use this to tell a search engine which directories should be crawled, which ones shouldn`t, or to completely block from crawling your site. The file lives at the root of your site. You can see mine here."
|
||||
link: https://rknight.me/block-chatgpt-with-robotstxt/
|
||||
---
|
7
src/links/2023/2023-11-22-effective-code-reviews.md
Normal file
7
src/links/2023/2023-11-22-effective-code-reviews.md
Normal file
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
title: "Effective Code Reviews"
|
||||
date: "2023-11-23T02:58-08:00"
|
||||
tags: ["development"]
|
||||
description: "A well-conducted code review is an opportunity for both the author and the reviewer to learn, share knowledge, and contribute to the overall quality of the software. They are our shared journey towards excellence. The following guidelines may help both authors and reviewers carry out this task more efficiently and constructively."
|
||||
link: https://addyosmani.com/blog/code-reviews/
|
||||
---
|
7
src/links/2023/2023-11-22-file-over-app.md
Normal file
7
src/links/2023/2023-11-22-file-over-app.md
Normal file
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
title: "File over app"
|
||||
date: "2023-11-23T02:58-08:00"
|
||||
tags: ["tech"]
|
||||
description: "File over app is a philosophy: if you want to create digital artifacts that last, they must be files you can control, in formats that are easy to retrieve and read. Use tools that give you this freedom."
|
||||
link: https://stephanango.com/file-over-app
|
||||
---
|
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
title: "Google’s Nightmare ‘Web Integrity API’"
|
||||
date: "2023-11-23T02:58-08:00"
|
||||
tags: ["tech"]
|
||||
description: "Ben Wiser, et al., of Google, proposing a new Web Integrity standard: The trust relationship between websites and clients is frequently established through the collection and interpretation of highly re-identifiable information. However, the signals that are considered essential for these safety use cases can also serve as a near-unique fingerprint that can be used to […]⌥ Permalink"
|
||||
link: https://pxlnv.com/linklog/web-integrity-api/
|
||||
---
|
7
src/links/2023/2023-11-22-post-by-post-.md
Normal file
7
src/links/2023/2023-11-22-post-by-post-.md
Normal file
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
title: "Post by post."
|
||||
date: "2023-11-23T02:58-08:00"
|
||||
tags: ["tech", "social media"]
|
||||
description: "Life after Twitter remains, well, weird. Maybe this is better."
|
||||
link: https://ethanmarcotte.com/wrote/post-by-post/
|
||||
---
|
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
title: "Protomartyr Singer Joe Casey Talks Bernie, Detroit, and Hyperexploitation of Musicians"
|
||||
date: "2023-11-23T02:58-08:00"
|
||||
tags: ["music", "politics"]
|
||||
description: "Detroit-based rock band Protomartyr has carved out a dedicated cult following over the past ten years. The group — comprising guitarist Greg Ahee, bassist Scott Davidson, drummer Alex Leonard, and singer and lyricist Joe Casey <20><><EFBFBD><EFBFBD><EFBFBD> has released six albums and one EP, all of which have enjoyed widespread critical praise for their intense, melodic, […]"
|
||||
link: https://jacobin.com/2023/07/protomartyr-joe-casey-bernie-detroit-hyperexploitation-musicians/
|
||||
---
|
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
title: "Where Are the AI Skepticism Stories?"
|
||||
date: "2023-11-23T04:02-08:00"
|
||||
tags: ["tech", "shortlist"]
|
||||
description: "Note: I wrote this before news broke about Sam Altman’s ouster from OpenAI. The industry to which I kind of, sort of belong is an odd beast. Everybody’s looking for a story, but the incentives and professional conditions often keeps them from seeing one that’s staring them in the face. What gets covered, and what doesn’t, has always confused me in this way. There appears to be so much low-hanging fruit that no one bothers to pick."
|
||||
link: https://freddiedeboer.substack.com/p/where-are-the-ai-skepticism-stories?publication_id=295937&post_id=138840957&isFreemail=true&r=1o96ly
|
||||
---
|
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
title: "Will Browsers Be Required By Law To Stop You From Visiting Infringing Sites?"
|
||||
date: "2023-11-23T02:58-08:00"
|
||||
tags: ["tech", "politics"]
|
||||
description: "Mozilla’s Open Policy & Advocacy blog has news about a worrying proposal from the French government: In a well-intentioned yet dangerous move to fight online fraud, France is on the verge of forcing browsers to create a dystopian technical capability. Article 6 (para II and III) of the SREN Bill would force browser providers to create […]"
|
||||
link: https://www.techdirt.com/2023/08/04/will-browsers-be-required-by-law-to-stop-you-from-visiting-infringing-sites/
|
||||
---
|
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
title: "Popular Pages with Eleventy and Fathom Analytics"
|
||||
date: "2023-11-25T18:20-08:00"
|
||||
tags: ["development"]
|
||||
description: "How I`m using the Fathom API to show a list of popular blogs posts in my Eleventy site"
|
||||
link: https://rknight.me/popular-pages-with-eleventy-and-fathom-analytics/
|
||||
---
|
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
title: "The Tension and Future of Jamstack"
|
||||
date: "2023-11-27T20:59-08:00"
|
||||
tags: ["development"]
|
||||
description: "A post by Zach Leatherman (zachleat)"
|
||||
link: https://www.zachleat.com/web/jamstack-future/?utm_source=changelog-news
|
||||
---
|
7
src/links/2023/2023-11-29-algorithmic-conveyor-belts.md
Normal file
7
src/links/2023/2023-11-29-algorithmic-conveyor-belts.md
Normal file
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
title: "Algorithmic conveyor belts"
|
||||
date: "2023-11-29T17:58-08:00"
|
||||
tags: ["tech", "social media"]
|
||||
description: "Algorithms Hijacked My Generation really hit me. It explains a lot of things happening in the world that I can sense, but not put together into a system, into the single term of algorithmic conveyor belt:"
|
||||
link: https://derekkedziora.com/notes/20231129180549
|
||||
---
|
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
title: "Algorithms Hijacked My Generation. I Fear For Gen Alpha."
|
||||
date: "2023-11-29T17:58-08:00"
|
||||
tags: ["tech", "social media"]
|
||||
description: "Freya India explains how algorithms act as conveyor belts, transporting girls to dark and extreme places"
|
||||
link: https://www.afterbabel.com/p/algorithms-hijacked-my-generation
|
||||
---
|
7
src/links/2023/2023-11-29-losing-the-imitation-game.md
Normal file
7
src/links/2023/2023-11-29-losing-the-imitation-game.md
Normal file
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
title: "Losing the imitation game"
|
||||
date: "2023-11-29T18:14-08:00"
|
||||
tags: ["tech", "development"]
|
||||
description: "AI cannot develop software for you, but that`s not going to stop people from trying to make it happen anyway. And that is going to turn all of the easy software development problems into hard problems."
|
||||
link: https://jenniferplusplus.com/losing-the-imitation-game/
|
||||
---
|
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
title: "The Mirai Confessions: Three Young Hackers Who Built a Web-Killing Monster Finally Tell Their Story"
|
||||
date: "2023-12-01T19:22-08:00"
|
||||
tags: ["tech", "crime"]
|
||||
description: "Netflix, Spotify, Twitter, PayPal, Slack. All down for millions of people. How a group of teen friends plunged into an underworld of cybercrime and broke the internet—then went to work for the FBI."
|
||||
link: https://www.wired.com/story/mirai-untold-story-three-young-hackers-web-killing-monster/
|
||||
---
|
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
title: "Multifaceted: the linguistic echo chambers of LLMs"
|
||||
date: "2023-12-02T20:10-08:00"
|
||||
tags: ["tech"]
|
||||
description: "I’ve spent more time than I’d care to admit staring at LLM output. And there’s something that I’ve noticed: LLM-generated prose has a kind of… vibe."
|
||||
link: https://blog.j11y.io/2023-11-22_multifaceted/
|
||||
---
|
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
title: "Samsung's End-of-Cycle Laundry Machine Song Has a Surprising Backstory"
|
||||
date: "2023-12-03T20:23-08:00"
|
||||
tags: ["tech"]
|
||||
description: "Ever wonder what song plays at the end of a Samsung washer/dryer cycle? It`s a 19th-century melody by an Austrian composer."
|
||||
link: https://www.hunker.com/13771126/samsung-laundry-song
|
||||
---
|
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
title: "You don't need JavaScript for that"
|
||||
date: "2023-12-05T02:19-08:00"
|
||||
tags: ["development"]
|
||||
description: "A collection of bad practices in HTML, copied from real websites."
|
||||
link: https://www.htmhell.dev/adventcalendar/2023/2/
|
||||
---
|
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
title: "omg.lol: an oasis on the internet"
|
||||
date: "2023-12-11T02:38-08:00"
|
||||
tags: ["tech"]
|
||||
description: "If you enjoyed the old web of the 90s and 00s; if you love tinkering with your personal website; or if you just like quirky, fun things on the internet, you will love this."
|
||||
link: https://blakewatson.com/journal/omg-lol-an-oasis-on-the-internet/
|
||||
---
|
7
src/links/2023/2023-12-11-a-rant-about--technology-.md
Normal file
7
src/links/2023/2023-12-11-a-rant-about--technology-.md
Normal file
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
title: "A Rant About “Technology”"
|
||||
date: "2023-12-12T00:31-08:00"
|
||||
tags: ["tech"]
|
||||
description: "Ursula K. Le Guin on the presence of technology in her work"
|
||||
link: https://www.ursulakleguin.com/a-rant-about-technology
|
||||
---
|
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
title: "CSS and JavaScript as first-class citizens in Eleventy"
|
||||
date: "2023-12-11T17:47-08:00"
|
||||
tags: ["css", "javascript", "development"]
|
||||
description: "When building websites on Eleventy, we often have to decide how to deal with the CSS and JavaScript post-processing. Recently I came up with a solution, finally making CSS and JS first-class citizens in Eleventy for me."
|
||||
link: https://pepelsbey.dev/articles/eleventy-css-js/
|
||||
---
|
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
title: "How Marketing Changed OOP In JavaScript"
|
||||
date: "2023-12-13T02:08-08:00"
|
||||
tags: ["development"]
|
||||
description: "Discussing the decisions surrounding JavaScript prototypes, the article by Juan Diego Rodriguez scrutinizes their origin, examines missteps in the design, and explores how these factors have affected the way we write JavaScript today."
|
||||
link: https://www.smashingmagazine.com/2023/12/marketing-changed-oop-javascript/
|
||||
---
|
7
src/links/2023/2023-12-12-the-virus-inside-your-tv.md
Normal file
7
src/links/2023/2023-12-12-the-virus-inside-your-tv.md
Normal file
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
title: "The Virus Inside Your TV"
|
||||
date: "2023-12-12T13:40-08:00"
|
||||
tags: ["tv", "culture"]
|
||||
description: "Abortion activism, anti-gun propaganda, and HIV awareness, smuggled onto prime time."
|
||||
link: https://slate.com/culture/2023/12/melrose-place-abortion-art-gala-committee-mel-chin.html
|
||||
---
|
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
title: "Meta Doesn't Need ActivityPub to Slurp Up Your Data"
|
||||
date: "2023-12-15T13:11-08:00"
|
||||
tags: ["tech", "social media"]
|
||||
description: "Threads started to test ActivityPub integration this week and the fediverse is losing it`s collective mind going into overdrive to block them in any way possible so they can`t grab all your data. Here`s the fun part: they can already do that and they definitely don`t need ActivityPub to do that."
|
||||
link: https://rknight.me/meta-doesnt-need-activitypub-to-slurp-up-your-data/
|
||||
---
|
Some files were not shown because too many files have changed in this diff Show more
Reference in a new issue