自言自語

如果我將咁多年對男人既專注、耐性、毅力同誠意用o係我既工作,我應該行入Chanel買2.55唔使睇價錢。

如果我將咁多年對男人既專注、耐性、毅力同誠意用o係我既瘦身行動,我應該瘦到得棚骨。

我講真o架。

頂。

我有一個小願望

我有一個小願望,

這個小願望會是我送給自己的27歲的生日禮物。

有人支持我,

有人大潑冷水,

有人願意投資,

有人說我該將這些錢拿來買錶保值,

有人不收分文幫助。

我想典當舊男友送我的首飾來讓願望成真,

但其實有點不

幼稚園的回憶

記得上幼稚園的第一天,踏入課室後,我沒有像其他一孩哭過不停,媽媽在門外張望,反而跟她說:「得啦得啦,你走啦。」

記得下課後等待媽媽接我回家,如果她有餘錢,會買一串紅腸帶來給我吃。

記得有次下課後班主任要我

倉皇




我不過想
每次道別都更為完整
比完整更完整,至於無限
永不再來

Why I wish Python had assignment in conditionals

There's a lot of times where a function wants to return more than aplain boolean; for example, validation routines often want to returnsome sort of explanation of the validation error (if there is one).At the same time, the most natural way to use the function is oftenin the flow of a conditional:

if blah(o):    ....elif not validates(o):    # whoops, lost the error reason

There's a variety of traditional answers to this,


取全文 Greasemonkey Bloglines 版

MySinaBlog 的 RSS 圖片問題又引來 ,因此我快速地將原本用在 Google Reader 取全文 Greasemonkey Scripts Port 了一個 Bloglines 版本:

請到 Gresemonkey 取全文

用法差不多,在 Bloglines 的內容版面上,按 “j” 會將文章 highlight,然後再按 “g” 就能取得全文。現時支持: hk yahoo blog, my sina blog,


EVA新劇場版預告

官方的還未有,偷拍的有一個: 估計G社會放正式的預告出來,大家就等著吧! 相關連結: EVA Zone – 新劇場版預告片

好心做壞事


什麼是青少年成長中最不安的問題?我覺得,是在學習階段不斷聽到別人說什麼學問“有用”,什麼知識“沒有用”,並漸漸聽到大人標籤什麼人“有用”,什麼人“沒有用”。我不敢妄斷任何學問或人“有用”或者“無用”,

翅膀三種

1. 思潮作動: 什麼都談之陳耀成

2. 下文刪成670多字登在上星期日明報,應該是第一次寫劇評,手忙腳亂的——鄧正健說《臨流鳥》引發他一直存在的困惑,見說便心裡一凜,想要好好寫出更有條理和深度的才貼出來——

Thinking about the Python equivalents of C's !! double negation

C's !! double negation idiom is a way of compressing all non-zerovalues of an expression down into a 1. There's a number of things thatyou can use to get the same effect in Python:

  • if you know that your result is always zero or positive, you can use cmp() . I'm ambivalent about whether this is obscure usage; you'reat least making it clear what you're doing, although probably not why.

    (If your result can be