Papervision3D 2.0alpha Documentation is Downloadable!
April 18th, 2008

Since Papervision3D 2.0-Great White branch is still in alpha, there is currently only a temporary documentation until the official documentation is released by the Papervision3D team:
http://lostboys.epologee.net/papervision/greatwhite.doc/html/
You can download this offline version of that documentation:
greatwhite.doc.7z
其实完全没必要装Stylish
April 18th, 2008
Stylish是Firefox下自定义网页界面的一个插件,相当不错,不过如果已经装了Greasemonkey,就完全没必要装Stylish了。userstyles.org有相当一部分Style能直接在Greasemonkey里加载使用:

如果只能在Stylish里使用的话,只需要把它的css复制进一个字符串(记得删除换行和替换双引号为\"),然后新建一个作用于相应网站的脚本即可:
var css = "这里是css";if (typeof GM_addStyle != "undefined") { GM_addStyle(css);} else if (typeof addStyle != "undefined") { addStyle(css);} else { var heads = document.getElementsByTagName("head"); if (heads.length > 0) { var node = document.createElement("style"); node.type = "text/css"; node.appendChild(document.createTextNode(css)); heads[0].appendChild(node); }}用这种方法成功的用Greasemonkey实现了Gmail Redesigned:

