Re-post an article about Social Norms and Economic Norms

如果什麽都可以用demand/supply、“搵食o姐”來做標準,我們將會活在一個怎麼樣的社會?

________________________________________________________

人類 同 時 活 在
Continue reading...

雜念


你很想表達自己的意見,但擔心被人取笑。

為什麼人們不敢表達自己的意見呢?因為沒有意見的人會取笑有意見的人,以掩飾自己的愚昧。為什麼人們會甘於不想達意見呢?因為他們認為肯表達意見的都是蠢人,只有他們這種保

一起看~PIP劇場最讚人熱淚舞台劇


大家有沒有興趣8月9日(星期日)晚上7:30pm一起看 舞台劇 家家春秋》?

聽說超好看的喔~
如果大家平時少看
舞台劇 可以看看這一套。

門券原價$295,跟我一起訂會有“朋友仔”offer, 每張$177。

如欲訂購,請參

Spammers are quite dedicated in their address scraping

This is one of those entries that require some apparently irrelevantbackground.

The Atom syndication feed format requires that each entry have a uniqueidentifier assigned to it (the atom:id element, to use XML jargon).This identifier is a valid URI, formed using any number of schemes(see here ). DWiki (the software behind WanderingThoughts ) initially used the fullURL of entries as the Atom ID, because this required no additionalconfiguration or per-entry metadata. However, this causes seriousproblems if you ever


Why you should do code reviews for sysadmin scripts

Through my experiences over the past while, I've come around to theview that you should try to have code reviews for sysadmin shellscripts. There's two reasons for this, and they both have to do withthe fact that the Bourne shell is not really a programming language .

First, you want code reviews so that other people can convince you thatyour clever Bourne shell idioms are a little too clever. People's tastesand standards for this vary widely, and you're writing scripts not


Samsung Jet的超級快閃黨

多得T-Mobile,世界各地愈來愈多廣告商,都相繼拍攝了好些疑似街頭即興快閃的viral video。

唔好打呵欠住,如果你以為呢條又係街頭即興快閃黨的viral video,你就大錯特錯,呢條片呢……哎呀,都係自己睇,開左估就唔好玩。

我淨係想講


某些o靚模大賣色情對社會沒有影響?

今日就有:

鄭融遭飛撲胸襲

狂徒舞台下施鹹豬手 當場被捉住

大家想一想,以前都有非禮案,但為何這1、2年針對女藝人的非禮案變得頻密。

「虛名」能遠播,「浪得」又如何?

生存有兩種方法:一、打得,二、睇得。像香港,兩樣都唔得,就死得。

只要看看我們最引以為傲的「國際金融中心」,就會明白什麼叫做「唔打得」。香港過去十年的金融政策,應該做的,統統沒做。就講香港的股票市場,近

總結我在《城市論壇》對少女模特兒的看法

免得被傳媒在明天的報紙雜誌歪曲我的言論。
  • 首先聲明, 千萬不要將我標籤為“反o靚模”人士。我主要是反媒體大肆利用她們助長不良風氣。
  • 某幾家媒體不斷發出“少女模特兒”穿少些布就可以博取出鏡機會”的訊息 ,所以引

The anatomy of a hack to get around try:/finally: and generators

Suppose that you have the Python try:/finally: problem and need to get around it, specificallyyou need to both be a generator and have your finally: runimmediately. Taken from here ,one answer is:

def foo(bar):  try:    def output():      ... compute with bar ...        yield res      ...    return output()  finally:    print "finalizing"

(Now, there is a lot of things that this doesn't help with; the actualcomputation