Skip to content

Instantly share code, notes, and snippets.

@seabre
Created September 19, 2011 21:21
Show Gist options
  • Save seabre/1227648 to your computer and use it in GitHub Desktop.
Save seabre/1227648 to your computer and use it in GitHub Desktop.
Random Password Generator (Bookmarklet Version)
(function(){var a=[["0","1","2","3","4","5","6","7","8","9"],["a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z"],["A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z"]];pass="";for(var b=8;b>0;b--){var c=a[Math.floor(Math.random()*a.length)];pass+=c[Math.floor(Math.random()*c.length)]}prompt("Random Password:",pass)})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment