《 黑 夜 之 神 》 系 列 ( 1 ) 之 Batman 殺 死 Joker



20世紀少年電影版

20th_Century_Boy_Movie_Part_1Poster

健次,文仔,吉常,落仔全部的真人版終於現身。

唐沢寿明、豐川悅司、常盤貴子再加黑木瞳,極喜歡的演員,演繹我極喜歡的漫畫,初看造型,已極之期待極之興奮。

一共分3集,噢,等到頸都長。

你沒看過20世紀少年?哎


我思故我在‥‥‥

下聯係‥‥‥

「I work then I sick. 」

妖。

一意孤行

補完軒轅劍第二篇及《發明工坊》。下週應該是最後一篇。寫法不是巿面上其它game評的路子,有時甚至不是玩家角度和經驗分享,每次花最多時間想的是「怎麼認識這個問題」,寫的時候比較累,但即使是有人不喜歡,我還是一

增村保造:《清作之妻》(Seisaku's Wife)


先前數位網友都認為增村保造《盲獸》是他的代表作. 雖然我很欣賞增村保造藝高人膽大, 但總覺得《盲獸》以故事取勝, 導演對「虐」、「美」的詮釋才是其次. 增村保造一向以前衛手法聞名影壇, 與負責編劇的新藤兼人的合
Continue reading...

這也是一個經典的瞬間


劉翔今天因傷退賽
相信很多人都會失望
畢竟過去幾年
他背負過太多中國人的希望
可惜希望越大
失望越大
我並沒有因為他的退出而難過
有時候
退出比死撐下去來得困難
也來得可貴
過去四年
劉翔由普通運動員變成中國體育的一個象徵

小狗小貓,我和伴侶

多年前在沙田某村屋住的時候已經開始喜歡狗隻,當時屋主養了兩頭狗。回家時總是衝出來飛上身跟你玩,不認識牠們一定嚇親。成隻大唐狗跳上來喎,就是這樣反而覺得他們傻得可愛。

幾年間住的地方及生活方式似乎還未準備

Continue reading...

The problem with using tuples and lists to hold structures

If you need to hold several bits of data about something in Python, it'sawfully tempting to just put everything into a tuple or a list and bedone with it; it's certainly the easiest way, and so crops up often .

(I've read that that Pythonic way to decide between a list and a tupleis whether or not the data is all the same type, in which case you use atuple, or different types, in which case you use a list. I don


謝安琪訪問全文

星期日明報幾乎刊出了全文,真是感激。謝安琪當然有型,但她不是有型咁簡單;其實她答問題時並非立場和態度先行地大鑼大鼓,只是她慢慢說自己的考慮和分析,都有理由,而且站在矛盾尖銳的交叉地帶,於是不會被擊倒。

Thinking about the best way to handle command registration

Suppose that you have a Python utility program that does a number ofrelated things; it's invoked as ' program command .... ', and decideswhat to do based on what the command is. The obvious way to implementthis in Python is to have a function for each command and a top-leveldispatcher that looks up the function to call for each command andpasses it the arguments to process. Clearly you don't want to hard-codethis in the dispatcher function in a big