Skip to content

Instantly share code, notes, and snippets.

@mimonelu
Created January 11, 2015 11:59
Show Gist options
  • Select an option

  • Save mimonelu/e8553fcdc85b13a4a615 to your computer and use it in GitHub Desktop.

Select an option

Save mimonelu/e8553fcdc85b13a4a615 to your computer and use it in GitHub Desktop.
32 文字のパスワードを生成するブックマークレット
javascript:a="0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz_",b="";for(i=0;i<32;i++)b+=a[~~(Math.random()*a.length)];prompt(null,b);void(0);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment