Very pretty icons . They are Volue, My Music, My Computer, Start Menu, Notebook, Search, Forward, Back, Trash, Up, Package, Media Player .
I have just seen a new entry on aw’s blog , it saids google China launch a new domain : g.cn . He make a joke on this , call it “G dian CN(G点CN)” , In Chinese , G dian can means G-spot of women . What dose google thinking about this when they heard this ? hah ...
Flash CS3 has launched a long time , and since AS 3 launch more than one year , but why Adobe don’t publish PDF format AS 3 language reference ? I don’t like to access internet again and again , to waiting the documents loading , so most time , I use Chinese version PDF document . but now , I can’t find it until now !
When I back to Flash AS development , I found I don’t have a good editor for coding AS 3 . My favorite editor is SE|PY AS editor , but it is not update 8 months long until now . Flash Develop ? I can’t understand why it need both .net framework and JRE . this made me just can use it on windows , not ubuntu linux .
I want a good AS editor , the best AS code editor in my wish is :
1. Lightweight . The best is less than 5 MB .
2. Can integrate most of AS complier . best of support haXe .
3. Code syntax highlight and code tips . Custom class library supports .
4. THE MOST IMPORTANT : Cross platform .
Cause there is some spammer always publish some bad comments here , so I decide close the comment system .
In this spring , The largest ISP and domain parsing service company Hichina(Chinese name Wanwang http://www.net.cn/) , has launch a new compaign , It solds the top domain of China , dot cn domain names just RMB Y1(about USD$0.13) , It is the most cheap price until now .
When I see this so Chinese style medal , I can’t belive it is a medal of a sport game . It is so beautiful and very Chinese . In chinese , I know these three kinds of jade is the most rarity .
Now in China , everybody is hoping the olimpic games in next year . In everywhere , you can heard people talking about it , we wish we can get a good record in next year !
See also:
http://en.beijing2008.cn/67/83/article214028367.shtml
Preview :
http://d0706.9911.com/200609122143/rmdd040/n118.wma
Lyric :
There is no better song than the one you sing for someone special.
Parents sing a lullaby for the children,
lovers singing to share their feelings ,
and singing for your close friends to show your appreciation.
There are so many songs in this world.
I believe the music has the power to heal our hearts.
So I hope that many people will hear this song and feel something story in thire hearts.
There really is no better song than the one you sing for the ones you love.
But for today,this one’s just for you…
It is recoding and compositing in the New Year’s Eve . Because I ‘m so tied , when I look it again , I found there is lots of wrong spell in the video .
Because Chinese goverment always making blogspot down . I get my english blog back here . And I will update this more often .
There is a BIG BUG when Chinese users using lots of Europe PHP Applications . Most of them work with mySQL database , and they works very well too . But in mySQL 4.1 update , it adds a new feture to sopport muti languages . That makes PHP code different than before . If it still use the codes before , It will take lots of problems . First , when all database , tables and fields encoding is lattin_swedish_ci , and data encoding is utf8 , You can’t see any wrong in your system , it looks work very good and strong . If you are using mySQL 4.1 and working on Chinese or other mutibyte languages , now you can open the database with any tools (like phpMyAdmin ) To see data in Chinese , NOBODY can read them .Second , when all database , tables and fields encoding is utf8_gerneral_ci , and data encoding is utf8 , Now you try insert “恐怖” this two Chinese charactors in your system , when you read them from your system , it will be changed , also , nobody know what’s meaning of them . this is also seen in database .OK , if this problem just can’t read the data in phpMyAdmin or other database tools , it is not a problem , BUT , when we try to make a sql dump file , and restore them , the problem comes . You can’t get a right database and you can’t restore data to database anyway .we also find this bug in a Ajax forums applacation Vanilla , the fix solution is very easy . Once you connect to database , add a SET NAMES query to database . That’s all !
eg.
This is some code from Vanilla , it have mutibyte encoding problem :
$this->Connection = @mysql_connect($this->Context->Configuration['DATABASE_HOST'], $this->Context->Configuration['DATABASE_USER'], $this->Context->Configuration['DATABASE_PASSWORD']);
To fix it is very easy :
$this->Connection = @mysql_connect($this->Context->Configuration['DATABASE_HOST'],
$this->Context->Configuration['DATABASE_USER'],
$this->Context->Configuration['DATABASE_PASSWORD']);
@mysql_query('SET NAMES "utf8"', $this->Connection);]