Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
use Date::Parse;
use Time::Format;
$date = $time{'yyyy-mm-dd', str2time($date)};
#!perl
# "20050302" to "2005-03-02".
$date = '20050302';
$date =~ s/(\d{4})(\d{2})(\d{2})/$1-$2-$3/;
print "TIMTOWDTI: $date ;-)\n";