oops
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
Nightmare.action('inputTextarea', function(selector, text, done) { | |
this.evaluate_now(function(selector, text) { | |
document.querySelector(selector).value = text; | |
}, done, selector, text); | |
}); |
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
(define (get-next-state state-transition-table current-state input) | |
(nth (car (nth (state-transition-table) (+ 1 current-state))) ; リストの0番目は入力リストだから | |
(get-list-index (car (state-transition-table)) input))) | |
(define (state-transition-table-of-number) | |
(list (list #\0 #\1 #\2 #\3 #\4 #\5 #\6 #\7 #\8 #\9 #\.) | |
(cons (list () 1 1 1 1 1 1 1 1 1 () ) #f) | |
(cons (list 1 1 1 1 1 1 1 1 1 1 2 ) #t) | |
(cons (list 2 2 2 2 2 2 2 2 2 2 () ) #t))) |
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
cmd /c "mklink ~\.gitconfig ~\dotfiles\root\.gitconfig" | |
wget -uri http://pscx.codeplex.com/downloads/get/923562 -OutFile tmp.msi; Start-Process tmp.msi |
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
;<s_expression> ::= <atomic_symbol> | |
; | "(" <s_expression> "." <s_expression> ")" | |
; | <list> . | |
; | |
;<_list> ::= <s_expression> <_list> | |
; | <s_expression> . | |
; | |
;<list> ::= "(" <s_expression> <_list> ")" . | |
; | |
;<atomic_symbol> ::= <letter> <atom_part> . |
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
# install basic packages | |
sudo apt-get install / | |
git | |
curl | |
wget | |
vim | |
zsh | |
# Google日本語入力 |
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
======================================================================== | |
BYTE UNIX Benchmarks (Version 5.1.3) | |
System: ubuntu: GNU/Linux | |
OS: GNU/Linux -- 3.19.0-15-generic -- #15-Ubuntu SMP Thu Apr 16 23:32:37 UTC 2015 | |
Machine: x86_64 (x86_64) | |
Language: en_US.utf8 (charmap="UTF-8", collate="UTF-8") | |
CPU 0: Intel(R) Core(TM) i7-2600K CPU @ 3.40GHz (6784.6 bogomips) | |
x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET | |
CPU 1: Intel(R) Core(TM) i7-2600K CPU @ 3.40GHz (6784.6 bogomips) |
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
# Operator Type Precedence Description | |
# ’ ’ primary 5 Literal string | |
# " " primary 5 Literal string | |
# [ ] primary 5 Character class | |
# . primary 5 Any character | |
# (e) primary 5 Grouping | |
# e? unary suffix 4 Optional | |
# e* unary suffix 4 Zero-or-more | |
# e+ unary suffix 4 One-or-more | |
# &e unary prefix 3 And-predicate |