想到網上找找其他《NANA》電影的評論,所以在 Google Blog Search 裏找 NANA 字眼,出來的結果全是英文,所以到 Advanced Blog Search 收窄範圍,先選取了 Traditional Chinese 來搜尋, 沒有結果 。再選用 Simplified Chinese , 有結果了 ,全是中文的,但奇怪的是裏面有繁有簡,看來 Google Blog Search 對
20051108網摘 – 香港的 Yahoo! Blog
web development
- Visual Studio Express Visual Studio 和 SQL Server 的 express 版本,免費下載
- Webpage Layouts 有很多很多的網頁排版圖,適用於設計和推銷
- Rich Text Editing With Dojo Dojo 推出的 wysiwyg editor,cross-browser,甚至可以在 Safari 使用
- Monkeygrease 一個 Server-Side 版本的 GreaseMonkey,用很簡單的 filter 原理插入 Javascript, CSS
- Upload a file Ajax 應用,有 Progress Bar 上
Fun with DNS: a semi-obscure problem
I just helped a friend troubleshoot a DNS problem he was having on oneof his home Linux machines. The specific problem was that Firefox wastaking a long time to start connecting to web sites; he believed itwas DNS problems.
I ran down some standard guesses:
- maybe one or more nameservers in
/etc/resolv.confweren'tresponding, and Firefox was having to wait for lookups against eachto time out. But straight lookups withdigweren't delayed, so itwasn't that.
Examining Python's string concatenation optimization
In the comments on the other day's' minimizing object churn ' entry, it wasnoted that Python string concatenation had been optimized some in therecent 2.4 release of the CPython interpreter. The 2.4 release notessay (from here ):
- String concatenations in statements of the form
s = s + "abc"ands += "abc"are now performed more efficiently in certaincircumstances.
But what is 'more efficiently' and what are the 'certaincircumstances'? What does it
Weekly spam summary on November 5th, 2005
This week we received 12,872 email messages from 229 different IPaddresses. Our SMTP server handled 22,584 sessions from 1,544different IP addresses, which is significantly down from last week .
To go with it, overall connections are down a lot from last week : we only saw 93,950 connections from at least 31,000different IP addresses. I believe this is the lowest connection rateI've seen since
.....
raidoblog也死埋
不過...
12月之後會重生
密切留意
謝謝關心
Minimizing object churn to optimize Python code
One of the interesting things about writing code in high level garbagecollected languages is how your optimization concerns can change. Oneoptimization in all GC'd languages, Python included, is minimizing thecreation of new objects and maximizing the reuse of old ones; thefewer new objects you create, the fewer cycles garbage collectioneats, the less memory gets fragmented, and you often even use lessmemory overall.
Minimizing object churn is behind several well-known Python(anti-)patterns, such as 'avoid repeated string
20051105網摘 – 微軟大動作
MS
- Microsoft Technology Preview 有關 MS Live 這個平台的的一些投影片
- Feeds and well-formed XML IE7 只會支持 well-formed 的 xml,所以記著要 Validate
- Microsoft 是食而無味,棄之可惜嗎? Google 的掘起,才正真的對 MS 做成威脅,不得不說近期 MS 的動作,全是為了對付 Google..
- Microsoft buys FolderShare 用來強化 Windows
Modifying Linux kernel configuration options the easy way
Modifying a Linux kernel configuration option can be an annoyingexperience, as you poke around the menus of ' make menuconfig ' tryingto find where the configuration option you want to change is hiding.Fortunately there's a less well known but much easier way.
The kernel build process stores configuration settings in the file .config in the root of the kernel source tree. However, it generatesother things from the file (and some options are interdependent), so youcan't just edit the file and go;