Skip to content

Instantly share code, notes, and snippets.

View typester's full-sized avatar
😇

Daisuke Murase typester

😇
View GitHub Profile
(defun hilight80 ()
(interactive)
(font-lock-add-keywords nil
'(("^[^\n]\\{80\\}\\(.*\\)$" 1 font-lock-warning-face t))))
cpanm (App::cpanminus) 1.6007 on perl 5.016003 built for i686-linux
Work directory is /home/typester/.cpanm/work/1364539395.3410
You have make /usr/bin/make
You have LWP 6.05
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.
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[$|++];