
今年又買多左……Orz
豆瓣小組香港電影節甩漏2008及facebook小組香港電影節甩漏同日運作。
內爆男 藝術中心 05 Apr 2008 - 04:15 PM
華麗安琪兒 THE GRAND CINEMA 27 Mar 2008 - 07:15 PM
蝴蝶 文化中心 30 Mar 2008 - 12:30 PM
立春 大會堂 0
How not to set up your DNS (part 18)
We got contacted by a user reporting that he couldn't get mail withan address in kuet.ac.bd; our inbound mail gateway was consistentlyrejecting the address as temporarily unresolvable. When I startedlooking into the DNS situation, all sorts of peculiar things startedcrawling out of the woodwork.
- in the root zone, the
bdcountry domain has two servers, dns.bdand slave.bttb.net. - if you query either of them you get a third server as well,dns.bttb.net
小說時刻
我說要寫短篇小說,說了一段日子,上星期六終於寫了,約四千字,愛情小說,星期日早上略作修改,投了給澳門日報逢星期五的小說版,等候刊出。
我很久沒有寫愛情小說,可能是我幸福,可能是時機未到,更可能是以前寫過
我很久沒有寫愛情小說,可能是我幸福,可能是時機未到,更可能是以前寫過
生日回禮
有一次,有人問我:「你係咪覺得佢真係好叻」,我說,是啊。
周某 年少時據說喜歡法蘭克福學派、崇拜福柯(不知其光頭與此有無關係),有渾名福周(全名法蘭福周)。一起做《中大四十年》,後來一起在讀書會啃齊澤克,
周某 年少時據說喜歡法蘭克福學派、崇拜福柯(不知其光頭與此有無關係),有渾名福周(全名法蘭福周)。一起做《中大四十年》,後來一起在讀書會啃齊澤克,
Moderation Rules
New technology and science make numerous dreams feasible. But it takes us long to realize that the spectacle of high-tech science does not necessarily make life easier.
"We won’t have long to wait to find out this," I told myself after my preparation of the teaching material for an intensive review course for doctors sitting for examination.
At a glance of recent medical literature, the rule of moderation strikes me. As a matter of fact, the title of this blog can be read either in the straightforward
"We won’t have long to wait to find out this," I told myself after my preparation of the teaching material for an intensive review course for doctors sitting for examination.
At a glance of recent medical literature, the rule of moderation strikes me. As a matter of fact, the title of this blog can be read either in the straightforward
How ZFS's version of RAID-5 can be better than normal RAID-5
ZFS's 'raidz' and 'raidz2' storage methods are single and dual parity,but they are not exactly the same as normal RAID-5 and RAID-6. Thedifference is in how each handles partial stripe writes, such as whathappens when you write only a small amount to disk.
In a conventional RAID implementation, a partial write to a stripe alsohas to update the parity, which means additional disk IO (at least adisk read and a disk write). Even if this
heat
聯署
飄流歲月,團聚無期——居港權十年爭取
(有一個很長很長的故事,請到連結去看。你按過去之後發現的並不是故事,但這就是故事流傳的方式之一。)
我們要求:
1.在每天150人的單程證配額中,加設港人在內地的成年子
(有一個很長很長的故事,請到連結去看。你按過去之後發現的並不是故事,但這就是故事流傳的方式之一。)
我們要求:
1.在每天150人的單程證配額中,加設港人在內地的成年子
Speed surprises in reimplementing the .find() string method
In yesterday's entry , I mentioned that Iwas surprised by the relative performances of my three reimplementationsof the .find() string method.
The src[i:].startswith(sub) version was the slowest, and why isobvious in hindsight: it's summed up clearly in the first bit, where wecreate a big new string ( src[i:] ) on every iteration of the loop. Nowonder it's slow; creating big strings is slow in general, because