白食與械鬥(多角色)

話說中大學生報今年以延攬人才為首要目標。樓下學生會迎新夜,學生報仍然空群而出,企圖挖角。我參與其中是因為當晚學生會準備了食物,可以吃白食。

話說學生報今年有特派ORATOR(可理解為terminator之一種)覃某(05哲學),剛

20050921網摘 – Opera免收費無廣告

軟件

網站


長路漫漫本地 Web 2.0

亞強部落格介紹 了一個叫 Jumbo32 的網站,裏面有很多不同的有趣 Video,閒時可以逛逛笑笑。只可惜,這個網站一來不支持 Firefox ,二來沒有 RSS,對於 已被 RSS 餵慣 的我,預計並不會常常找來看。

這個網站令我想起了中國的 PoseShow 糗事百科


Two Python import tricks

Here's an extreme example of import and namespace trickery, drawnfrom the standard Python ftplib module:

try:  import SOCKS  socket = SOCKS  del SOCKS  from socket import getfqdn  socket.getfqdn = getfqdn  del getfqdnexcept ImportError:  import socket

(linebreaks added for clarity)

Modules are objects in Python, so a module's name binding can bemanipulated like anything else. This leads to the two things that ftplib is doing here.

First, the ftplib module would like to use the SOCKS module if itexists and otherwise


Some words of wisdom for free webmail providers

Vernon Schryver, in news.admin.net-abuse.email:

The buck always stops or is at least duplicated at the SMTP client.It does not matter to rational spam targets whether the operators ofa spam relay are paid for their services or forward spam as acharity.

(From Message-ID ,and let's hope that link stays working.)


再造人卡辛 – 好看不好吃

casshern

在看《再造人卡辛》之前,也聽過不少意見,說此片畫面好看但故事很亂,果真如此。不過,如果撇開糟糕的講故事風格,則這個故事的背景設定還是不錯的。

故事以未來世界為背景,地球分開兩大陣營「大東同盟」及「歐羅巴


20050919網摘 – 休息三天,重頭上路/網!

網摘一大堆!

遊戲展


Love never fails

Love is patient,

love is kind.

It does not envy,

it does not boast,

it is not proud,

it is not rude,

it is not self-seeking,

it is not easily angered,

it keeps no record of wrongs.

Love does not delight in evil,

but rejoices with the truth.

It always protects,

always trusts,

always hopes,

always perseveres.

Love never fails.


我總叫自己相信愛,

即使在最心灰的時候。

別人可

秋月

今年的時間好像過得好快好快(年年都係咁講),還記得上年中秋節相約朋友在一齊聚聚食食飲飲。果一期可能密密都在聽u2的sunday bloody sunday,又加上睇左d相關新聞,當晚飲多兩杯(竹葉青),喊著唱sunday bloody sunday,朋友門都嚇呆:你無

Function definition order in Python

Thomas Boutell has just startedserious Python work and wound up noticing (in the middle of here ):

What's not so painless is discovering that "function" must bedefined like this before I can call it.

Wait a minute. That's pretty standard behavior for C, yeah. But thisain't 1973. Perl and Java are both bright enough to read the rest ofyour code and find the function, allowing you to place functions inyour source code where they feel right