t/README.md
2022-10-26 10:05:16 +03:00

831 B

Tahnaroskakori

Paste = tahna. Bin = roskakori. Pastebin = tahnaroskakori!

This is a pastebin that compresses the text contents and adds them to the end of the URL in the hash part. This way no contents need to be sent to the server and the pastebin can just be a static HTML/JS website.

The compression is using brotli-wasm in the browser. The compressed data is then encoded with Base66 to be URL safe (percent encoding would just grow the length).

The size that can be pasted is dependent on the URL before the hash. URLs have a 2048 character length limit, so the paste is limited to only generate URLs that fit in that limit.

Demo: https://nicd.gitlab.io/t/

Thanks to daarb from the Elixir Discord for the idea and finding brotli-wasm!