Skip to content

Instantly share code, notes, and snippets.

View typester's full-sized avatar
😇

Daisuke Murase typester

😇
View GitHub Profile
use Test::More tests => 1;
ok("ok");
;;; -*- 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.
;;; -*- 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.
#!/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' });
#!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;
#!/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';
--- 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
use strict;
use warnings;
use HTTP::Request::Common;
use LWP::UserAgent;
use YAML;
use JSON::Syck;
my $ua = LWP::UserAgent->new;
package Service::Chat;
use Moose;
extends 'Kamaitachi::Service';
with qw/Kamaitachi::Service::AutoConnect
Kamaitachi::Service::Broadcaster
/;
sub on_invoke_send {
#!/usr/bin/env perl
use strict;
use warnings;
use FindBin::libs;
use Kamaitachi;
{
package Service::Echo;