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
毎度ありがとうございます | |
いっぱい売れました | |
はい、えーと。 | |
いっぱいサインもしました | |
あの、まだ、買ったけど、まだサイン貰ってないって人はですね |
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
あっちいったり、こっちいったりしてるのをみる | |
で、この先だけみてると、どっちがいいのか分からないんですけど | |
でも、冷静に考えてみると、その | |
振り子の先だけみてると、全体がどっちいくかわからないですよね | |
で、たとえば集中と分散でも、 |
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
LISPっぽい、言語っぽい言語。。。を創ったんですね | |
そしたら、なんか非常に人気が出てですね | |
練馬文化会舘に何百人も集まるような、非常に優れた言語として評価が高いんですけども | |
あれ?もしかしたら、言語デザイナとしては、Paul Grahamより上じゃね?とか | |
まぁ、思ったりもしてですね |
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
使ってて気分がいいと | |
プログラミング言語が、プログラムを書いてるあなたを、 | |
Welcom = 歓迎 しているように感じる言語 | |
そういう言語がですね、生き延びる余地がですね | |
今後、100年にもあるんじゃないかなぁと、いう風に思います |
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 | |
require "yaml" | |
unless ARGV.size == 2 | |
puts "USAGE: #$0 OMEGAT LOGA" | |
exit | |
end |
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
function! s:Oritatami(pat) | |
redir => ilist | |
execute ':silent! global/' . a:pat . '/:echo line(".")' | |
redir END | |
let lnums = map(split(ilist, '\n'), 'str2nr(v:val)') | |
if empty(lnums) | |
echomsg printf('pattern "%s" is not found.', a:pat) | |
return | |
endif |
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
if executable('knife') | |
function! s:upload_cookbook(...) abort | |
let path = expand('%:p') | |
if path !~# '/cookbooks/[^/]\+/.\+' | |
return | |
endif | |
let cookbooks = [get(a:, 1, '')] | |
let m = matchlist(path, '^\(.\+/cookbooks/[^/]\+\)/\([^/]\+\)/') | |
let cb_path = m[1] |
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
function tm_kill_other_windows() { | |
local pat=$1 | |
local windows="`tmux list-windows -F '#{window_index}:#{window_name}-#{window_active}'`" | |
[ `echo "${windows}" | wc -l | tr -d ' ' | grep '^1$'` ] && return | |
local cur_win_nbr=`echo "${windows}" | grep '\-1$' | grep -o '^[0-9]\+'` | |
windows=`echo "${windows}" | grep -v "^${cur_win_nbr}:"` | |
windows=`echo "${windows}" | grep "^[0-9]\+:.*${pat}.*-[01]$"` |
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
function tm_kill_other_windows { | |
pat=$1 | |
windows="`tmux list-windows -F '#{window_index}:#{window_name}-#{window_active}'`" | |
[ `echo "${windows}" | wc -l | tr -d ' ' | grep '^1$'` ] && return | |
cur_win_nbr=`echo "${windows}" | grep '\-1$' | grep -o '^[0-9]\+'` | |
windows=`echo "${windows}" | grep -v "^${cur_win_nbr}:"` | |
windows=`echo "${windows}" | grep "^[0-9]\+:.*${pat}.*-[01]$"` |
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: just send keys against tmux | |
let s:tmux = {} | |
let s:tmux.last_cmd = '' | |
function! s:tmux.is_installed() | |
call system('which tmux') | |
return v:shell_error == 0 | |
endfunction | |
function! s:tmux.is_running() |
OlderNewer