适用于所有 travian 游戏,Greasemonky 的插件。效果不错,存档一份。 Travian3 Beyond Travian Task Queue
Monthly Archives: January 2008
Zend_Mail 发送邮件后提示 Fatal Error
这实际上是由于 PHP 不允许在析构函数中抛出异常造成的,关于这个 issue 我已经提交到 issues 上: http://framework.zend.com/issues/browse/ZF-2534 暂时没有想到好的解决方法。通常执行到析构函数时,邮件已经正确发出。所以最不济的方法就是用try…catch… 捕获异常,并忽略掉。 如下: public function __destruct() { try { if ($this->_connection instanceof Zend_Mail_Protocol_Smtp) { $this->_connection->quit(); $this->_connection->disconnect(); } catch(Zend_Exception $e) { } }
Zend_Mail 中文主题编码后超过74个字节,主题乱码的 Bug
Zend_Mail 中文主题乱码的原因主要是在编码后超长内容的设置上出现问题。 已经提交到 issues 上了: http://framework.zend.com/issues/browse/ZF-2532 如果有朋友遇到主题乱码,可以尝试使用更短的主题。或者使用我在 issrues 上提到的方法临时解决一下。 据我所知,这个 bug 在 1.5 的 perview 版本中依然存在。
Tencent 的广告居然有这么衰的错别字
“败家喜讯”,这实在是强大得我没话可说…… 很好,很强大……
你 wubi 了吗?
wubi-installer.org/ Wubi is an unofficial Ubuntu installer for Windows users that will bring you into the Linux world with a single click. Wubi allows you to install and uninstall Ubuntu as any other application. If you heard about Linux and Ubuntu, if you wanted to try them but you were afraid, this is for you. …
就被地铁这么骗了2块钱
早上打卡,进不了站。到票务中心一问,我昨天在“芳村”出站没打卡。 “芳村?” 那么遥远的地方我去干什么?天天来往于天河与海珠之间的我当即就懵了。 算了,算了,赶时间。交了两块钱保护费,走人。 路上就寻思这个事情,好好的,我去芳村干啥?后来我想明白了,丫,系统出毛病,要老子埋单。 唉,就被这么骗了 2 块钱。 以后坐地铁,看来不但要防火、防盗、防打劫。看来还要防打卡机。
Zend Framework 1.5 快要出来了
看到邮件列表上说,于 1 月 22 日冻结代码,计划 1 月 24 日正式发布。 增加了不少新的功能,正式发布的时候还可能有更多的一些功能: * Zend_Auth_Adapter_Ldap * Zend_Build/Zend_Console * Zend_Controller additional action helpers * ContextSwitch and AjaxContext * Json * AutoComplete * Zend_Form * Zend_InfoCard * Zend_Layout * Zend_OpenId * Zend_Search_Lucene improvements: * wildcard search * date range search * fuzzy search * Lucene 2.1 index file format support …
备忘,windows下 vim 使用 tab 的方法
tab 很好用,但是每次要手工打开 tab 很麻烦,使用下面的命令就可以在当前 vim 里开启新的 tab。 "C:\Program Files\Vim\vim71\gvim.exe" -p – -remote-tab-silent "%1" "%*"