壓力

人覺得有壓力的時候,表面上似在受苦,更可能是在享受。有些人特別懂裝出飽受壓力的樣子,可說是眾多求生技術的一種。因為受壓力,所以較為容易得到諒解與同情。

有些人何時何地都可以感受壓力,例如跟老闆開會,與客

人人都有助手

轉載自《face》,一本剛剛搵過(亦經常搵)當時人做封面的雜志。
——————————————————————————————————————————————

上 期 《 FACE 》 報 道 過 o靚 模 羅 凱 珊 ( Kama ) 俾 Angelababy 同 城 嫂 熊 黛 林

特別連結:林玉鳳:從東亞大學到澳門大學的二十年


林小姐當年走訪多位校長
用心用力
記下澳大走過的路
讀後令人感慨
連結在此與大家分享
希望澳大同學都會記得我們在澳大生活的種種回憶吧
林玉鳳:從東亞大學到澳門大學的二十年

文明單位

1. 文明單位: 圖文創作 (暨《鉛筆擦膠》、魔幻城巿)
嘉賓:ky、甄拔濤

2. 文明單位:香港電影(電影金像獎八卦吹水)
嘉賓:陳景輝、周思中

Why your ticketing system should not be accessible to users

Here's a thesis:

The problem I see with making ticketing systems accessible to users isthat you periodically need to have a genuinely private conversationamong the sysadmins in response to user requests. I'm not sure how oftenthis happens in typical organizations; ours is somewhat atypical in howwe structure support, and possibly as a result it seems to happen fairlyoften here.

If your ticketing system is (internally) public, then you can't havethese conversations in the ticket; you have to find some


拒絕

幸得高人指點。

我曾在豆瓣,因為 貼幾句紀念六四的詩 ,而被一個小組的管理員,網名范子s的,指為政治立場偏激、危害小組生存。本來我一直與范子s激辯,但當他使用「政治立場偏激」來label我,我就馬上退出了小組。結果

原稿紙

我又開始用原子筆和原稿紙寫稿了。

周六下午有點空閒,拿出久久不用的原稿紙來亂寫亂畫,然後寫出了多個故事的人物和大綱,並且在周日寫出了近五年來第一篇用原稿紙寫的極短篇。

近年我減少了寫小說,除了因為自己懶,

推銷電話

近日收到一個推銷 Wifi 計劃的電話,對話大概如下:

推 (推銷員):現在我們有新的 wifi 計劃,XX寬頻的長期客戶可享有優惠價… 我:但我沒有任何可駁 wifi 的隨身裝置 推:其實現在很多裝置都支持 wifi,例如閣下的電話、Notebook,甚至 PSP、


Why pickle is not a good way to save your data

On the surface, the (c)Pickle module looks like a good, simple wayfor your Python program to save and load its data; much like XML , it means you don't have to write a parseror even save and load routines as such, just some file and objectmanipulation code. However, through my experience in writing DWiki I'vecome to understand that this temptation would be a mistake (one thatI've actually half-made; DWiki 's caching layer uses pickling)


Some ways to add versioning to pickled objects

To follow on from yesterday's entry , suppose thatone is using (c)Pickle to save data in your Python program, and you wantto version your data somehow. I can think of a number of approaches:

  • take the 'pickle as stored JSON' approach; serialize your complexobjects to simple objects (dictionaries, lists, etc), add versionnumbers, and only pickle the simple objects. Then you can do all ofthe usual version mismatch fixups when you de-serialize the reloadedsimple objects