Help for this page

Select Code to Download


  1. or download this
    my $time_ = localtime;
    my $date = ParseDate($time_);
    ...
    $unix_date =~ s/ //g;
    $ash_{date} = $unix_date;
    $ash_{temp} = gct();
    
  2. or download this
    use POSIX 'strftime';
    $ash_{date} = strftime $d_format[0], localtime;
    
  3. or download this
    my %cash = build_comp_hash();
    push @aoh, { %cash };
    graphable_arrays();
    
  4. or download this
    push @aoh, { build_comp_hash() };
    
  5. or download this
    @xdata = ();
    @ydata = ();
    ...
        }
        else{}
       }
    
  6. or download this
    @xdata = ();
    @ydata = ();
    ...
        push @xdata, $hash->{ date };
        push @ydata, $hash->{ temp };
        }