Web
- 长尾理论的误区 說說有關長尾理論的誤解,並不是所有網絡服務都可以套上去的
Blog
- 賣地.網誌調查 200萬人寫 blog 條數係點計先?
- 博客的十萬個為什麼 很多很多問題,也是真問題
- 有關網誌真確性的討論 我的意見是:當然不能保
# /etc/init.d/exim4 stopStopping MTA: exim4.# pidof exim43559# grep PIDFILE /etc/init.d/exim4 | sed 1qPIDFILE="/var/run/exim4/exim.pid"# ls -ld /var/run/exim4ls: /var/run/exim4: No such file or directory# mount | fgrep /var/runvarrun on /var/run type tmpfs (rw
Web
Blog
One of the interesting things about Python for compiler geeks is that itis a partially implicit context language, in that line indentation issignificant. Implicit context languages been out of favour for a verylong time, and most parsing techniques these days are geared towardsstream oriented grammars.
(By 'implicit context languages' I mean ones where state changes likeentering and exiting blocks are implicit in the difference betweenlines, such as different indentation levels. By contrast, streamoriented languages use explicit markers for such state changes, like
最近微軟發表的網誌研究發現 香港有二百萬 blogger ,其中:
(受訪者)認為至於最令人討厭的地方,網民指不知道網誌何時更新、內容乏味或無聊、對內容可靠性存疑,均會令他們生厭。
只說「不知道網誌何時更新」這一項,這證明
描寫失物
Python's urllib module convenientlyhandles a great many bits of fetching URLs for you, including HTTP basicauthentication. Unfortunately it does this by pausing everything to 'askthe user for the required information on the controlling terminal' (tomore or less quote from the documentation). This is generally not themost useful behavior in the world, and can even be rather disconcerting.
(A more sensible default behavior would have been to either raise anexception or return a HTTP 'authentication required' status.)
As a