--- import { getCollection } from "astro:content"; import PageLayout from "@/layouts/Base.astro"; import PostPreview from "@/components/blog/PostPreview.astro"; import SocialList from "@/components/page/SocialList.astro"; import { sortMDByDate } from "@/utils"; import { Image } from "astro:assets"; const MAX_POSTS = 10; const allPosts = await getCollection("post"); const visiblePosts = allPosts.filter((post) => !post.data.hidden); const allPostsByDate = sortMDByDate(visiblePosts).slice(0, MAX_POSTS); ---

/

DX Engineer with a passion for developer tooling that advances an open web. Currently working at Stablecore with other projects in my spare time. This site catalogs my various writings and interests. See what I'm up to now!

Or anywhere with my handle @stevedylandev

Posts

Extras