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
/* | |
Do not change this file. | |
Generated from BridgeSupport. | |
*/ | |
#include "cocoa.h" | |
#import "UIKit/UIAccelerometer.h" | |
#import "UIKit/UIAccessibility.h" | |
#import "UIKit/UIAccessibilityAdditions.h" | |
#import "UIKit/UIAccessibilityConstants.h" | |
#import "UIKit/UIAccessibilityElement.h" |
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
#!/usr/bin/env bash | |
apt-get -y update | |
apt-get -y install build-essential zlib1g-dev libssl-dev libreadline5-dev libyaml-dev | |
cd /tmp | |
wget ftp://ftp.ruby-lang.org/pub/ruby/1.9/ruby-1.9.3-p194.tar.gz | |
tar -xvzf ruby-1.9.3-p194.tar.gz | |
cd ruby-1.9.3-p194/ | |
./configure --prefix=/usr/local | |
make | |
make install |
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
# | |
# zaw-src-cdd | |
# | |
# zaw source for cdd command | |
# | |
(( $+functions[cdd] )) || return | |
function zaw-src-cdd () { | |
if [ -r "$CDD_PWD_FILE" ]; then |
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
#!/usr/bin/env perl | |
use strict; | |
use warnings; | |
package A; | |
use Carp qw(cluck); | |
*name = sub { cluck 'no name' }; | |
package B; | |
use Sub::Name; |
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
javascript:(function() {var date=(new Date()); location.href='http://ja.wikipedia.org/wiki/'+(date.getMonth()+1)+'月'+date.getDate()+'日#.E8.A8.98.E5.BF.B5.E6.97.A5.E3.83.BB.E5.B9.B4.E4.B8.AD.E8.A1.8C.E4.BA.8B';})() |
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
#!/usr/bin/env perl | |
use strict; | |
use warnings; | |
use v5.14; | |
use IO::Socket::INET;sub empty_port () { | |
my $sock = IO::Socket::INET->new( | |
Prot => 'tcp', | |
Listen => 1, | |
(($^O eq 'MSWin32') ? () : (ReuseAddr => 1)), | |
); |
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 DBI; | |
use Path::Class; | |
use Test::mysqld; | |
my $mysqld = Test::mysqld->new( | |
my_cnf => { | |
'skip-networking' => '', | |
} | |
) or plan skip_all => $Test::mysqld::errstr; |
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
* 便所の光景 | |
額から胸へと、大きな弧を成し、身を反り出し、 | |
いちはやく唇が嘴へ、やや遅れて突き出た胸には、白い綿毛。 | |
エジプトの女王は、いまにも空へ舞い上がろうとしている。 | |
勇壮さでもって、きたるべき敗退の予感を押し隠す | |
戦士の瞳は、かすかに潤んでいる。 | |
地中海に散りばめられた宝石。 | |
蠅をとらえる。 | |
黒色の夜が空を千に裂いて、女たちに埋め込んでいく。 |
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
package main; | |
use strict; | |
use warnings; | |
package SemanticFalse; | |
use strict; | |
use warnings; | |
use overload bool => sub { | |
my $self = shift; |
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
~/.emacs.d/elisp | |
$ perlbrew install 5.14.1 | |
The given directory 5.14.1 is not a git checkout of perl repository. To | |
brew a perl from git, clone it first: | |
git clone git://github.com/mirrors/perl.git | |
perlbrew install perl | |