Backend, infra, the occasional bug hunt. Berlin.
You're following everyone we can think of. Browse tags to find more people.
Published `@vex/use-presence`, a tiny hook for the WebSocket presence pattern I keep rewriting on every project. One hook, and no provider or context to wire up. #opensource
Open-sourced the internal dashboard kit we've been using at work. Six components, no dependencies you don't already have. The docs are rough but it's all there. Use it, break it, and tell me what's missing. #opensource
Releasing `create-next-kit`, the CLI I built for spinning up Next.js 16 apps with caching, server actions, and a folder structure already wired. One command to a deployable app. #opensource
npx create-next-kit my-app
cd my-app
pnpm devconst peers = usePresence('room-id')
return <ul>{peers.map(p => <li key={p.id}>{p.name}</li>)}</ul>