Ja | En | Hoge |
---|---|---|
ほげ | foo | llllll |
ふふぁ | bar | ccccccc |
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
#!/usr/bin/env perl | |
use strict; | |
use warnings; | |
use IO::File; | |
use LWP::Simple; | |
use AnyEvent; | |
use AnyEvent::HTTP; | |
use Digest::SHA1 qw/sha1_hex/; | |
my $content = get(shift); |
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 Regexp::Assemble; | |
my $ra = Regexp::Assemble->new; | |
$ra->add( '^9m[^0-9a-zA-Z]' ); | |
$ra->add( '[^0-9a-zA-Z]9m$' ); | |
$ra->add( '^9m$' ); | |
$ra->add( '[^0-9a-zA-Z]9m[^0-9a-zA-Z]' ); | |
print $ra->re; #(?-xism:(?:[^0-9a-zA-Z]9m(?:[^0-9a-zA-Z]|$)|^9m(?:[^0-9a-zA-Z]|$))) |
godのインストール
sudo gem install god
godの起動
$ god -c god.rb
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
# -*- coding: utf-8 -*- | |
require "curses" | |
Curses::init_screen | |
max_y = Curses::stdscr.maxy | |
Curses::cbreak | |
max_y.downto(1) do |y| | |
Curses::clear | |
Curses::setpos(y - 1 , 0) | |
Curses::addstr("意識") |
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
$ ./m user@host # user@hostというディレクトリを(なければ)作ってそこにuser@hostをsshfsでマウント | |
$ ./u user@host # user@hostをアンマウントして user@hostというディレクトリを消す | |
ぼくは ~/mount に置いて使ってる |
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 Data::Dumper; | |
my @arr = qw/ran miki suu dia/; | |
my %hash = map {$_ => "hoge", "piyo"} @arr; | |
warn Dumper \%hash; |
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
package Acme::UuuuNyaaa; | |
use strict; | |
use warnings; | |
sub new{ | |
my $class = shift; | |
my $self = bless {}, $class; | |
return $self; |
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
a b c d e f g h i のうちどれかが肉まん | |
あんまんであることが確定したものは "." と表記する | |
if ([a b c] == [d e f]) | |
". . . . . . g h i" | |
if (g == h) | |
". . . . . . . . i" | |
else | |
". . . . . . g h ." | |
if (g == .) |
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
sudo apt-get install libjpeg-dev libtiff-dev libpng-dev giflib-dev libttf-dev libfreetype6-dev | |
sudo cpan -i Imager |