This file contains hidden or 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
| hello |
This file contains hidden or 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
| # http://devongovett.wordpress.com/2009/04/14/multiple-firefox-mac/ | |
| do shell script "/Applications/Firefox.app/Contents/MacOS/firefox-bin -no-remote &> /dev/null &" |
This file contains hidden or 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/env perl | |
| use Web::Query; | |
| use DateTime; | |
| my $dt = DateTime->now; | |
| my $url = | |
| sprintf 'http://www.jacom.co.kr/cgi-pub/calendar/wwwcal.cgi?year=%d&month=%d', | |
| $dt->year, $dt->month; | |
| my $ret = 0; |
This file contains hidden or 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/env perl | |
| use 5.010; | |
| use utf8; | |
| use Encode qw/encode_utf8 decode_utf8/; | |
| use Test::More; | |
| use Test::Differences; | |
| use Mandatory qw/elem list/; | |
| binmode STDOUT, ':encoding(utf-8)'; |
This file contains hidden or 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/env perl | |
| use 5.010; | |
| use strict; | |
| use warnings; | |
| use Data::Dumper; | |
| use Test::More; | |
| # (a1 a2 a3)(b4)(c5 c6) | |
| =pod |
This file contains hidden or 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/env perl | |
| use 5.010; | |
| use utf8; | |
| use strict; | |
| use warnings; | |
| use autodie; | |
| use Getopt::Long::Descriptive; | |
| use Carp qw/croak/; |
This file contains hidden or 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
| vnoremap <Leader>k :!knutize<cr> |
This file contains hidden or 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/env perl | |
| # Thanks to @JEEN_LEE! | |
| use strict; | |
| use warnings; | |
| use 5.010; | |
| use utf8; | |
| binmode STDOUT, ':encoding(utf8)'; |
This file contains hidden or 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/env perl | |
| use 5.010; | |
| use utf8; | |
| use strict; | |
| use warnings; | |
| use autodie; | |
| use Getopt::Long::Descriptive; | |
| use URI; |