Comment by Cyphase

Comment by Cyphase 5 days ago

2 replies

Not too short or it's too easy to guess.

The app might be stateless right now (I haven't checked); if it is, adding a URL shortener will break that.

Aspos 5 days ago

How about zipping the state string or, even better, putting it into a KV storage thus exchanging it for a 10-char string.

  • taejavu 5 days ago

    Correct me if I'm wrong but zipping it would mean it would be encoded in a way that wouldn't be usable as a URL. The state is currently compressed and URL encoded via lz-string fwiw/in case you're curious.