Link: non-errors in English

Non-Errors is anice catalog of things that aren't English usage errors, even though alot of people tend to think that they are. Since I do any number of themI find this reassuring, and it's amusing to see just how old some ofthese perfectly proper usages turn out to be.

(From Daring Fireball .)


Why I like Python more than Perl

My attempts to write a general 'why I like Python' entry to answer arecent comment have floundered completely. However, part of the answeris in the reasons why I like Python more than Perl, and I came up with asummary of that back when I started programming in Python (and still hada copy of it, once I could find it).

The three problems I have with Perl that Python deals with are:

  1. an unstructured namespace, which means that any time I want to dosomething I

Kula Shaker


今日多野做到仆街
臨收工聽到商台細So播Kula Shaker嘅新歌
本來無咩感覺
細So有邊日唔會播新歌
聽吓聽吓
諗吓諗吓
Kula Shaker?新歌?隊嘢唔係散咗咩
不過唔理咁多
呢隊嘢真係好得
曾經在苦悶之中拯救過我
你可以想像一個人早上教詩經楚辭晚

書展.宣傳

1.
字花花 口花花
買字花 送字瓜

22/7 ,三娘教子格局,以寫作反攻人生。
如無記錯,這是首次與謝某同場。好緊張添!

2.
21/7 ,余華之後有董啟章。本人當日職責大概仍是插科打諢,正經事留給陳智德和董啟章談。

20060719網摘 – 電腦界的 1984

Freedom


Link: 'Document Centric'

Document Centric isabout the disconnect between relational databases and regular users, andwhy people keep stuffing data into spreadsheets and the like instead of'real' databases.

(They do. Joel Spolsky has written about the Excel team's surpriseat finding this out about how real users used Excel.)

(From Carlos de la Guardia .)


Using Python to test system behavior

One of the things I like about the Python interpreter is thatit is just about right for doing little system behavior tests,like how various systems handled a TCP port binding issue . This is because Python islow level enough to be relatively close to the actual system, so you canbe pretty sure that what you're seeing isn't Python-specific behavior,while at the same time being high level enough that you can do the testsin a couple of lines.

Strictly speaking you don't need


A sysadmin habit: screen locking

Years and years ago, I bound a function key in my window manager tostart xlock and then carefully trained myself to hit F10 (theaforementioned function key) the moment I got up from my chair toleave my cubicle-office. It didn't matter how trivial the errand or howshort it would be; I'd hit F10 and locked the screen. By now I havethis habit so ingrained that it's become one of my little twitches .

We have an access-


購物小劇場

一起床(1800左右)就盤算著去看《hidden》,當然又是神志不清地。傻了一頓上網一看,1920油麻地有一場,忙忙穿得貴婦一樣落車搭的士。 去到,票務小姐說,今天沒有七點場。撞牆。決定去購物平衡心理。沒錢沒地方

Why you can't mix wildcard IP port binding with other bindings

A while back I wrote, about TCP portbinding:

Unfortunately, you can't bind a port to the generic wildcard addressif anyone is using the port on a specific IP address, hence the Apacherestart problem. (Why this port binding limitation is a sensibleis beyond the scope of this margin, but it is, however annoying itperiodically is.)

Today I feel like explaining why. The core problem is deciding whogets handed a new connection (or for UDP, a new packet); if