星期四, 六月 14, 2007

毕业临近

毕业临近了,毕设弄的焦头烂额,可是偏偏这个时候生病了,真是郁闷

Read More...

星期五, 六月 08, 2007

应对blogspot.com 和 googlepages.com被封

创建一个文件 proxy.pac:

代码:
function FindProxyForURL(url,host){
if(dnsDomainIs(host, ".blogspot.com")){
return "PROXY 72.14.219.190:80";
}
if(dnsDomainIs(host, ".googlepages.com")){
return "PROXY 72.14.219.190:80";
}
if(dnsDomainIs(host, "pages.google.com")){
return "PROXY 72.14.219.190:80";
}
return "DIRECT";
}

然后在Firefox 里设置代理为”自动代理配置URL“:file:///home/xxx/proxy.pac

当然,目录替换成自己存放 proxy.pac 的目录。

Read More...