在Win下使用Quaqua样式LookAndFeel

GUI里,MacOS的Aqua应该是公认的美艳了。

Swing有一套开源的Quaqua Look And Feel,不过,据说是MAC only的。

下了源码看了一下,100%纯Java,官网的页面上,也有个JNLP,能在Win下运行……

能运行就好办,查资料~~~

Read the rest of this entry »

, ,

141 Comments

代码高亮插件测试

package turnip.gray.test;
 
public class HelloWorld{
	private static final String HELLO;
	private final String WORLD;
 
	static{
		HELLO = "Hello";
	}
 
	public HelloWorld(){
		WORLD = "World";
	}
 
	public String toString(){
		return HelloWorld.HELLO + WORLD;
	}
 
	public static void main(String[] args){
		HelloWorld test = new HelloWorld();
		System.out.println(test);
	}
}

Read the rest of this entry »

, , , , , ,

No Comments

Google果然是王道

CB上看见一篇文章:摒弃成见 三大搜索引擎黑箱测试。作者的意思好象是要抨击Google Fans的盲目的。

里面给了一个网址:http://blindsearch.fejus.com/

用了一些常用的关键词测试之后,发现果然Google才是王道。

Read the rest of this entry »

, , , ,

No Comments

AHCI驱动的安装及优势

前几天装xp sp3(4411S到手第一天),就把SATA模式改成IDE了,后来倒是从本的官网下了驱动了,但是装的时候说没满足最低要求。当时也没深究,就放弃了,这两天申请了个08 SE的key,都说AHCI模式好,于是想再鼓捣一下:

Read the rest of this entry »

, ,

No Comments

换个地方,重新开张

前一阵申请了个1987M的空间,挺好用的,结果没想到不到俩月,服务供应商就让服务器运营商封了- -!

今天,在这里看到了这个(顺带一提,这个站介绍的东西不错。另一个问题:虽然是介绍免费的网站,不过这类网站的空间和域名应该都不是免费的- -!)。于是决定再试一次。

Read the rest of this entry »

, ,

1 Comment