3108 了,先介紹五個 blog:
Weekly spam summary on September 2nd, 2006
Our SMTP frontend survived all this week without problems, which wassomething of an accomplishment this week. Because this week, we:
- got 13,546 messages from 227 different IP addresses.
- handled 19,984 sessions from 1,283 different IP addresses.
- received 1,419,542 connections from at least 52,806 different IPaddresses.
- hit a highwater of 9 connections being checked at once.
Yes, that is not a
我下一世是法國人
https://quizfarm.com/test.php?q_id=30917
玩完的結果是我一下世想做法國人
"第二志願"是英國人
真是驚喜
我想現在很多澳門人下一世都不一定想再做澳門人了
如果可以選擇
你想做什
文學的原像
Link: The Single Unix Specification et al
The Open Group Base Specification Issue 6 is, well, toquote it:
This standard is the single common revision to IEEE Std 1003.1-1996,IEEE Std 1003.2-1992, and the Base Specifications of The Open GroupSingle UNIX Specification, Version 2.
(Those IEEE standards are better known as 'POSIX'.)
The Single Unix Specification (SUS) is a very useful authoritativereference for how various things should behave in theory
Why Postfix is not my favorite mailer
Today I was unpleasantly surprised to discover that Postfix defaults tohaving a 50 megabyte size limit on user mailboxes, after which emailbounces. This default limit is apparently sufficiently unimportant tonot be mentioned in the 'basic' or 'standard' general configurationdocumentation.
Perhaps this will strike people as a petty reason for disliking Postfix;after all, it's just one configuration option. But it is the symptom ofa deeper problem.
Since Postfix people have made one dangerous random arbitrary default(and not drawn attention
文學起義
SIGCHLD versus Python: a problem of semantics
In the process of looking at my program's code again to write the lastentry , I think I may have solved the mystery ofhow my impossible exception gets generated.
My program does a lot of forking and thus cleanups of now-dead children.The code that it generally dies on is:
def _delip(pid, ip): del ipmap[ip][pid] if len(ipmap[ip]) == 0: del ipmap[ip]
It takes a KeyError on the len
How dd does blocking
For a conceptually simple program, dd has a number of dark corners.One of them (at least for me) is how it deals with input and outputblock sizes, and how the various blocking arguments change thingsaround.
ibs=sets the input block size, the size of theread()s thatddwill make. Since you can get partial reads in varioussituations, this is really the maximum size thatddwill everread at once.obs=sets the output block size and makesdd'