Kept in the Dark

I have often wondered what makes dark chocolate lovely. Now I know and I wish I didn't.

Over the last six months, dark chocolate hit the headlines of at least two top medical journals (including the Journal of the American Medical Association and Circulation ); researchers have shown that eating dark chocolate can improve our blood vessels and lower our blood pressure, by virtue of its flavanol content. Surely this good news is fantastic if you - like my wife - happen to be a lover of dark chocolate. That

上海之行Day 2: 上海老風格


外白渡橋, 蘇州河與黃浦江交界

Continue reading...

Why I am not entirely fond of Solaris 10 x86's boot archive

I am not a fan of initial ramdisks (initrds in Linux jargon), but eversince I discovered Solaris 10's version of the concept I've thought itwas the most sensible approach to the whole issue. Just having all the drivers in the boot archive, rather than trying to pick out the onesthe system thinks it will need, eliminates one entire set of annoyingproblems.

(The other Linux initrd problem is where the kernel version doesn'tmatch the version of modules in the initrd;


給社區一個機會

教書時不斷向學生講述利東街那傳奇性的堅持,現在 抗爭已去到與人造的現實對峙的地步 :以身體的實在(the Real),勾尋現實(reality)的裂縫。59歲的街坊may姐在寒鋒下絕食,這幾天傳媒不大理會(now新聞台的持平報導值得一讚

連結作為自信

(連 不擅打字的江記也寫了長文 ,真希望可以真正落實一些作為另類文化集體身份的共識,這樣我們才有未來,這樣城市才有未來。)

月前有一次關於「世代論」的討論會,嘉賓為呂大樂、梁文道、何翹楚、李學彬。席間,呂氏


What da Fxxxxxxxk !!!

放左兩個月病假,

月巴 左14磅!!!!!!

係14磅呀~~~~~~~~~

不如俾我死左佢把啦。

Two problems with Python's file iterators

Modern versions of Python let you process each line in a file in asimple way, with just ' for line in fp: .. ', replacing either manual while loops with .readline() or the memory inefficiency of letting .readlines() pull the entire thing into memory. But there's twobugs, both of which can be illustrated by running a 'pycat' program:

import sysfor line in sys.stdin:    sys.stdout.write(line)

If you run this without standard


2007,你快樂嗎?



2007年最後幾天,眞敎人惘然:畢竟今年發生過很多前所未有的事,也好像一切都是理所當然,變了身的城市面貌,舉世知名的大賭場,令外人嘖嘖稱奇的經濟增長,在還有一點點積極與樂觀的情緖時,再漫不經心的人也難

腸胃炎恭祝大家聖誕快樂

持續工作和病。送給大家美好的東西。請大家 明天去支援利東街絕食的街坊
禮物就是那些以不夠理想的方式指涉的理想吧。未充盈的形式,載負理想。

1.



2.
https://www.ssjj.com/play/255529.html


3.
〈杜諾伊哀歌〉

Process memory layout for 32-bit Linux programs

There are actually two memory layouts for 32-bit x86 Linux programs; theold and the new one. First, the simple version of the common bits:

  • first off, the 4Gb address space is split into the lower 3G, for theprocess, and the upper 1G, for the kernel.
  • the program's code, data, and bss start at 128 Mb (0x08048000)and go upwards.
  • the stack grows down