如果‧愛 – 糖衣包裝

perhapslove

看《如果‧愛》是帶著一定的期望,主要是因為預告片的十字街頭,和在製作特輯聽到張學友的強勁 Head Tone,所以心想或許不錯吧?這幾年來外國有一些出式的音樂劇《Moulin Rouge》和《Chicago》,都令人印象深刻,港產片久旱未逢歌舞,不


讀九把刀的〝功夫〞


第一次讀九把刀的小說,〝功夫〞吸引我的,是披著武俠小說的外衣。

我對武俠這種類型甚感興趣,也很想知道網絡作家如何處理武俠。

讀了一半,心想:此君有意顛覆,〝功夫〞不是純粹的武俠小說。小說厚達385頁,其實

新年快樂,或最後的時光

以前唸「文學與哲學」,有一節導修是看托爾斯泰的《伊凡.伊力奇之死》。小說講守財奴伊凡.伊力奇如何得了絕症之後,在死亡的影響下,將自己平生的各種污垢,吝嗇、自私、高傲等等,掙扎洗去,最後得到豐盛的結束。

新一年,開工!

元旦假期,我沒有太強烈的放假心情,當然也不會有工作的熱情,只是以順應自然的方式度過這一天。

元旦早上與太太重溫了周星馳的“西遊記之仙履奇緣”,這段緣份是上天注定的,大哂!

下午在重溫小脂的新書,真的要動筆

Universities are peculiar places

In particular, universities have a computing environment that is morepeculiar than I think a lot of people realize (sometimes even peopleinside universities, because from some angles it is very easy tomiss). I wrote about one example of this (and the practical effects ithas) back in UniversityFirewalls .

One of the ways that they are peculiar, a way that I think is at thecore of a lot of things, is this:

In most parts of most companies, communicating with the rest of thecompany is


06 新年快樂!

又踏入新一年!回顧 05 年,我看多了,寫多了,明白多了!下一年繼續努力!也希望香港 Blogosphere 繼續健康成長!

Weekly spam summary on December 31st, 2005

This week we received 12,270 email messages from 159 different IPaddresses. Our SMTP server handled 31,972 sessions from 2,643different IP addresses. Session volume is down from last week , which is a relief, although it'snot back down to the historical levels yet.

However, connection volume has not dropped substantially from last week : 260,000 connections from at least 53,760 different IPaddresses,


斷背山


2005年最後一小時讀完短篇小說“斷背山”,充滿驚喜。

這個故事又剛陽又溫柔,兩個男人的同性之愛既赤裸又婉轉,情節簡單得不能再簡單但張力十足,小說的場景鄉土味濃厚卻跟故事散發的氣息相結合,李安已將之拍成

再見2005年,再見!

這一年對我來說是最特別的,工作上,苦苦等了幾年,終於還是過了今年的一大難關。

這一年特別苦,也特別難忘,身體和心靈前所未有的脆弱,在職場上做得最差也許負了很多人,寫了四百幾天的小說連載也叫做“去日苦多”

A logical consequence of def being an executable statement

I've mentioned before that in Python, def is actually an executablestatement (in FunctionDefinitionOrder ). A logical consequences of thisis that default values for function arguments are evaluated only once,when the def runs.

I say this because expressions generally get evaluated when any Python statement runs, so the expressions in things like ' deffoobar(a, b=greeble(c), d=None): ' are not being an exception. Theexception would be if they were not evaluated then and were instead