Skip to content

Instantly share code, notes, and snippets.

View Shinpeim's full-sized avatar

Shinpei Maruyama Shinpeim

View GitHub Profile
#!/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);
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]|$)))
Ja En Hoge
ほげ foo llllll
ふふぁ bar ccccccc
@Shinpeim
Shinpeim / god.md
Created January 17, 2012 17:16 — forked from kkosuge/god.md
Godのかんたんなつかいかた

godのインストール

sudo gem install god

godの起動

$ god -c god.rb
# -*- 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("意識")
$ ./m user@host # user@hostというディレクトリを(なければ)作ってそこにuser@hostをsshfsでマウント
$ ./u user@host # user@hostをアンマウントして user@hostというディレクトリを消す
ぼくは ~/mount に置いて使ってる
@Shinpeim
Shinpeim / kimoi.pl
Created April 11, 2012 17:49
きもい.pl
use strict;
use warnings;
use Data::Dumper;
my @arr = qw/ran miki suu dia/;
my %hash = map {$_ => "hoge", "piyo"} @arr;
warn Dumper \%hash;
package Acme::UuuuNyaaa;
use strict;
use warnings;
sub new{
my $class = shift;
my $self = bless {}, $class;
return $self;
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 == .)
@Shinpeim
Shinpeim / Imager
Created April 13, 2012 03:23 — forked from kkosuge/Imager
sudo apt-get install libjpeg-dev libtiff-dev libpng-dev giflib-dev libttf-dev libfreetype6-dev
sudo cpan -i Imager