Skip to content

Instantly share code, notes, and snippets.

@tomcha
tomcha / yapc_tote.pl
Created August 20, 2015 16:45
yapc_tote.pl
#!/usr/bin/env perl
use strict;
use warnings;
my @array = ( 115, 117, 112, 112, 111, 114, 116, 101, 100, 32, 98, 121, 32, 76, 105, 118, 101, 115, 101, 110, 115, 101, 32, 73, 110, 99, 46, 10);
for my $c (@array){
printf "%c",$c;
}
@tokuhirom
tokuhirom / epoch
Created May 16, 2014 09:52
The epoch command
#!/usr/bin/env perl
use strict;
use warnings;
use Time::Piece;
use Pod::Usage;
&main; exit;
sub show($) {
my $time = shift;