I recently wanted to show the "up time" for a script in "nice" units. ApproxTime below is the result.
use warnings;
use strict;
printf "%9d seconds is about %s\n", $_, ApproxTime ($_)
for 4, 250, 1.5e4, 4e5, 3e6, 12e6, 1.5e8;
sub ApproxTime {
my ($period) = @_;
my @periods = (
['seconds', 180, 60],
['minutes', 240, 60],
['hours', 48, 24],
['days', 16, 7],
['weeks', 10, 4.3482143],
['months', 30, 12],
['years'],
);
while ($periods[0][1] && $period > $periods[0][1]) {
$period /= $periods[0][2];
shift @periods;
}
$period = int $period;
return "$period $periods[0][0]";
}
Prints:
4 seconds is about 4 seconds
250 seconds is about 4 minutes
15000 seconds is about 4 hours
400000 seconds is about 4 days
3000000 seconds is about 4 weeks
12000000 seconds is about 4 months
150000000 seconds is about 4 years
True laziness is hard work
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.