pstbin is a client-side pastebin inspired by ix.io. Paste data lives in the URL fragment; nothing is stored in a database.
curl works via a stateless encoder that compresses the body and returns a self-contained URL — that isn't storage, it's encoding.
$ echo hello | curl -sF 'paste=<-' https://paste.aaqa.dev/
https://paste.aaqa.dev/#v1/z/…Highlights:
- No DB, no KV, no Blob — the URL is the paste.
curl -F 'paste=<-'support, ix.io-style, plus a browser UI and an offline CLI helper.- Configurable branding via env vars for anyone who wants to fork and self-host.
Source: github.com/aaqaishtyaq/pstbin