法蘭克福
但在法蘭克福,
那種寂寞卻很寫意。
第一天,
已經疲憊得說不出話,
卻要匆匆忙忙在Mainz四處跑去買東西,
很累人很想哭。
第二天起床後泡在甘菊浴鹽中良久,
心情慢慢好了。
星期天所有店舖都休息,
隨便買
Slashdot's tacit admission of failure
Slashdot has recently started running what it calls 'Backslash'stories, which have (as it puts it):
[...] some of the most interesting comments and exchanges on a handfulof yesterday's Slashdot posts [...]
To me, the most interesting thing about these stories is that they area tacit admission that Slashdot's comment management model is brokenand that a lot of people don't read the comments on Slashdot stories.If most people did regularly read Slashdot comments,
重開記事
於是我收到了電郵,於是在 msn 上被迫問。我都以兩個表情符號來回答: 扶牆和趴桌子。(貼不上來)
最易打發的還是謝某,兩日間打來三次,問:「你做乜 close 個 blog ?」「你都唔睇,關你乜事。」「我雖然唔睇,……」 blah blah blah ,然
我就在這裡
《女王的教室》的平凡
或許我們不需要對《女王的教室》太認真。它畢竟是一套電視劇。它在每集的開場白時,就將內容定位為「一群小學生對抗
詩(給教我使用msn表情符號的人)
醒來
我們躲在符號背後說話
讓它們誇張的表情給我們溫熱
它們多餘怪異代替我們出軌,讓它們
說話,我們就安心
到頭來誰也沒有沉默
我想說的話流淌在失眠的褥上
片語的塵蟎深入鼻子
組織句段河流曲折碎金
河底砂石溢出全部的未
填補信仰、喚醒良知
填補信仰、喚醒良知
我們聽盡了呼籲與號召,對於良知,我不必譴責喪失它的國人,不必盛讚良知的美好。我只想討論,喪失了良知的原因——空缺的信仰。
一、空缺信仰喪失良知
現代的國人缺少信仰,以至於
殘疾人士爭取交通票價優惠行動短片 (2006 )
殘疾人士爭取交通票價優惠行動短片 (2006 )
https://www.smrc8a.org/video/mtr_video.mpg ( 建議用右鍵另存目標download)
睇番一兩年前有關 「殘疾人士爭取交通票價優惠」的報導 ,提出的主要是政府指此舉違反《殘疾歧視條例》
A problem in Python's implementation of closures
Python's implementation of closures for inner functions has a well knownproblem: you can't mutate the binding of capturedouter variables. In other words, the following code does not work:
def cfunc(a): def _if(b): a = a + b return a return _if
There is nothing in the semantics of Python that require this result.Unlike the case of writing to a global variable in a function, what the a variable refers to in the scope of _if is