Dec 28, 2009

Turn Off AutoPlay

The autoplay function is convenient but sometimes annoying. Turn off the autoplay function adn let yourselft decide your next action:
1, use gpedit.msc
2, under computer configuration->Administrative Templates->System, on the right part there is a item "Turn off Autoplay".
3, Double click that and choose "Enable" on all devices.

Dec 18, 2009

Google Wave Part 2

Although I didn't name the previous article about Google Wave as part 1, which means I will keep on trying this new stuff. Today I watched a Google wave introduction accidentally, but I would I feel very lucky that I have watched this video.

The link is here http://www.youtube.com/watch?v=v_UyVmITiYQ.

It introduced the wave functions link auto correction, typing chasing, replaying wave, embedded wave in Blog, document collaboration etc. I should say, it WOW, amazingly fancy. It's very attractive. It's cutting edge. It is worthy all your beautiful words. Applaud on this great product!

I will work hard to join the honored Google team and make my own cool products to the world!

PS: My good friends, if you have watched the video and it touched you. Please come to me for an invitation.
the google wave is a little slow. Hehe. Nothing is perfect.

Dec 17, 2009

Google Wave

I have got seven invitations of Google Wave. My friends, if you by chance visit my blog, I can give you an invitation.

Find a interesting way to search public wave - in the search box, use "with:public lang:zh".
Then Just Wave...

Dec 15, 2009

Java Applet Chinese Font Settings

If you are using a English language Windows XP, the Java Applet might not display Chinese normally. The method to solve this:
1) Put one Chinese font file which is in C:\Windows\Fonts\ to $JAVA_ROOT/jre/lib/fonts/fallback/ , for example you choose SimSun
$JAVA_ROOT means JDK installation directory.

2) Open control pannel, click Java, under Java->Java Runtime Settings->View,
Add -Dfile.encoding=gbk in the Runtime Parameters.

It will be OK.

Dec 14, 2009

Source Insight Font Setting

The default font of Source Insight is verdana, which looks strange.
The recommended font is courier new, and it looks beautiful. You can change to it through: Option->Document Options->Screen Fonts->and choose Courier New, 10.

Dec 11, 2009

MSN No Response after Launch [Weird]

A very weird problem, the newly installed latest version MSN can not run! When I try to run it, MSN will lose response after it prompts the user list.

After I searched in web, the solution is:
Unplugged your charger and after a few seconds plug it again. It really soved this problem. What a weird software!

Dec 9, 2009

Manually Create Proxy File

In many companies, we have to use proxy to connect to internet in that company needs to do the center control about web access, content filter etc.
So how to manually add your proxy settings together with the company proxy settings?
1, input the proxy setting address in the IE. In my case, I have input http://autocache.**.com, and a file download dialog will be prompted. Save this file as my.pac in C drive root. Of course you can put it in any place you want.
2, open this file with txt edit, for example notepad.

//Modified by Sai
if (shExpMatch(host, "*.blogspot.com"))
return "PROXY web-proxy.sgp.**.com:8080";
This means if the expression matches *.blogspot.com use your specified proxy.
3, open IE, in tools->Internet Options->Connections->LAN settings->check use automatic configuration script, input address file://c:/my.pac

That's it.