新一年,開工!
元旦早上與太太重溫了周星馳的“西遊記之仙履奇緣”,這段緣份是上天注定的,大哂!
下午在重溫小脂的新書,真的要動筆
Universities are peculiar places
In particular, universities have a computing environment that is morepeculiar than I think a lot of people realize (sometimes even peopleinside universities, because from some angles it is very easy tomiss). I wrote about one example of this (and the practical effects ithas) back in UniversityFirewalls .
One of the ways that they are peculiar, a way that I think is at thecore of a lot of things, is this:
In most parts of most companies, communicating with the rest of thecompany is
Weekly spam summary on December 31st, 2005
This week we received 12,270 email messages from 159 different IPaddresses. Our SMTP server handled 31,972 sessions from 2,643different IP addresses. Session volume is down from last week , which is a relief, although it'snot back down to the historical levels yet.
However, connection volume has not dropped substantially from last week : 260,000 connections from at least 53,760 different IPaddresses,
斷背山
再見2005年,再見!
這一年特別苦,也特別難忘,身體和心靈前所未有的脆弱,在職場上做得最差也許負了很多人,寫了四百幾天的小說連載也叫做“去日苦多”
A logical consequence of def being an executable statement
I've mentioned before that in Python, def is actually an executablestatement (in FunctionDefinitionOrder ). A logical consequences of thisis that default values for function arguments are evaluated only once,when the def runs.
I say this because expressions generally get evaluated when any Python statement runs, so the expressions in things like ' deffoobar(a, b=greeble(c), d=None): ' are not being an exception. Theexception would be if they were not evaluated then and were instead
Notes on getting a Solaris hardware inventory
Being able to find out what hardware is in a random machine is one ofthose things you don't think about very much until you inheritresponsibility for a bunch of machines that you didn't build yourself.
The best hardware inventory program I've used is SGI's hinv (although it doesn't have enough disk information). Linux has decenthardware inventory support, but not bundled into a single command; youhave to look through a bunch of /proc files and know a few commandslike
WTO後 ( 一)
過了wto在港的會議已經有十日多了,到今晚在回家的路程中才花點時間去整理一下13日至18日的前後,及當中的感覺/位置。總是會有好多原因同理由唔去寫的,不過,今晚就想寫吧!
再次回想那幾天的(所謂)
再與太皮談文學
留言:
寂然哥:
我忘了前天才在文化廣場翻過《聚龍里》呢本小說,我見我越來越沒記性了。說到文學的受到重視與否,你一時說人哋潑你冷水,一時說我自求我道,好像有點矛盾呢?在我認為,有人批評好過沒人批
On Lisp's fundamental data structure
One of the joys of learning new programming languages is the ahamoments when something really clicks. The biggest aha moment I've everhad was with Prolog, when an assignment went from nigh impossible totrivial in a blinding flash of obvious insight.
But the one I remember most distinctly is from years ago, when I waslooking at Lisp (again), and finally realized that the fundamentaldata structure of Lisp is not lists but cons cells .
While the major use of cons cells is building lists, cons cells