Pastoid

The page you are looking at now is at this URL: http://pastoid.com/bba

This paste was last updated on October 8, 2008 at 6:00 pm.

Pasted Coderaw

<?php
 
function create_uuid() {
 
   // copied from http://no.php.net/manual/fr/function.uniqid.php#65879
   // The field names refer to RFC 4122 section 4.1.2
 
    return sprintf('%04x%04x-%04x-%03x4-%04x-%04x%04x%04x',
        mt_rand(0, 65535), mt_rand(0, 65535), // 32 bits for "time_low"
        mt_rand(0, 65535), // 16 bits for "time_mid"
        mt_rand(0, 4095),  // 12 bits before the 0100 of (version) 4 for "time_hi_and_version"
        bindec(substr_replace(sprintf('%016b', mt_rand(0, 65535)), '01', 6, 2)),
            // 8 bits, the last two of which (positions 6 and 7) are 01, for "clk_seq_hi_res"
            // (hence, the 2nd hex digit after the 3rd hyphen can only be 1, 5, 9 or d)
            // 8 bits for "clk_seq_low"
        mt_rand(0, 65535), mt_rand(0, 65535), mt_rand(0, 65535) // 48 bits for "node"
    );
}
 
 
if ($argc != 2 || in_array($argv[1], array('--help', '-help', '-h', '-?'))) {
?>
 
  Usage:
  <?php echo $argv[0]; ?> <plugin name>
 
  <name> is the name of the preformatted Habari plugin you want
 
<?php
} else {
$myplugin_uuid = create_uuid();
$myplugin = <<<EOT
 
class $argv[1] extends Plugin
{
  function info()
  {
    return array(
      'url'=>'',
      'name'=>'$argv[1]',
      'license'=>'Apache License 2.0',
      'author'=>'',
      'version'=>'0.1',
    );
  }
}
 
function action_update_check() {
  Update::add( '$argv[1]', '$myplugin_uuid',  \$this->info->version ); );
  }
EOT;
 
echo $myplugin;
 
}
?>
 
 

Toggle wordwrap

Referring DomainHits
Unknown Referer 127
pastoid.com 11
www.google.co.jp 1
search.live.com 1
Is this paste spam?
<Hide