--- import { compareDesc, format, parseISO } from 'date-fns' import { toZonedTime } from 'date-fns-tz' import BaseLayout from '../layouts/BaseLayout.astro'; import HR from "../components/HR.astro"; import MDXCallout from '../components/mdx/MDXCallout.astro'; import { getCollection, getEntry } from 'astro:content'; import sfjson from "../data/sharefeed.json"; import type { ShareFeedEntry } from "../lib/utils"; const entries = sfjson.sharefeed .sort((a:ShareFeedEntry,b:ShareFeedEntry) => compareDesc(new Date(a.posted), new Date(b.posted))) .filter((entry: ShareFeedEntry) => !(entry.draft)) ---

Sharefeed

Sometimes, I come across other people's blog posts, articles, or other resources that I find interesting. This is my space to share those resources with you.

Every link includes a brief note or summary that I wrote up describing that specific entry and why I find it interesting or noteworthy.

"interesting" does not necessarily mean "good", "factual", or even "ethical". Sometimes, I may link something here because I don't like it and want to debunk it later. In these cases, I will make sure to specify that fact. Be sure to keep an eye on my journal or blog when I post one of those.

If you want to subscribe to this feed on your RSS reader, click the rss button.