| [reply] |
Thanks your reply.. But I coudn't see a solution for delivery date there.
| [reply] |
| [reply] |
the approximate delivery date from usps
I order online very often, and I must say for the USPS, approximate is the right term to describe their tracking system. I've checked USPS tracking many times. Sometimes it said the package was already delivered, and it still didn't come for a week. Other times, it said delivery was next week, and it came that day. In comparison, UPS tracking is right on time, almost to the minute. So for the USPS, tracking is essentially useless, they need some Perl programmers and some scanners. :-)
| [reply] |
use DateTime::Event::Random;
use strict;
my $dt;
if (exists (USPS)) { # they could be bankrupt
do {
$dt = DateTime::Event::Random->datetime( after => DateTime->now )
+;
} until $dt->day_of_week != 7; # sunday
} else {
print "Never, sorry\n";
}
fnord | [reply] [d/l] |
| [reply] [d/l] |
perl -e 'print int(rand()*1000) . " days";'
;-) | [reply] |