Source Code for Me (s-c.me)

Allows you to paste souce code to blogs! Adapted for Twitter! Here is Search Form in case you missed your code.
Code:
Selected Language:
Show Linenumbers:
Short link for Twitter:
HTML:

HTML view:

Copy Source | Copy HTML
  1. <script type="text/javascript">
  2. <!--
  3. function genpwd( len ) {
  4.   if (!len)
  5.       len = 8;
  6.  var pwd = "";
  7.  var chars = ['A','B','C','D','E','F','G','H','I','J','K','L','M','N','P','R','S','T','U','V','W','X','Y','Z','2','3','4','5','6','7','8','9'];
  8.  for ( var i =  0; i < len; i++ ) {
  9.       pwd += chars[ Math.floor((Math.random() * chars.length)) ];
  10.   }
  11.   return pwd;
  12. }
  13. </script>




Based on Manoli.Net's CodeFormatter. Made by Topbot (c) 2008-2012