當我聽說 Peter Jackson 版本的《 King Kong 》會有足足三個小時,我馬上起了一個疑問:是不是 PJ 力有不遞?「魔戒」系列是長篇連續小說,世界觀宏大,人物又多,用很多的篇幅去交代是無可厚非的事情,但《King Kong》故事並不複雜,為什麼仍
20051228網摘 – CSS3 Advanced Layout
聖誕古裝片
- 孽子的歎息 《無極》裏有同志味?
- 《無極》 Quote: 《無極》作為一套由中國第一大導演陳凱歌的作品,為人詬病的實在多得有點過分,但故事本身的創意和內容上的前設倒是值得一讚。
- A Chinese Tall Story 情癲大聖 Quote: 內裡只是一
Unix folklore: using multiple sync commands
There is persistent bit of folklore in the Unix world that you shoulddo several sync commands before shutting down or rebooting a Unixmachine. Even today, you'll see a lot of people following thisfolklore, generally using ' sync; sync; sync '.
People who do this irritate me, because they are doing it wrong and ina way that makes the whole folklore ineffectual.
The sync folklore dates from the very old days when Unix was primitiveand two things were true. First, the sync()
唱唱聖誕歌
今年聖誕節連續數天的假期,其實都是拍拍燈飾逛逛街這些「例行」動作,不過比較特別的是今年我參加了 GBA 的 Christmas Carol 團。
今次的 Christmas Carol 是蠻趕忙的,主要是沒有時間練習,因為 Chivas 和向古巨狂呼兩個 Show 令到 Simon (團長) 無暇出譜練習。

三字頭聽三字頭
A thought about free software licenses
It's recently occurred to me that one way to think about the GPLversus BSD/MIT licensing issue is that they are embodying twocompeting bits of psychology: people want to share their work and haveit widely used, and people don't like being taken advantage of.
(Although it may be surprising, there is quite a bit of evidence thatwe are in some sense wired to feel strongly about 'unfairness' and topunish it, even at a cost to our own interests. Psychologists havedone
讀書的時間和空間
災難
沒有禮物的聖誕,公眾假期,凌晨五點醒來,電腦突然開唔到機。打唔到俾人叫幫手。一個還未下定決心做論文的人突然被剝奪做論文的權利,情況馬上逆轉為搶救論文檔案,可謂冰火五重天。經自行查
火鳳燎原
Thinking about a closure confusion
Consider the following Python code, which is a very simplified versionof certain sorts of real code that people write:
ll = []for i in range(1,10): ll.append(lambda z: i+z)print ll[0](0), ll[8](0)
A lot of people writing Python code like this for the first timeexpect to see it print '1 9', when in fact it prints '9 9'.
What I think