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

Silent Night

Every boy, girl and grown-up knows very well the sparks of gratitude upon receiving a gift on the Christmas festival. When we make a wrong choice of "gift", the resulting ripple can be far-reaching, though.

On the Christmas Eve, I made a phone call to my patient, a young lady who recovered from a stormy hospital course with a disease called systemic lupus erythematosus, after receiving her magnetic resonance images (MRI). "Good afternoon, Ms L, this is Dr. KM

Christmas Greetings


祝願各位聖誕快樂,人人過得溫韾甜蜜

The difference between shells that do job control and shells that don't

Apart from having job control, the difference between a job controlshell and a non job control shell is that job control shells puteach command into a difference process group . They do this even forcommands running in the foreground, because you may later want to ^Z thecommand and push it into the background, and process groups are the coremechanism of doing job control.

(Process groups do two things in job control. First, they let the shellreliably send stop or start signals to all of the processes


澳門創作人協會新書:《未命名的章節》序

2007年,澳門是一個“消失中”的城市。是的,不是“發展中”,是“消失中”。如果時光倒流十年,相信活在1997年的澳門人絕對想像不到2007年的澳門會變成這麼“都市化”、“國際化”,甚至有點“泡沫化”

Shortening hostnames for fun and profit

Once upon a time I needed to NFS export filesystems to a lot ofworkstations, in a situation where I was worried about size limitsin /etc/exports (and we didn't use YP/NIS, so we couldn't just puteverything in netgroups). In situations like this, one thing to dois to shrink hostnames down as much as possible, and that's what wedid.

(This was back in an era where the existence of such limits were at leastplausible.)