dump.
4 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
NoteAug 22

Product roadmap — Q3 decisions

Key outcomes from the roadmap session: • Mobile app deferred to Q4 — not enough bandwidth • Focus this quarter: core UX polish and performan…

#roadmap#meetings#product
IdeaAug 20

Keyboard-first navigation

Every action should be reachable without a mouse: • Cmd+K → command palette • J / K → navigate between dumps • E → edit focused dump • D → d…

#ux#accessibility#feature
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