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
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. |
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
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 |
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
HISTFILE="$HOME/.zhistory" | |
HISTSIZE=1000000 | |
SAVEHIST=1000000 | |
autoload -U compinit | |
compinit | |
setopt always_last_prompt | |
setopt append_history |
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
$ 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. |
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 5.014; | |
use Data::Validator; | |
state $rule = Data::Validator->new( | |
foo => 'HashRef', | |
)->with('StrictSequenced'); |
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 Test::More; | |
ok 1; # 1はOKなはず! | |
done_testing; |
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 lib 'lib'; | |
package Role { | |
use Any::Moose '::Role'; | |
sub hoge { | |
__PACKAGE__; | |
} |
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; | |
local *STDOUT; | |
eval q[$|++]; |
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
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; |
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
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 |