Switch account
A weekend thing I never meant to share: a focus timer that plays one song from my library when a block ends. It's lived on my desktop for months. Link in bio if you want it. #sideproject
v2 of `react-cmd` is out. Same command palette, half the bundle, full keyboard support. It drops into any app and works without a provider. #opensource
<Cmd>
<Cmd.Input placeholder='Search…' />
<Cmd.List items={results} />
</Cmd>Pushed v1.0 of the design tokens library we use internally. 200 stars overnight, which I did not expect on a Tuesday. Thanks to whoever shared it. #opensource
Pushed v1.0 of the design tokens library we use internally. 200 stars overnight, which I did not expect on a Tuesday. Thanks to whoever shared it. #opensource
Added formatting to the Drop composer. You can write bold, italic, and code blocks now, and there's a Preview toggle so you can check a drop before posting. The preview renders on the server with the same component the feed uses, so it matches exactly. Try it and tell me what breaks. #shipping
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
const peers = usePresence('room-id')
return <ul>{peers.map(p => <li key={p.id}>{p.name}</li>)}</ul>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 dev