KunMing Trip
I'll be in KunMing next week with all my Zorpia colleges. it would be a nice trip. :)
Labels: trip
Perl is not the whole part of life. I know!
Labels: trip
sub test_body : Local {
my ($self, $c) = @_;
$c->res->body(\*STDOUT);
print "a\n";
print "b\n";
}Labels: Catalyst
mysql> select TIMESTAMPDIFF(DAY, '1900-01-01', '1998-05-01');
+------------------------------------------------+
| TIMESTAMPDIFF(DAY, '1900-01-01', '1998-05-01') |
+------------------------------------------------+
| 35914 |
+------------------------------------------------+use Date::Calc qw/Delta_Days/;
print Delta_Days(1900,1,1, 1998,5,1);
^Z
35914Labels: MySQL