Help for this page

Select Code to Download


  1. or download this
    my $newjobtime = $min % 10;
    
  2. or download this
    if ($hour = 1 or $hour = 9 or $hour = 17 or $hour >= 24) {
    
  3. or download this
    my $snowagerleft = ($hour + 8 - 1) % 8;
    if($snowagerleft) {
    ...
    else {
    # "steal your keep"
    }
    
  4. or download this
    if ($hour < 2) {
    my $newday;
    ...
    $newday = 24 - $hour;
    # ...
    }
    
  5. or download this
    my $newday = 24 - $hour;
    $newday = ($newday + 2) % 24;
    
  6. or download this
    #!/usr/bin/perl
    
    ...
        )
        . end_table
        . end_html;