Ubuntu's attention to detail in init.d scripts

# /etc/init.d/exim4 stopStopping MTA: exim4.# pidof exim43559# grep PIDFILE /etc/init.d/exim4 | sed 1qPIDFILE="/var/run/exim4/exim.pid"# ls -ld /var/run/exim4ls: /var/run/exim4: No such file or directory# mount | fgrep /var/runvarrun on /var/run type tmpfs (rw

20061201網摘 – 長尾理論

Web

Blog


歌名:7030d2

早前與朋友msn,他是喜歡做音樂的。之後我用了一首demo與他交換了(聽),他的作品未有正式出版,只是收收埋埋。得他同意後,第一時間放在raido與大家分享。

歌名:7030d2 (其實佢係未改名的)
作者: 石秀禾

影藝散場



香港影藝戲院結束,我這個澳門觀眾不免有點失落。

畢竟我在這戲院看過生命中最重要的一場電影,對這地方不免另有一種感情。

這兩天讀到戲院結束的新聞,媒體都不免會說她最興盛的時期是播放日本電影《情書》一映二百多

How Python parses indentation

One of the interesting things about Python for compiler geeks is that itis a partially implicit context language, in that line indentation issignificant. Implicit context languages been out of favour for a verylong time, and most parsing techniques these days are geared towardsstream oriented grammars.

(By 'implicit context languages' I mean ones where state changes likeentering and exiting blocks are implicit in the difference betweenlines, such as different indentation levels. By contrast, streamoriented languages use explicit markers for such state changes, like


二百萬與 RSS

最近微軟發表的網誌研究發現 香港有二百萬 blogger ,其中:

(受訪者)認為至於最令人討厭的地方,網民指不知道網誌何時更新、內容乏味或無聊、對內容可靠性存疑,均會令他們生厭。

只說「不知道網誌何時更新」這一項,這證明


這時才是天星


圖片來自梁寶〈回憶拆動天星動土〉,kith拍攝。


天星停航那天,傍晚去了。一直坐在搞音樂會的朋友附近。大約到八點多左右,忍不住離開了。主要是因為那裡有(起碼)兩種情感在混合著,一方是縱橫懸掛著的數千張a4白紙
Continue reading...

自問自答

「你近排有咩感情煩惱呀?」

「我既感情煩惱係我一d感情煩惱都冇。」


o係零晨4點鐘呢一刻,我仲未執好行李,亦未做flight preparation。

阿姆斯特丹既氣溫大約係3至10度,我唔鍾意冬天,我唔想去咁遠既地方,甚至唔想離開屋企。

明報斑駁日常(四五六)

這是四週前的文章,兩周前的過幾天再貼。

描寫失物

有些事情適合白描,因為本源不可囊括,借代成為最基本的修辭,數落的清單只能選擇行政風格,地圖也只是舉隅。艾柯一本正經地調侃,製作1:1之帝國地圖如何不可能—

Turning off HTTP basic authentication in urllib

Python's urllib module convenientlyhandles a great many bits of fetching URLs for you, including HTTP basicauthentication. Unfortunately it does this by pausing everything to 'askthe user for the required information on the controlling terminal' (tomore or less quote from the documentation). This is generally not themost useful behavior in the world, and can even be rather disconcerting.

(A more sensible default behavior would have been to either raise anexception or return a HTTP 'authentication required' status.)

As a