在牛棚書展燃亮了像雪飛花

又是一年一度的「 牛棚書展 」,昨天與朋人開檔,朋友主要賣書而我只是占少少位置把自己的創作 「燃亮了_像雪飛花」 出售。今日因為有事不能久留。這兩天cd出售的成績不錯,都有十二大張。要求不高的我來說已經是好好好

More fun with Python's indentation rules

Python's indentation rules apply only to logicallines (as the documentation is careful to spell out), although theindentation level only comes from the first physical line. This opens upvarious sorts of peculiarity and evil, some of which I mentioned lasttime .

There are two ways for multiple physical lines to be joinedinto one logical lines: being explicitly continued witha \ at the end of the line ( explicit line joining ), orbeing inside a ( , { , or [ ( implicit line joining )


贈興

1. 明天無法去社會論壇,在這裡貼一條link致意。

說現代社會的身份是多元的沒錯,但不同身份卻非散落一地互不相關,它們構成一個權力羅網。你或可像「後現代主義差異論者」所倡言般,從一種身份跳到另一種身份(如果你

Weekly spam summary on December 2nd, 2006

Our SMTP frontend crashed and restarted today at 2:51pm, which meansthat some stats are a little bit distorted. This week, we:

  • got 15,320 messages from 276 different IP addresses.
  • handled 21,412 sessions from 1,467 different IP addresses.
  • received 217,984 connections from at least 66,248 different IPaddresses up until this morning at 4am, and 11,150

這是一個怎樣的週日

呢個12月3日唔知想點: 天星行動 社運電影節閉幕 香港社會論壇; 牛棚書展;老陳結婚。真係願這邊和那邊一起在上演讓我閃同步閃出一生精彩的兩面咯。

牛棚書展.永不磨滅的地攤

拯救書櫃、拯救床鋪、拯救地板、拯救

Ubuntu's attention to detail in init.d scripts

# /etc/init.d/exim4 stopStopping MTA: exim4.# pidof exim43559# grep PIDFILE /etc/init.d/exim4 | sed 1qPIDFILE="/var/run/exim4/exim.pid"# ls -ld /var/run/exim4ls: /var/run/exim4: No such file or directory# mount | fgrep /var/runvarrun on /var/run type tmpfs (rw

20061201網摘 – 長尾理論

Web

Blog


歌名:7030d2

早前與朋友msn,他是喜歡做音樂的。之後我用了一首demo與他交換了(聽),他的作品未有正式出版,只是收收埋埋。得他同意後,第一時間放在raido與大家分享。

歌名:7030d2 (其實佢係未改名的)
作者: 石秀禾

影藝散場



香港影藝戲院結束,我這個澳門觀眾不免有點失落。

畢竟我在這戲院看過生命中最重要的一場電影,對這地方不免另有一種感情。

這兩天讀到戲院結束的新聞,媒體都不免會說她最興盛的時期是播放日本電影《情書》一映二百多

How Python parses indentation

One of the interesting things about Python for compiler geeks is that itis a partially implicit context language, in that line indentation issignificant. Implicit context languages been out of favour for a verylong time, and most parsing techniques these days are geared towardsstream oriented grammars.

(By 'implicit context languages' I mean ones where state changes likeentering and exiting blocks are implicit in the difference betweenlines, such as different indentation levels. By contrast, streamoriented languages use explicit markers for such state changes, like