This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/perl | |
use strict; | |
use warnings; | |
print "Hello, Gist.vim!\n"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/perl | |
use strict; | |
use warnings; | |
print "Hello, Gist.vim!\n"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/perl | |
package MyBase; | |
use Mouse; | |
has something => ( | |
isa => 'Str', | |
is => 'ro', | |
default => 'foo', | |
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package GourmetClub::Base::Controller::Resource; | |
use strict; | |
use warnings; | |
use parent qw(Catalyst::Controller); | |
use MRO::Compat; | |
use Digest::SHA1 qw(sha1_base64); | |
__PACKAGE__->config( | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use strict; | |
use warnings; | |
use utf8; | |
use Test::More tests => 8; | |
use Digest::SHA1 qw(sha1_base64); | |
BEGIN { use_ok 'Test::WWW::Mechanize::Catalyst', 'MyApp' } | |
BEGIN { use_ok 'MyApp::Controller::Admin' } | |
BEGIN { use_ok 'MyApp::Schema' } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/perl | |
use strict; | |
use warnings; | |
use FindBin; | |
use Web::Scraper; | |
use YAML; | |
use URI; | |
my $file = shift; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/perl | |
# get_alphabets.pl | |
use strict; | |
use warnings; | |
use lib 'lib'; | |
use Geography::JapanesePrefectures; | |
use WebService::Simple; | |
use Data::Dumper; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/perl | |
# get_alphabets.pl | |
use strict; | |
use warnings; | |
use lib 'lib'; | |
use Geography::JapanesePrefectures; | |
use WebService::Simple; | |
use Data::Dumper; | |
use charnames ':full'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/perl | |
use strict; | |
use warnings; | |
use utf8; | |
use Web::Scraper; | |
use LWP::Simple (); | |
use YAML; | |
use URI; | |
binmode(STDOUT, ':utf8'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!perl | |
use strict; | |
use warnings; | |
use utf8; | |
use Text::MeCab::Dict; | |
use File::Basename; | |
use Path::Class; | |
use Carp qw(confess); | |
{ |
OlderNewer