BIP-39 mnemonic is the standard for creating deterministic wallets, but in my opinion, they are better suited for short-term use only. Relying on them for long-term storage or backup may not be the most secure or reliable option. 
 Ideally, these mnemonics would be stored in a secure, off-grid safe on a titanium plate sealed with a tamper-evident label. In reality, though, I bet most…

 Recently I made a URL shortener web App jsr:@indirect/short that is using JSR only (i.e. npm free) and could be setup on the Deno Delpoy Playground with just a one-liner: 
 1 export { default } from 'jsr:@indirect/short@1' 
 or in command-line: 
 1 deno serve -N --unstable-kv jsr:@indirect/short@1
 I wondered how much effort it would take to make it deployable to Cloudflare…