2009年2月28日 星期六

電影:激辯風雲 The Great Debaters

丹佐華盛頓執導、主演的激辯風雲,還不知道劇情就讓人想要一窺究竟。另一位得獎演員 Forest Whitaker 則是飾演年輕辨論學員的父親。

在 1930 年代黑人仍然倍受歧視的年代,就連受教育的學校也都受到黑白分明的區隔限制。Toulson (丹佐華盛頓主演) 除了一方面參與政治上反歧視的演說與聚會外,也在黑人學校 Wiley 大專負責指導學校的辯論隊,而受到歧視的先天種族差異,卻也成為 Wiley 大專辯論隊的動力來源之一。

除了劇中黑人遭受的迫害與生活上與白人發生糾紛總是吃虧之外,戲中的辯論主題,也圍繞著壓迫、歧視、不平等法律等等面向,讓人更能感受理解 Wiley College 辯論隊的那份捨我其誰的自信與雄心壯志,最終以 Wiley College 與哈佛大學辯論隊的對決做為結束。隨後揭開了 Wiley College 連續十年辯論冠軍的輝煌歷史。

本片也入圍金球獎的最佳影片。

精彩對白(Nice quotes):

"An unjust law is no law at all."
不公平的法律根本就不是法律。

We do what we have to do in order to do what we want to do.
要做想做的事情之前,代價是要先做一些必要的努力與犧牲。

Who is the judge?
The judge is God.
Why is he God?
Because he decides who wins or loses. Not my opponeent.
Who is your opponent?
He does not exist.
Why does he not exist?
Because he is a mere dissenting voice of the truth I speak!

誰是裁判?
是神!
為何是神?
神決定每個人的輸贏,而非我的對手。
誰是你的對手?
他並不存在。
為何他不存在?
因為對手只是我陳述事實的異議。

相信這部片對台灣人在面對國內司法正義不公,以及國際上遭受打壓與歧視的重重困難特別會有共鳴。

推薦指數: 8/10

相關連結:

The Great Debaters

The Great Debaters 維基百科

The Great Debaters IMDB

開眼電影 激辯風雲 The Great Debaters

相關文章:

電影:不能說的秘密

電影:刺客聯盟 Wanted(2008)

電影:300 壯士

電影:三國之見龍卸甲

電影:P.S. I Love You 我愛你

電影:科洛弗檔案

電影:功夫灌籃

電影:令人討厭的松子的一生

電影:翻滾吧!男孩

電影:X-Men The Last Stand

電影:企鵝寶貝

電影:碧海藍天

電影:金剛

電影:軍火之王

電影:Veronica Guerin

電影:The Skeleton Key,毒鑰

電影:Batman Begins

2009年2月10日 星期二

Windows gvim rc 與 Ubuntu 下的 vimrc 設定

新加一些自己需要的修改放在 ~\Program Files\Vim\_vimrc 裡


syntax on
set autoindent
" fonts 參數可以先在 GUI 編輯->設定字型後下 set gfn? 指令取得
set guifont=DFKai\-SB:h14:cCHINESEBIG5

" color patterns, 可以參考
" http://code.google.com/p/vimcolorschemetest/ 底下
" browse by file type 的部份取得 sample 檔,放在
" ~\Program Files\Vim\vimfiles\colors 中, 如 torte.vim 就是
colorscheme torte

set background=dark

" 256 colors
set t_Co=256

"initial window size
winpos 0 0
set columns=120
set textwidth=118
set lines=31
"or replace the above with the following for fullscreen
au GUIEnter * simalt ~x

"#按一次 Tab 縮四個空格
set tabstop=4

"#自動縮排時,一次縮四個空格
set shiftwidth=4

"#將 Tab 轉成空格
set expandtab

"#不顯示@
set display=lastline

"highlight for current search match
set incsearch

" tags search path
set tags=tags,../tags,../../tags,../../../tags

"keep columns when rows changed
set nosol

"搜尋時不管大小寫
set ignorecase
"當有大寫時才管大小寫
set smartcase

"help avoid hi-enter prompt
set cmdheight=1

"always have status line
set laststatus=2

" No backup files for gvim under windows
" set nobackup
" set nowritebackup
set noswapfile


Ubuntu 下的 vimrc 設定檔


set nocompatible

set history=800 " vim history buffer lines
set fileencodings=utf-8,big5,euc-jp,gbk,euc-kr,utf-bom,iso8859-1

" indent code differently based on file type
filetype plugin on
filetype indent on

set t_Co=256
syntax on

" Set to auto read when a file is changed from the outside
set autoread

"#按一次 Tab 縮四個空格
set tabstop=4

"#自動縮排時,一次縮四個空格
set shiftwidth=4

"#將 Tab 轉成空格
set expandtab

"#不顯示@
set display=lastline

"highlight for current search match
set incsearch
"highlight all matches for the pattern
set tags=tags,../tags,../../tags,../../../tags,../../../../tags,/home/sshuang/.vim/tags/tags,/usr/include/tags

