Creativity
- Wikipedia(維基百科)的吉祥物ウィキペたん(維基娘) 萌風吹又生之維基娘
- THE TERMINATOR VERSUS ROBOCOP 還有 predator 來搞局?
- 輕小說是跨媒體救星! 什麼是輕小說?
- COMMIX • BETA • Drag and Drop 畫漫畫
New services
- WriteToMyBlog 網上用的寫 blog 文服務,提供 rich text editor、一文多投的功能
- l8tr.
Creativity
New services
在 達Ming 那裏看到一條在 youtube 上叫「 地鐵車箱內不准上網打機,多謝合作 」的片子,內容主要是拍到一個男人在用無線上網打機,又肉緊又大聲。
看完片後,我覺得很假:
This week, we:
Volume is up somewhat from last week ,but not hugely. The per day volume level fluctuates significantly:
| Day | Connections | different IPs |
| Sunday | 21 |
I was writing code today where I needed to turn a single backslash('\') into two backlashes ('\\') in order to quote it (so that theshell wouldn't eat it, through a combination of annoyances). Myfirst attempt was:
s = s.replace(r"\", r"\\")
To my surprise, this gave me an error, and a peculiar one: Pythonreported SyntaxError: invalid token (at the closing ')'

自從近年艾西莫夫的《基地》系列重新出版,很多經典科幻作品也重出江湖,如艾西莫夫的《帝國》系列、克拉克的《拉瑪》系列、海萊茵的《銀河公民》。而最近則看到布萊伯利 (Ray Bradbury) 的作品《華氏451》和 《火星紀事》
One of the things my earlier entry got me thinking aboutwas how differently people can see the issue of machine identity. Or, tomake it more concrete, when do you give something a new name (even ifthe name is only in your head, not related to the OS-level hostname)?
(I could try to justify it by talking about how it shows something abouthow people think about their computers, but really it's just the kindof thing that satisfies my wandering curiosity, like discussions
One of my DNS diagnostic tools is a program called nsdig ; it makesa query to all of the authoritative servers for a zone. This makesit convenient to both look for inconsistencies and see what theauthoritative servers are saying, as opposed to whatever is filteringthrough your local caching servers.
As another one of my little shell scripts , and asa practical example of how little utilities stack on top of each otherto everyone's benefit, here's nsdig and its component bits:
; cat nsdig#!