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
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

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
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
MS

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;