SPAM SPAM SPAM

| Security

Seems that my blog was targeted by spammer. I have a work around here that makes comments to be pre-approved for most cases.

参与评论

刚听说联合国的中文文件从2008年起不再使用正体中文了

| Life

使用简体中文是适应使用简体中文的人口逐渐增多的趋势,可是如此废弃正体中文,实在令人感觉不解和遗憾。

参与评论

Python 2.4.3 RC1

| Development

So Python will release the bugfix release, 2.4.3. Now they have released the RC1 as a release candidate, with more than 50 bugfixes!

参与评论

郁闷,被拒了……

| Security

想要加入那个team看来还需要很长时间的努力。。。

参与评论

终于抓住了py-ldap中的内存泄漏!!

| Development

之前曾经误认为 Python中存在内存泄漏,不过最终证明还是C程序的问题。Py-LDAP2这个模块在某些情况下,会泄漏一个空的List,具体泄漏代码如下:

retval = Py_BuildValue("(OOiO)", result_str, pmsg, res_msgid, pyctrls ? pyctrls : PyList_New(0));

当pyctrls == NULL时,Py_BuildValue()会为PyList_New(0)生成的那个对象再增加一个引用,这样会导致泄漏。这一问题会发生于调用result()而all=0的情形。

阅读全文…( 本文约 196 字,阅读大致需要 1 分钟 )

老祝:alexa的过去、现在、未来都是个屁 zz

| Shared Chaos

转载自 TechWeb - 这里。供现在还相信Alexa的人参考。

晚上晓斌告诉我有人在别的论坛,说techweb的alexa排名作弊。笑死,不知道说什么好。找出过去的帖子,借这个机会,继续发展发展我关于alexa的「屁说」。

阅读全文…( 本文约 434 字,阅读大致需要 1 分钟 )

号召:捐款或买CD,救OpenBSD!

| Others

由于购买 OpenBSD CD 的人数日益减少,导致 OpenBSD 最近几年财务困难,最近两年亏损达四万美元。如果再找不到资金来源,恐怕 2007 年的 OpenBSD hackathon 将无法如期举办,因为其花费在1-3万美元之间,还不包括将提供给贫困和在校开发者的旅行补助。

阅读全文…( 本文约 180 字,阅读大致需要 1 分钟 )

历史性的一天!!

| Security

我们终于干掉了MX上的第一个qmail,换成了postfix!!

参与评论

关于护照的换发

| Life

算是生活常识吧。记两笔。

阅读全文…( 本文约 205 字,阅读大致需要 1 分钟 )

My misunderstanding of OpenLDAP API

| Development

I used to think that ldap_unbind() is the opposite of ldap_bind(), however I was wrong. Pierangelo Masarati (ando at openldap) pointed out that it was actually opposite of ldap_init(). So, do NOT expect init() -> bind() -> search() -> unbind() -> bind() would success, it’s simply wrong thing. You do not need to unbind() before you do another bind().

Just make a note.

参与评论