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.
my $now = time();
print "right now: " . localtime($now) . "\n";
my $future = $now + 60*60; # add an hour
print "an hour from now: " . localtime($future) . "\n";
my $past = $now - 60*60; # minus an hour
print "an hour ago: " . localtime($past) . "\n";
perl -e '$|=$i=1;print" oo\n<|>\n_|_";x:sleep$|;print"\b",$i++%2?"/":"_";goto x;'
cp /usr/share/zoneinfo/America/Los_Angeles /etc/localtime
OR
cp /usr/share/zoneinfo/PST8PDT /etc/localtime
perl -e '$|=$i=1;print" oo\n<|>\n_|_";x:sleep$|;print"\b",$i++%2?"/":"_";goto x;'