JSFiddle - React, Tailwind, and code Playground
HTML
<script src="https://raw.github.com/gist/1378281/9290bceb61ed31f87712ff97ffa7844967698d67/base62.js"></script>
<button>Random Pastebin</button>
<p></p>
CoffeeScript
$('button').click ->
base10id = Math.floor(4913393007957 * Math.random())
base62id = base62(base10id)
url = "http://pastebin.com/#{base62id}"
window.open url
$(p).html url
$('button').click()