before i forget....

10月19日(日) 21:30 《選美風雲50年》 @ ATV (actual air time 22:00 to 22:30)

11月1日 (六) 20:00-21:00 《一煮成名》 @ CH 12 有線娛樂台/ i-CABLE Entertainment Channel

11月2、9、16、23日(日) 20:

議員和官員



香港的議員,今日是這樣問問題的

香港的官員,今日只能這樣答問題

澳門人,看完兩段片,你在想什麼?


The complexity of not lying to Makefiles

So, suppose that you are tired of lying to your Makefiles and want to fix the problem (in the abstract; you can'tcompletely fix your Makefiles, because it's not fixable in anything likeordinary make ). What does this take?

What you really need to capture is the state of the 'build inputs'. Thebuild inputs are whatever goes in to creating the output, which is a lotmore than just the source files involved; it also includes things likethe test of the execution


20081013 網摘 – 淫審與網絡

Finance

  • 崩架,唉崩架 Quote: 我們從歷史中得到的教訓是,我們從來都不會從歷史中學習到甚麼教訓
  • 20世紀謠言 Quote: 《20》的電影在港上映前,全球正被金融海嘯蹂躪,然後發生東亞銀行擠提事件,漫畫情節與現實生活,相似之處何

雅虎香港的金盾?

昨晚傳出 高登網民發現雅虎香港疑似自我審查 ,網民發現在雅虎香港的圖片搜查裏輸入一些敏感字眼,圖片是找到,但卻不能顯。

近日大家都在討論「網絡23條」,所以大家在開始「測試」雅虎時,都傾使用自己認為「敏感」


資訊令我迷失



Continue reading...

An irritating awk limitation: getting a range of fields

Writing things in awk has a number of little irritations that come upevery so often. One of them is that it has no built in way to retrievea range of input fields as a string, ie there is no equivalent of whatin Python one could write as something like ' r = " ".join(input[2:]) '(which turns everything from the third field onwards back into a singlestring).

Of course, you can do this with an awk function. But it'


明報轉載

書到用時﹕共產黨真的是那麼可怕嗎?

海嘯時刻﹕次按風暴 貪呃拐騙

What 's wrong with me?

資深影迷網友琛哥從blog得知我與譚家明絕緣, 特意來電願意協助. 因為公私兩忙, 只好推辭. 與琛哥密密斟時, 剛剛經過油麻地bc, 順便取回數月前早該領回的新會員證. 想起早陣子, 一位同學得悉我久未看電影, 大表驚訝和可

Forcing sort ordering in Unix shell scripts

There are a number of situations in Unix shell scripts where you knowthe order that the lines in your output should be in, but you can'tproduce it in that order and nothing in your normal output is usefulto sort on. One common case is awk scripts that accumulate informationinto arrays and then dump it out in their END blocks with ' for (keyin array) ... '; array keys are, of course, produced in no particularorder.

In this situation, some people go