炙手可熱!賈樟柯連載之一

本地三名青年學者(你話呀?)周某、謝某、鄧某攜手,訪問大熱(我話既)導演賈樟柯,終於問世!《世界》賽後檢討、賈樟柯思考整理、中外評論狀況,一網打盡。訪問由鄧某整理,後經謝某剪輯,編輯周某(他被迫推上這

高速單車

在 Pose Show 看到這麼一個「玩具」,很像《 Steamboy 》裏主角自建的小交通工具,只是非蒸氣驅動,據說速度還不錯。

SMTP IP firewall stats at June 18th, 2005

We maintain a filter list of bad hosts and network areas that can'ttalk to our SMTP port at all; their SMTP packets are silentlydiscarded. The filter list is reinitialized each time the serverreboots, currently once a week. During the week we add various spamsources and high volume sources of other rejections to the filters ona dynamic basis.

As the server does its weekly reboot at 6 AM Sunday morning, right nowis a great time to pull a top-N summary from the kernel's


星際快閃,玩轉銀河系

hg2g

正當災難電影大講地球快將毀滅之下的人如何自處,《星際快閃黨 The Hitchhiker’s Guide to the Galaxy 》就從毀滅開始,地球在片頭就因為阻頭阻勢而被炸毀。然而,終結只是另一個開始,眼界就地球擴闊到宇宙,翻著「銀河系自由行手冊」玩轉


廣告時間:7月一日,你在那?



Originally uploaded by chi_hung .


中國人本03



Originally uploaded by chi_hung .

作品125 號 劉建明 1988.5 雲南昆明

中國人本04



Originally uploaded by chi_hung .

作品264號 黃慶軍 2002.3 河南濟源

The problem with CPAN (and other similar systems)

At one level, CPAN is a great thing: people really like having a simpleway of installing Perl packages (and a big archive of them). It's sucha good idea that it's being copied over and over: Python's distutils,Ruby's RubyGems, the R statistic package's CRAN, and no doubt others.

But CPAN and things like it have a problem: they're a package managementsystem. Or, to be more detailed, they're another package


365加美味 Greasemonkey User Script

這是我自己「手痕」弄的,就是將 Clip Blog 的連結,變成 bookmark 到 365key del.icio.us ,之前也有類似的 User Script ,我不過是將其合在一起,因為兩邊的 Bookmark 我也用有。

連結: 365 + del.icio.us bloglines Greasemonkey User Script


Iterator & Generator Gotchas

Python iterators are objects (or functions, using some magic) thatrepeatedly produce values, one at a time, until they getexhausted. Python introduced this general feature to efficientlysupport things like:

for line in fp.readlines():    ... do something with each line ...

Without iterators, .readlines() would have to read the entire fileinto memory, split it up into lines, and return a huge list; now, thiscode only has one line in memory at any given