保守的憤怒

有時我懷疑再有價值的東西都是徒勞無功的,否則怎麼這麼多百年不滅的轟炸兇猛的作品侍立我們身邊如幽靈喃喃囈語我們愈來愈畏縮如康文署的守門員(加之與物推移每個時代的守門員都可能比前時代的更加保守)。而再親近

Sysadmins are an overhead

It's important to remember that system administration is prettymuch just overhead, much like the janitorial staff (but rather lessimportant; the university can run a lot longer without people tendingthe machines than without people taking out the trash).

The people who are important are those who are doing the organization'swork. The actual work of universities is research and then teachingstudents, so the people with real power here are professors (especiallyif they have grant funding ) and,paradoxically, students. (Students


海盜黨的掘起

Photobucket - Video and Image Hosting

如果有留意外國新聞的話,也許會發覺有一股新的政壇勢力正在誕生:在 美國 法國 瑞典 裏有自稱為「海盜」的政黨誕生。

所謂「海盜」是來自英文字「Pirate」,而政黨所主要著力的就是「Piracy」,但他們所關心的不是隨街擺賣的


More on tabs

The one thing that changing hard tabstops allows is for the same file tocome out different for different people. This may explain its enduringpopularity, because in theory you can use it to view source files inyour favorite indentation level while letting me view them in mine. Ifyou like two-space indents and I'm a mutant who likes 8-space ones, wecan both be happy.

Of course this is only an illusion; it breaks down explosively any timeyou need sub-tab indentation (and


靜靜的生活


侯孝賢從來不易看
他的超慢
他的沒有劇情
他的招牌長鏡頭
總令很多人卻步
卻使我神往

我選擇在工作上忙得要死的晚上看這電影
最重要的原因是希望進入另一個世界
侯的電影極易令我投入
因為他的主角總在長鏡頭底下遠遠的過平常

On tabs

I rarely have violent visceral reactions to things. But I have a few hotbuttons, and here's one of them. Quoting from Joel Spolsky's summary :

Nick Gravgaard : "Ratherthan saying that a tab character (a "hard tab") will move the cursoruntil the cursor's position is a multiple of N characters, we shouldsay that a tab character is a delimiter between table cells..."

Wrong. Wrong wrong wrong. The core wrongness is visible in a singleline


20060704網摘 – 自由與暴民

71

CAPTCHA

  • 字詞驗證 Quote: 雖然這能阻擋大部份Spam,但在用戶層面看來,應該不會太方便。
  • 創意留言驗證 Quote: 我心想,這些千篇一律的強迫輸入驗証碼,可否設計得有趣一點?

自由與暴民


為什麼學校教不出知識分子?

艾德華.薩依德(Edward W.Said)在其名著“知識分子論”中,按照傳統的知識分子形象,說明這種人是精神上的流亡者和邊緣人,既有專業學識,又以業餘身分關懷眾人之事,是對權勢說真話的人。他說:“知識分子有如遭遇海難

沒有崩潰的空隙

總算印好了

特集.惡

游靜.洪凌.李智良.王貽興

十字街頭:梁國雄.林藹雲.葉愛蓮.波仔

字花花:
Voodoo Voodoo


書寫的人
駱以軍:寫小說是 當流浪漢和黑道人物
植字
變壞:淮遠.樊善標.謝曉虹.黃茂林.麥樹堅.韓麗珠

擲界
湯禎兆


A surprise with using object() instances

A while back I wrote about emulating C structs in Python using (instance) objects to createnamespaces, and wrote:

(Avoid the temptation to just use ' ms = object() ', because ithurts your ability to tell different types of structs apart viaintrospection.)

It turns out that there is another reason to avoid this: it doesn'twork. Somewhat to my surprise, instances of object() can't have newattributes put on them. (Instances of Python subclasses of object(