20061008網摘 – 維基娘

Creativity

New services


有無聽過?

問下你...

什麼叫做「雪車」?

什麼叫做「爆檸」?

過兩日講你知!!!

宣傳片?

達Ming 那裏看到一條在 youtube 上叫「 地鐵車箱內不准上網打機,多謝合作 」的片子,內容主要是拍到一個男人在用無線上網打機,又肉緊又大聲。

看完片後,我覺得很假:

  • 很特地 zoom 到那個無線上網的 device 上
  • 聽他的說話內容,應該是玩 FPS

Weekly spam summary on October 7th, 2006

This week, we:

  • got 15,275 messages from 261 different IP addresses.
  • handled 21,183 sessions from 1,301 different IP addresses.
  • received 172,030 connections from at least 42,834 different IPaddresses.
  • hit a highwater of 18 connections being checked at once.

Volume is up somewhat from last week ,but not hugely. The per day volume level fluctuates significantly:

DayConnectionsdifferent IPs
Sunday21

A Python quoting irritation

I was writing code today where I needed to turn a single backslash('\') into two backlashes ('\\') in order to quote it (so that theshell wouldn't eat it, through a combination of annoyances). Myfirst attempt was:

s = s.replace(r"\", r"\\")

To my surprise, this gave me an error, and a peculiar one: Pythonreported SyntaxError: invalid token (at the closing ')'


天水圍係一個應該o係Discovery Channel內存在既地方 (延續篇)

今晚,

我又再一次體會到天水圍係一個應該o係Discovery Channel內存在既地方。

就算我著住一對$2650既Ballin織皮4吋斗零high heels,

仙履奇緣都唔會出現。

因為半夜你再唔會o係街見到馬車,

你伸手可截既只係的士。

是夜與男性朋友,

o係

火星紀事 – 置之死地而後生

Martian Chronicles

自從近年艾西莫夫的《基地》系列重新出版,很多經典科幻作品也重出江湖,如艾西莫夫的《帝國》系列、克拉克的《拉瑪》系列、海萊茵的《銀河公民》。而最近則看到布萊伯利 (Ray Bradbury) 的作品《華氏451》和 《火星紀事》


Thoughts on machine identity

One of the things my earlier entry got me thinking aboutwas how differently people can see the issue of machine identity. Or, tomake it more concrete, when do you give something a new name (even ifthe name is only in your head, not related to the OS-level hostname)?

(I could try to justify it by talking about how it shows something abouthow people think about their computers, but really it's just the kindof thing that satisfies my wandering curiosity, like discussions


Orz。unable to talk.

1. 文明單位:
1.1 copyleft
鄧肇恒 何翹楚

1.2 攝影
謝至德、 黃淑琪

2. 明報「斑駁日常」(四、五、六)

效率的迷宮

「當審判之日來臨之時,一些有名的佂服者、律師和政治家都來接受他們的報償—他們的皇冠、桂冠以及刻在

A pyramid of little scripts: nsdig

One of my DNS diagnostic tools is a program called nsdig ; it makesa query to all of the authoritative servers for a zone. This makesit convenient to both look for inconsistencies and see what theauthoritative servers are saying, as opposed to whatever is filteringthrough your local caching servers.

As another one of my little shell scripts , and asa practical example of how little utilities stack on top of each otherto everyone's benefit, here's nsdig and its component bits:

; cat nsdig#!