2013年5月11日 星期六

說句話吧


「有一些教訓沒辦法教,只有自己經歷過才會懂。」
- 小腳ㄚ刻印

站上台吧!
說句話吧!
做自己吧!

--

我沒想到這麼快有機會站在眾人的面前表現。

「妳沒有感受到我的緊張。」

那是因為我戴上名為沉著冷靜的面具。

殊不知我無時無刻感受到面具下的真實自我,
那是一種無法形容的激烈感受,
情緒彷彿如巨浪般的震盪不安,
內心像是要撕裂般的難以控制,
真實不斷的敲打著我的潛在人格,從開始的一刻持續不安到達尾聲。

拿著麥克風的手在顫抖,
發出聲音的喉嚨在乾澀,
思考邏輯的腦袋在停機,
只能藉由會後的些微酒精來平撫自己。

--

其實我沒這麼勇敢,
其實我渴望更多讚賞,
其實我想要證明自己。

我覺得我能做得更好,下次一定!

hacktw2013

2013年5月9日 星期四

VIM 指令

VIM Command

mode
[ESC] - normal mode
i - insert mode
R - replace mode
r - replace one charactor
v - visual mode
V - visual line mode

move
[h],[j],[k],[l] - 左 下 上 右
gg - go top of the file
G - go bottom of the file
H - go top of current screen
M - go middle of current screen
L - go last line of current screen
^ - go beginning of the line
$ - go end of the line
b - backwards a word
w - forward a word
f{c} - find next char {c} in current line

edit
[C] - change to the end of the line
u - undo
D - delete from current char to the end
dw - delete word from current char to the end
diw - delete whole word
di> - delete whole string inside <>
di) - delete whole string inside ()
dt{c} - delete to {c} in the line
Ctrl-r - redo

indent
> - increase indent
< - decrease indent
V - visual line mode
{n}> - increase {n} times indent
{n}< - decrease {n} times indent

paste
v - visual mode
y - yank
p - paste
V - visual line mode
[Shift]-[Insert] - Paste by PuTTY (in insert mode!)

find
/{str}[ENTER] - find {str}
n - find next
[SHIFT]-n - find previous

replace
V - visual line mode
:s/{find_str}/{replace_str} - search and replace in current line
:%s/{find_str}/{replace_str} - search and replace in all line

tab view
:tabe {file} - open {file} in new tab
gt - next tab

split view
:split {file} - open {file} in horizontal split window
:vsplit {file} - open {file} in vertical split window
[CTRL]-w [UP]/[DOWN]/[LEFT]/[RIGHT] - focus another window
[CTRL]-w [|] - enlarge current vertical window
[CTRL]-w {n} [|] - set current vertical window to {n} column
[CTRL]-w [=] - tile window
[CTRL]-w [-] - enlarge current horizontal window

others
[CTRL]-p - auto complete
[g][f] - get file which filename is under cursor

commands
:n - go line number n
:set nonu - set no number
:set nu - set number on
:set paste - set paste mode