Weekly spam summary on March 18th, 2006

The basic volume numbers are that this week, we:

  • got 13,909 messages from 248 different IP addresses.
  • handled 18,580 sessions from 927 different IP addresses.
  • received 195,437 connections from at least 36,864 different IP addresses.
  • hit a highwater of 16 connections being checked at once.

These are mostly down from last week ,although not as much as I would like to see. Again, the per


Some little things Firefox gets right

One of the marks of good software is that it understands how usersthink it works, and makes itself work that way. Two little bits ofhow Firefox works make a good illustration of this.

Start with Control-+, the keyboard shortcut for increasing thefont size. You may have hit this all the time, but let me askyou: do you type it with Shift? The top number row '+' is ashifted key; without shift, you have actually been typingControl-=. Firefox


20060318網摘 – 馬利奥男爵

Application

Development

Ajax

CSS


科幻中的非人類

在科幻電影或小說裏,都經常出現一些「非人類」的物種,由我們親手創造到外星人都有。而在人類與這些非人類之間的矛盾,通常都會引發衝突和戰爭,正如現實世界一樣。彼此信念不同,也不肯讓步,其所引起的紛爭,就成

robots-andrew
Continue reading...

How not to set up your DNS (part 9)

Presented in the now-traditional illustrated form:

; sdig ns gcluk.netns1.gcluk.net.ns2.gcluk.net.; dig mx web1.gcluk.net @ns1.gcluk.net[...];; ANSWER SECTION:web1.gcluk.net. IN A 65.98.36.90;; AUTHORITY SECTION:web1.gcluk.net. IN NS .

(TTLs have been omitted for clarity.)

That


The problem with LiveJournal

The problem with LiveJournal is that youcan't stop partway through reading your friendslist; unless you have abetter memory than me, once you start reading it you need to read allthe way back to where you last stopped. The result is somewhat likeSpace Invaders; a stream of entries comes at you and you have to readthem all or die. In turn, this makes reading LiveJournal friendslistsnot a casual activity; if I can't commit enough time to read all of thenew entries that have


有營養的感覺


某些時候,靜下來,與伴侶或朋友一起喝喜愛的飮品,分享一些無關重要但貼身的感覺,實在愉快。

重點不是分享,而是無關重要。以下是屬於我的微妙感覺,不知你有沒有感受過?

每日讀報讀書,留意政經新聞,關心社會動態

20060316網摘 – 香港主辦中文維基年會

Read/Write Web


小記抓狂

昨晚衝擊失敗,只完成了80年代啟蒙,今晚再完成王小波啟蒙。逾期2日。有些解釋是無聊的,然而轉眼看見一些事又很惱火,實在不好意思。罵完人又扮好好先生,在我眼裡看來實在是極之虛假的事——其他人未必覺得。有

A tricky memoization decorator

This is the kind of hack where I present the Python code first andexplain it later:

def memo1(func):  def _wrap(self):    r = func(self)    setattr(self, func.func_name, \            lambda : r)    return r  return _wrapclass Foo(object):  ...  def invar(self):    return complex(self.field1) or \           complex2(self.field2)  invar = memo1(invar)

Here,