前世

看回中五時的畢業照片,

彷彿是前世的事。








8年了。

芝華士後記

chivasgba

前兩天提過星期六晚去了參加 芝華士903友情夾gig音樂會 ,雖然今次的演出時間很小,只有大約一、兩分鐘,但感覺也很不錯。今次的曲目是〈小玩意〉,我們伴隨林海峰一起出唱,前半首以 A capella 形式唱出,後半 Band 加入。

如果


下次不敢了

從來都眼淺,

看這戲的時候,

眼淚嘩啦嘩啦的流,

因為有太多「么心么肺」的場景。

-----------------------------------------------------

光仔:「小姐,散場勒

What Python threads are good for

Because of the sometimes much-maligned Global Interpreter Lock, purePython code itself can't run simultaneously on multiple CPUs. So whatshould you use Python threads for?

The real use for Python threads is turning synchronous functions inextension modules into asynchronous things that don't delay your mainprogram. Often these functions have no asynchronous equivalents (unlikenetwork IO), so it is either use threads or have your main programdelayed. This works for sufficiently compute-intensive functions as wellas functions, like socket.


好野,我輸了(修訂版)

好囉。 這個網站 ,的資料同報導,多過我呢度囉。
大家可以成日去睇囉。 佢地日日update囉。d基礎理論資料(政治哲學本位)在底部。 我又同人開拖囉。
推介:1.〈 眼睛、菲傭、「和平理性」及其他 〉;
2.〈「 歡迎爭取普選/

同樣美麗的星期日


(圖:均為 江記 拍)








阿麥書房坐滿了,可見以後發佈會都是夾份搞比較好,正所謂一枝竹仔易折彎。謝謝來的朋友,當晚氣氛那麼好,應該可以有更較好的公開談話,可惜時間不夠。我總想聽到很多聲音。老師的記憶錯漏百出,
Continue reading...

美麗的星期日

星期日,隧巴上層透明像魚缸
窗外之物游來游去。
細膩的陽光盛在枝椏裡,這麼安寧

顯示屏幕默然,畏於多言
渴望血腥的頭條廁身於路人腋下
隧道呀我們以綿延細窄著稱的管道

竟於週日暢通。游入陌生的子宮
我懵懂如未開眼的貓

悲苦小劇場

世貿期間,將不斷送上作為無聊美點的小劇場,敬請留意。 世貿不死,小劇場不息!各方好友就當為世貿犧牲一下!


好得之男仔約我睇戲。
我:睇邊套?
好得之男仔:《無國界追兇》!
我:(頹)好睇咩……講世貿架?
好得之男

20051212網摘 – Yahoo! 收購 del.icio.us

網頁開發

Yahoo! 收購 del.icioo.us


Waiting for both network IO and inter-thread notifications

People doing lots of network IO in threaded programs have historicallyhad a problem: waiting for both network IO and for IPC from threads atthe same time.

Generally you want to wait for network IO using select() or poll() ; trying to use lots of threads, each doing one blocking IOoperation, is usually catastrophic to your performance. But both ofthese only wait on file descriptors, and inter-thread communication inlibraries is almost always implemented with mutexes, semaphores,queues, and so on,