- 監督:久宝貞
- 脚本:スカルファロ眞理子
- 声優:枝幸啓、真船ヤヨイ
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「あー、バーグ (語尾↑) ね… うん、バーグけっこうやばい系かも」 | |
A「あ、まじ。やっぱやばいんだ。やばい系かぁ」 | |
B「なんかサーバーの負債抱えちゃってさ、5 億ぐらい積まれてたけど、人月かさんじゃってほら、田中もバーグだからさ」 | |
A「あ、田中バーグだっけ。フリーだと思ってた」 | |
B「あー、うん。前はフリーだったけど今バーグらしい」 | |
A「あ、まじ。田中バーグか。やばいじゃん」 | |
B「バーグまじやばいからね。今人足りなくて電話きまくって」 | |
A「まじかぁ。バーグ好きだったけどなぁ。前、渋谷のほら、なんだっけ、前に B といった店」 | |
B「えっと、釜本?」 |
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 ruby | |
# -*- coding: utf-8 -*- | |
# | |
# Tumblr photos backup | |
# | |
# | |
require 'rubygems' | |
require 'json' | |
require 'open-uri' | |
require 'fileutils' |
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
# RubyのHTML/XMLパーサー、nokogiriの間違えやすい問題について | |
# Nokogiri関数に渡すXMLデータのどこかのタグの属性値に"HTML"という文字が含まれていると、 | |
# HTML文書として解釈され、<html><body>というのが勝手に挿入される。そのため本来マッチするはずのXPathがマッチしなくなったりする。 | |
# | |
# Nokogiri::XMLかNokogiri::HTMLを使いましょう! (当たり前) | |
# でも属性値にHTMLという文字が含まれてるだけでHTML文書として解釈するのはまずい気がする。。 | |
# | |
# ruby 1.9.3p0 (2011-10-30 revision 33570) [x86_64-darwin10.8.0] | |
# nokogiri (1.5.0) | |
require 'nokogiri' |
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 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-p125.tar.gz | |
tar -xvzf ruby-1.9.3-p125.tar.gz | |
cd ruby-1.9.3-p125/ | |
./configure --prefix=/usr/local | |
make | |
make install |
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 'open-uri' | |
require 'nokogiri' | |
require 'MeCab' | |
class WordsArray < Array | |
def nouns | |
select{ |w| | |
w.is_noun | |
} |
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
source 'http://rubygems.org' | |
gem 'sunzi' | |
gem 'rake' | |
gem 'fog' |
修飾語は 2 人で考え、名詞を http://tily.jottit.com/好きな言葉 から借りた。
下記のようなスクリプトを用意した。
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 python | |
import os | |
import urllib2 | |
import time | |
START = 20000 | |
MAX_NUMBER = 22000 | |
def download(bid): |
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
" tmux will only forward escape sequences to the terminal if surrounded by a DCS sequence | |
" http://sourceforge.net/mailarchive/forum.php?thread_name=AANLkTinkbdoZ8eNR1X2UobLTeww1jFrvfJxTMfKSq-L%2B%40mail.gmail.com&forum_name=tmux-users | |
if exists('$TMUX') | |
let &t_SI = "\<Esc>Ptmux;\<Esc>\<Esc>]50;CursorShape=1\x7\<Esc>\\" | |
let &t_EI = "\<Esc>Ptmux;\<Esc>\<Esc>]50;CursorShape=0\x7\<Esc>\\" | |
else | |
let &t_SI = "\<Esc>]50;CursorShape=1\x7" | |
let &t_EI = "\<Esc>]50;CursorShape=0\x7" | |
endif |