對讀(在其中一方缺席時)
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:
- an unstructured namespace, which means that any time I want to dosomething I
Kula Shaker
書展.宣傳
字花花 口花花
買字花 送字瓜
22/7 ,三娘教子格局,以寫作反攻人生。
如無記錯,這是首次與謝某同場。好緊張添!
2.
21/7 ,余華之後有董啟章。本人當日職責大概仍是插科打諢,正經事留給陳智德和董啟章談。
董

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-
購物小劇場
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