Archive for 03月, 2008
-
今天收到一个税单..
星期三, 03月 12th, 2008我第一次收到税单….不知道是不是上海政府改进政府服务,我是第一次收到税单…
我特别注意的是下面有几个大字”感谢您对祖国繁荣昌盛做出的贡献”…这辈子头一次觉得是在做贡献….不说这个…
若税单发送的同时,能顺便发布一份政府财政使用清单之类的….我会更加开心和乐于交税..那才是真正的让我感觉自己在做贡献.. -
PHP6的重大革新
星期三, 03月 5th, 2008下面的话是PHP的老爸 Rasmus Lerdorf的interview
最梦幻的是下面的话,太棒了…PHP终于有像样的虚拟机了…
What about PHP 6?
We are thinking about it. Again, we don’t all agree on what direction that should take. My personal view on what I’d like to try, though I have no idea if it will work, is to go for Parrot. Parrot is the really cool new engine behind Perl 6. But it is not tied that closely to Perl.
阅读全文——共772字 -
lighttpd文件下载实现
星期一, 03月 3rd, 2008只需要如下的简单的代码,就可以实现高性能的文件下载,原理很简单..就是linux的”零拷贝”特性..也无非就是sendfile的API的使用问题
header(”Content-Disposition:attachment;filename= \”{$filename}\”");
header(”X-LIGHTTPD-send-file: “.$path);