import ExternalNav from "@/components/externalnav"; import ILink from "@/components/ilink"; import fs from 'fs/promises'; import path from 'path'; import matter from 'gray-matter'; import Link from 'next/link'; import { Separator } from "@/components/ui/separator"; type PostMeta = { title: string; createdAt: string; slug: string; }; async function getAllPosts(): Promise { const postsDirectory = path.join(process.cwd(), 'content/essays'); const files = await fs.readdir(postsDirectory); const posts = await Promise.all( files .filter(file => file.endsWith('.mdx')) .map(async (file) => { const fullPath = path.join(postsDirectory, file); const fileContents = await fs.readFile(fullPath, 'utf8'); const { data } = matter(fileContents); return { title: data.title, createdAt: data.createdAt, slug: file.replace(/\.mdx$/, ''), }; }) ); return posts.sort((a, b) => new Date(b.createdAt).getTime() - new Date(a.createdAt).getTime()); } export default async function Home() { const posts = await getAllPosts(); return (
{/* Intro */}

Elias Almqvist

CEO of{" "} Exa Laboratories (YC S24) . Building energy-efficient chips for AI training & inference.

I'm a dropout, autodidactic polymath, and this is my digital notebook. Everything here is written by me, and everything here is my own opinion, philosophical beliefs, or just random thoughts that have no real-world application. They are not intended to be taken at face value, as they are nothing but a medium for me to personally reflect on my own thoughts as a therapeutic exercise, or just for fun.

Based in Silicon Valley (San Francisco Bay Area), United States. Originally from Mölndal/Gothenburg, Sweden.

This entire website is open source. You can find the source code here: github.com/almqv/wych.dev.

{/* Essays */}

Essays

    {posts.map((post) => (
  • {post.title}

  • ))}
); }