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
| use Test::More tests => 1; | |
| ok("ok"); |
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
| ;;; -*- coding: utf-8; mode: emacs-lisp; -*- | |
| ;;; alc.el | |
| ;; Author: Daisuke Murase <typester@cpan.org> | |
| ;; Keywords: alc | |
| ;; This file is free software; you can redistribute it and/or modify | |
| ;; it under the terms of the GNU General Public License as published by | |
| ;; the Free Software Foundation; either version 2, or (at your option) | |
| ;; any later version. |
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
| ;;; -*- coding: utf-8; mode: emacs-lisp; -*- | |
| ;;; dopplr.el | |
| ;; Author: Daisuke Murase <typester@cpan.org> | |
| ;; Keywords: dopplr | |
| ;; This file is free software; you can redistribute it and/or modify | |
| ;; it under the terms of the GNU General Public License as published by | |
| ;; the Free Software Foundation; either version 2, or (at your option) | |
| ;; any later version. |
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 strict; | |
| use warnings; | |
| use Config::Pit; | |
| use Net::Growl; | |
| use WWW::Mechanize; | |
| my $conf = pit_get('outputz.com', require => { key => 'your outputz secret key' }); |
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
| #!perl | |
| use strict; | |
| use Test::More tests => 4; | |
| BEGIN { use_ok("Text::AutoLink") } | |
| my $original = <<EOS; | |
| <html><body><a href="http://search.cpan.org">http://search.cpan.org</a></body></html> | |
| EOS | |
| my $auto = Text::AutoLink->new; |
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 strict; | |
| use warnings; | |
| use FindBin::libs; | |
| use YAML; | |
| use Sniffer::RTMP; | |
| my $dev = $ARGV[0] or die 'require device name'; |
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
| --- flex_sdk_3.2.0.3958_mpl 2008-12-05 15:56:19.000000000 +0900 | |
| +++ flex_sdk_3.2.0.3958 2008-12-05 15:56:25.000000000 +0900 | |
| @@ -3,6 +3,10 @@ | |
| aasdoc.bat | |
| acompc | |
| acompc.bat | |
| +adl | |
| +adl.exe | |
| +adt | |
| +adt.bat |
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
| use strict; | |
| use warnings; | |
| use HTTP::Request::Common; | |
| use LWP::UserAgent; | |
| use YAML; | |
| use JSON::Syck; | |
| my $ua = LWP::UserAgent->new; | |
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
| package Service::Chat; | |
| use Moose; | |
| extends 'Kamaitachi::Service'; | |
| with qw/Kamaitachi::Service::AutoConnect | |
| Kamaitachi::Service::Broadcaster | |
| /; | |
| sub on_invoke_send { |
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 strict; | |
| use warnings; | |
| use FindBin::libs; | |
| use Kamaitachi; | |
| { | |
| package Service::Echo; |