全方位批鬥大會

全方位批鬥大會

Keith之所以在公司裡犯眾憎,除了因為他但求就手而搞女秘書,還因為他是女皇的親信,奸的。女皇為了鞏固勢力,鏟除異己,於是收了Keith為公公,專門混進同事當中收風。譬如早前有女同事踢爆女皇打Botox,Keith知道

唔知自己想點, 淨係知自己唔想點

下文涉及個人情緒, 以部份廣東話寫出.

「唔知自己想點, 淨係知自己唔想點」, 確是現今廿零歲人既做人態度. 因為好多野唔到自己話事, 唔夠膽主宰自己命運, 無能力改變現狀之下, 只好退一步令自己唔會太輸蝕. 我係其中

An illustration of the speed advantage of Python builtins

As a followup to my entry on the two sorts of languages , I decided to actually tryimplementing the string .find() method in Python to see how muchslower it is. The Python version uses the brute force C style approach,roughly:

for i in range(0, len(src)-len(sub)+1):    if src[i:i+len(sub)] == sub:       return ireturn -1

I actually did three versions, each with a different


20080229 網摘 – 側側膊之國際影業

Fansite

HK


王若琳



有沒有聽過王若琳的歌?
最近我都在聽.
意想不到啊.
沒有人見人愛的樣子
但能唱這種歌
定位已很明顯
厲害啊


My likely Firefox 3 extensions

My current personal version of Firefox is more than a little bit behindthe times, so I've been looking at upgrading to Firefox 3 (I compilemy own version with various hacks, and it's easiest to build from thebleeding edge CVS sources). As a result, I spent part of today tryingvarious of my essential extensions to see which ofthem still work.

Here's the current state of affairs:

  • NoScript has beenupdated for the current Firefox 3 beta and works fine. It'

書報攤

(圖片來自 HKStories

這一陣子都沒有看別的漫畫,只買現在以潮珍版重出的《超霸世紀》,不是特別好看,只是一份情意結。這本書是逢星期三出版的,也算蠻搶手,因為書報攤對這些「經典書」,不會入很大量貨,通常都只會有四至


funny games


終於看了這電影
1997年的戲
現在才找到
足足錯過了10年
看時才知此片男主角就是"竊聽者"的男主角
女主角則是"鋼琴教師"那位女主角
真是超勁的組合
雖然早已知道故事內容
但看的時候依然震憾和不安
導演 Michael Haneke 真係勁
2

尊重的困惑

我們都會抱怨世風日下,道德淪亡,莫說是小朋友,連成年人都越來越不懂得尊重別人,但是你有沒有留意很多人在不尊重他人時,其實更不懂得自重。

人人都知道尊重別人很重要,但大家總是會不自覺地傷害他人,傷人的方式

Two sorts of languages

Here is a thesis:

There are two sorts of languages: languages where writing your own codeis (usually) almost as fast as using the builtin features, and languageswhere the builtins are an order of magnitude faster than doing the samework in your own code.

C is an example of the first sort of language; it is merely silly, notlaughably absurd, to reimplement your own version of strchr() . Pythonis an example of the second sort of language; it's utterly stupid towrite