Blog
- 網誌研究 研究發現 xanga 用戶有很多歧視仇恨,很有「破壞力」。事實上,這只是人心的反照,Blog 是使這些仇恨具體化於文字上的一個公開媒介。問題是,這個公開平台,是否具有足夠的破壞力和影響力
攻殼
- 當攻殼SSS 遇上NISSAN 竟然會
I was bitten by this today, so I am going to grump about it.Today's irritation with the Bourne shell is that the followingis illegal syntax:
echo hi &;
This probably looks peculiar and silly, so let me give a real examplethat is also illegal:
for i in *watch; do nohup ./$i >/dev/null 2>&1So is '
; ;', and for the same reason: in the Bourne
Blog
攻殼
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,
填補信仰、喚醒良知
我們聽盡了呼籲與號召,對於良知,我不必譴責喪失它的國人,不必盛讚良知的美好。我只想討論,喪失了良知的原因——空缺的信仰。
一、空缺信仰喪失良知
現代的國人缺少信仰,以至於
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