Sothink原来是国产的……

April 27th, 2008

今天下了个Sothink SWF Decompiler 4,也就是传说中支持AS3的flash反编译软件,在它的about里看到如下信息:

Sothink_about

搞了半天居然是国产的……不知道为什么没有中文版。


cnbeta的教育网镜像

April 27th, 2008

地址:http://edu.cnbeta.com/

RSS:http://edu.cnbeta.com/backend.php

居然才发现,火星了


Papervision3D 2.0alpha Documentation is Downloadable!

April 18th, 2008

papervisionlogo

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里加载使用:

2008-04-18_202508

如果只能在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

5867_after


Dark Color Scheme For Flash CS3

April 18th, 2008

效果:

2008-04-18_201203

配色方案:

2008-04-18_201248