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