難易度高め(だからどうした
- 卵 5個
- 塩コショウ 適量
- みじん切りにしたパセリ
- 牛乳少々 (Optional)
| #!/bin/bash | |
| # Usage: ./make_iTunesPlus.sh hoge.wav foo.wav ... | |
| PRE_IFS=$IFS | |
| IFS=$'\n' | |
| for song in $@; do | |
| echo "Processing: ${song}" | |
| filename=$(basename $song) | |
| afconvert $song $filename.caf -d 0 -f caff --soundcheck-generate |
| data Edible = 🍚 | 🐟 | 🍣 deriving (Show) | |
| gohan = repeat 🍚 | |
| fish = repeat 🐟 | |
| f:: Edible -> Edible -> Edible | |
| f 🍚 🐟 = 🍣 | |
| sushiZip = zipWith f gohan fish |
| class Array | |
| def pop # Overrides original Array class | |
| "🍺" # Just Beer | |
| end | |
| end | |
| beerstack = Array.new | |
| loop do | |
| print beerstack.pop |
| PROMPT="%B%{${fg[blue]}%}%(5~.%-2~/%{${fg[cyan]}%}(ry%{${fg[blue]}%}/%2~.%~)%(!.#.$) %{${reset_color}%}%b" |
| #!/bin/bash | |
| opp() | |
| { | |
| read lr | |
| case $lr in | |
| 1) read card; read slot;; | |
| 2) read slot; read card;; | |
| esac | |
| } |