dump.
2 dumps
AllNotesCodeLinksIdeas
IdeaAug 23

AI auto-categorisation on paste

When you paste content into Dump, use a small local model to auto-detect the dump type — note, code, or link — and suggest tags automaticall…

#ai#feature#ux#roadmap
CodeAug 19

Optimistic UI with useTransition

'use client';

function DeleteButton({ id }: { id: string }) {
  const [isPending, startTransition] = useTransition();

  return (
    <button
      disabled={isPending}
      onCl…
#react#server-actions#ux