推介:他用鏡頭攝下澳門人的靈魂
人們不會無緣無故齊心
大家都知道這地方病了
請各位好好關心新情況
介紹一位藝術工作者拍下 10月1日遊行的照片
他鏡頭下的澳門人
無論是遊行人士還是維持秩序的警員
都有一種深沉的力量
你看看
他們的
不說話,只聽歌
實在苦悶到極點
澳門的新聞日新月異
已經到了令人充滿擔憂的地步
看了今日的新聞更是感慨萬千
想起好多年前U2的 one
Is it getting better
Or do you feel the same
Will it make it easier on you now
You got someone to blame
You say...
One love
One life
When it's one need
How Exim determines the retry time for local deliveries
The Exim documentation is a little silent on howExim determines the retry time for local deliveries. Since I spent todaylooking into this, I might as well write up what I've learned.
Exim's retry rules are based on matching patterns against 'the failinghost or address' (as the documentation puts it); call this the retrykey. For local deliveries, it turns out that the retry key is the fulladdress (including any local part prefixes or suffixes) that is handedto the transport
Weekly spam summary on September 29th, 2007
This week, we:
- got 11,909 messages from 265 different IP addresses.
- handled 26,934 sessions from 2,995 different IP addresses.
- received 297,885 connections from at least 101,029 different IPaddresses.
- hit a highwater of 16 connections being checked at once.
Volume is a bit up from last week . Lookingat the numbers I am reminded of how striking the number of differentIP addresses is
Understanding Exim's weird way of doing retries
First, some terminology. A top level address is an address that amessage starts out being sent to; for example, every (accepted) RCPTTO in SMTP creates a top level address for the message. A destination is a place that a message is ultimately going to be delivered to, andmay include things like files. A top level address may turn into morethan one destination through means like .forward files, aliases, andmailing list files. At a conceptual level, all MTAs have two main jobs
性格決定命運
我戴上太陽眼鏡,翻起衣領,趁沒人看見,飛快閃進後巷找盲公陳。
任何人突然做出算命、信教、加入法輪功之類的行為,往往是因為人生出現了某種危機。是的,我最近的確遇上了一點麻煩。我Daisy天不怕地不怕,
轉貼:沒有第三種意見的社會(呂大樂)
這幾個星期都沒有空閒時間寫文章,今日才讀幾日前的"信報",讀到這篇文章,說的是香淘的情況,但令我想起澳門的事情,值得向大家推介,特別轉貼於此.
澳門越來越古怪了,可是,我們又能為她做些什麼呢?
沒有第三種
The first rule of free email-based services
The first rule of free email-based services is simple:
Spammers will exploit any way of sending user-supplied text to randomemail addresses .
Let me repeat that: any way . Any way at all. Spammers are veryingenious, and it does not matter what you call the actual feature; ifthey can put in user-supplied text and then mail it off to people, theywill use it to spam. Since it is 2007 and spam through free webmailproviders is not exactly a surprising
誰說學生是好人?
Phase objects: simple decent error reporting for Python programs
For a lot of the sort of utility programs I write in Python, the onlything the program can really do when it runs into an operating systemlevel error is report whatever the problem is and exit. So programsstart out as one big try:/except: block:
try: fp1 = open(fnameA, "r") .... fp2 = open(fnameB, "r") ....except EnvironmentError, e: die("OS error: %s"