貝拉塔爾小劇場
小時候的營生
世上就是有 思存 這麼好的人,生日時他問我想要什麼書,我掂估他是個惜書的人,便向他討人民文學出版社的《紅樓夢》,因為我手上那套已經快翻爛了。今日他送我書,還附一封利是,內有三包芥辣海苔,賀我三張。
我手上那
SRK廣告
SRK, Saif Ali Khan和Priety Zinta的百事廣告:
SRK, Shahid Kapoor, Rani Mukherjee和Kajol的百事廣告:
力士香皂75周年, 請得SRK和四女星串場: Hema Malini, Juhi Chawla, Sridevi和Kareena Kapoor. 可以請得動 Sridevi 也相當厲害. 她是80年代威震南北印度的影后級
關於SRK的十件事
消失的團隊
將軍以為兵精糧足,只要裝出奮勇向前的樣子,下屬就會賣命。
小兵則認為我方人強馬壯,一旦兩軍廝殺,自己只需站在一旁,其他兄弟也會克敵制勝。
得到眞正交鋒時,將軍發現士兵們根本
ZFS: Reservations versus quotas
Suppose that you have a a number of groups (or people), each of whichis purchased a certain amount of disk space, and that you have put allof the groups in the same overall ZFS pool. ZFS gives you two ways tolimit each group's disk usage to the amount of space that they'reentitled to: reservations or quotas. Which one is better?
It turns out that the answer is simple: use quotas.
(In both cases you give each group a top level container
顛倒
現時對刺激品反應如下:
抽煙睡覺
喝咖啡頭暈
喝了酒,不但堅持辯論理論與路線問題,還寫文,還失眠至早上十時。
快樂時沉默,悲傷時茫
機械,或者浪漫
電視作為一種操控大眾思想的媒介早已被罵透,香港還有慣視收視的詛
從心所愛《Dil Se...》
如果你看了《Om Shanti Om》而愛上Shah Rukh Khan的話, 《Dil Se...》(1998) 絕對不可不看.
Amar (Shah Rukh Khan) 是個電台記者, 為了採訪印度獨立50年, 特意走到北印邊境. 途中認識了神秘的Meghna ( Manisha Koirala ) . 她柔弱的外表與固執的性格使
A simple Python class to trace access to object attributes
Every now and then I run into a situation where I want to know whatattributes on an object are getting accessed when. Fortunately it'spretty easy to knock together something to do this, in a variant onthe mutating proxy pattern .
Here is a sample implementation, as a Tracer class:
def _repon(obj, n): return (not obj._t_il) or \ (n in obj._t_il)class Tracer(object): def __init_