" 顯示第幾列
set number

" 檢查拼字
"set spell
" 檢查拼字語系
"set spelllang=en

"keep columns when rows changed
set nosol

set autoindent smartindent "auto and smart indent
set smarttab "make and smarter
set backspace=eol,start,indent " allow backspacing over indent, eol, & start

" http://www.jukie.net/~bart/blog/vim-and-linux-coding-style, need fix!
" For Linux kernel specific highlighting
"syn match ErrorLeadSpace /^ \+/ " highlight any leading spaces
"syn match ErrorTailSpace / \+$/ " highlight any trailing spaces
"match Error80 /\%>80v.\+/ " highlight anything past 80 in red

"搜尋時不管大小寫
set ignorecase
"當有大寫時才管大小寫
set smartcase

"help avoid hi-enter prompt
set cmdheight=1

"always have status line
set laststatus=2

"在 vim 使用滑鼠
"set mouse=a

" Enrich status line, from
" http://www.packtpub.com/article/personalizing-vim?utm_source=rb_vim7.2_abr4_0510&utm_medium=content&utm_campaign=rahul
:set statusline=%F%m%r%h%w\ [FORMAT=%{&ff}]\ [TYPE=%Y]\ [ASCII=\%03.3b]\[HEX=\%02.2B]\ [POS=%04l,%04v]\ [%p%%]\ [LEN=%L]

" No backup files for gvim,
" http://thehumblecoder.wordpress.com/2006/08/08/vim-swap-and-backup-files/
" set nobackup
" set nowritebackup
" set noswapfile

" color files in ~/.vim/colors/railscasts.vim
colorscheme railscasts

" TagList settings,
" http://c9s.blogspot.com/2007/07/setting-up-ctags-gvim-in-windows.html
" http://vim-taglist.sourceforge.net/manual.html
let Tlist_File_Fold_Auto_Close = 1
let Tlist_Exit_OnlyWindow = 1
" let Tlist_Auto_Open = 1


nnoremap :TlistToggle


" 方便在 terminal 剪貼 windows/browsers 文字檔,保持排版
nnoremap :set paste


" 恢復 indent

nnoremap :set nopaste


" include path for standard include directories and files
set path+=/usr/include

" from http://janitor.kernelnewbies.org/ suggestions to edit linux kernel
" codes and dealing with patches
set backupcopy=auto,breakhardlink
map ^iSigned-off-by: Sheng Jih Huang ^
map! Signed-off-by: Sheng Jih Huang
let c_space_errors=1
highlight WhitespaceEOL ctermbg=red guibg=red
match WhitespaceEOL /\s\+$/

" ===============
" GUI Settings, gvim specific settings
" ===============
if has("gui_running")
"execute gui-only commands here.
" set height of window for your (17" LCD) Monitor
set clipboard=unnamed
set guioptions=amrb
else
endif

" vim in different OS
" or use :help 'some settings'
if has("win16") || has("win32") || has("win64")|| has("win95")
"always use gui vim in windows?
if has("gui_running")
"execute gui-only commands here.
"initial window size
winpos 0 0
set columns=120
set textwidth=118
set lines=31
"or replace the above with the following for fullscreen
au GUIEnter * simalt ~x
endif
" do windows things here
elseif has("unix")
" do linux/unix things here
endif

" from grep.vim
" You can map a key to invoke any of the above commands. For example, the
" following map invokes the :Grep command to search for the keyword under the
" cursor:
nnoremap :Grep


相關連結:

gvim

vim document:gui win32

vimrc 常用設定(問答)

Sample .gvimrc

gvim 設定

vim 的設定與一些快捷鍵

vim color scheme test

vim swap and backup files

https://github.com/vgod/vimrc

The ultimate Vim configuration - vimrc

The perfect .vimrc vim config file | Steve Francia's Blog

2009年2月7日 星期六

高腳蜘蛛 旯犽 拉牙


這隻台灣常見的昆蟲之一,俗稱旯ㄌㄚ/犽一ㄚ/的高腳蜘蛛,在陪伴我們三天後,終於還是難逃人類恐懼的魔手,如果要為他取個暱稱的話,我會叫他花花,因為他張開八腳貼在壁上時,全身就是花花的一節節斑紋。

CSI 犯罪現場照片鑑識看來,花花經歷了女高音尖叫、衛生紙球、雜誌、拖把、熱水等攻擊,死因是在浴室遭遇熱水攻擊。XD

其實旯犽是家裡的益蟲,主食是蟑螂,他並不會主動攻擊人類,只要你沒有直接接觸旯犽,就不會被他的酸性分泌物侵蝕受傷。當旯犽找不到蟑螂可以吃他就會主動離去。但是如果家中太多旯犽,也代表家裡很多蟑螂,要更努力打掃清潔囉。XD

相關連結:

白額高腳蛛

替旯犽向包公喊冤-白額高腳蜘蛛的習性與食性研究

家庭常見的蜘蛛 白額高腳蛛