Skip to content

Instantly share code, notes, and snippets.

View typester's full-sized avatar
😇

Daisuke Murase typester

😇
View GitHub Profile
typester@www5070u:~/dev/irssi-lingr$ cpanm -v --installdeps .
You have make /usr/bin/make
You have /usr/bin/wget
You have /bin/tar: tar (GNU tar) 1.22
Copyright (C) 2009 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
Written by John Gilmore and Jay Fenlason.
export CC=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc
export CFLAGS="-arch armv7 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.1.sdk"
export CXX=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/g++
export CXXFLAGS="-arch armv7 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.1.sdk"
export CPP=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/cpp
export AR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/ar
export NM=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/nm
HISTFILE="$HOME/.zhistory"
HISTSIZE=1000000
SAVEHIST=1000000
autoload -U compinit
compinit
setopt always_last_prompt
setopt append_history
$ plenv install 5.14.3
Install 5.14.3 to /Users/typester/.plenv/versions/5.14.3
Fetching 5.14.3 as /var/folders/5w/kb7t836n407c_zfs635kwlqw0000gn/T/YTU2ojeOHA/perl-5.14.3.tar.bz2
rm -f config.sh Policy.sh
/usr/bin/perl -Mlib=/Users/typester/homebrew/Cellar/plenv/1.0.8/bin/../local//lib/perl5/ /Users/typester/homebrew/Cellar/plenv/1.0.8/bin/../local/bin/patchperl
Can't open perl script "/Users/typester/homebrew/Cellar/plenv/1.0.8/bin/../local/bin/patchperl": No such file or directory
Installation failure. at /Users/typester/homebrew/Cellar/plenv/1.0.8/bin/../share/plenv/lib/perl5/Perl/Build.pm line 262.
use strict;
use warnings;
use 5.014;
use Data::Validator;
state $rule = Data::Validator->new(
foo => 'HashRef',
)->with('StrictSequenced');
use strict;
use warnings;
use Test::More;
ok 1; # 1はOKなはず!
done_testing;
use strict;
use warnings;
use lib 'lib';
package Role {
use Any::Moose '::Role';
sub hoge {
__PACKAGE__;
}
use strict;
use warnings;
local *STDOUT;
eval q[$|++];
diff --git a/lib/UV.pm b/lib/UV.pm
index f69c916..38e8e3a 100644
--- a/lib/UV.pm
+++ b/lib/UV.pm
@@ -6,6 +6,9 @@ our $VERSION = '0.1';
XSLoader::load __PACKAGE__, $VERSION;
+use constant READABLE => 1;
+use constant WRITABLE => 2;
From fa0bb8f87527722fd92f0205a2aa01fdeb40c68b Mon Sep 17 00:00:00 2001
From: Daisuke Murase <[email protected]>
Date: Thu, 10 May 2012 10:26:40 +0900
Subject: [PATCH] close STDIN to pass 01_example.t
---
t/01_example.t | 2 ++
1 file changed, 2 insertions(+)
diff --git a/t/01_example.t b/t/01_example.t