--EOF--
Vista中使用XP的宋体
--EOF--
微软OOXML正式成为国际标准
为了使OOXML文档格式成为国际标准,微软一直在努力寻求各界支持,包括积极争取各国政府合同,吸引开发界开发新的应用程序软件等. 此前,OOXML的反对者一直认为将OOXML 文档格式引入,使之成为ISO已经批准的开放文档格式(ODF)的对手,不利于确立标准的初衷.
2007年9月份,ISO曾组织了一次投票,当时微软 OOXML文档标准没有争取到三分之二的多数票同意,未能获准成为国际标准.
但是据OpenDoc Society透露,在截止于今年3月29日的第二轮投票中,OOXML获得的支持率达到了75%.ISO原本计划于本周一公布投票结果,但是考虑到要优先通知各成员国标准机构,因此决定推迟到周三正式公布.
OpenDoc Society表示,它是从各成员国标准机构搜集到的这些信息.而微软则在一份声明中对ISO的这一决定表示欢迎,并称它已经从公开获取的信息了解到OOXML获得了足够的支持票数.
------
中国和俄罗斯投了反对票
--EOF--
TextMate中文字体问题
--EOF--
更新MAC OS内核
(1)、下载新的内核,解压到某目录,假设是 /Users/yourname/Desktop
sudo cp ~/Desktop/mach_kernel /mach_new
sudo chown 0:0 /mach_new
sudo chmod 644 /mach_new
sudo reboot
(2)、开机时在Darwin Loader提示下打 mach_new -v回车
这是测试一下这个新内核有没有问题,如果一切OK 那么再替换:
sudo rm /mach_kernel
sudo mv /mach_new /mach_kernel
--EOF--
解决Leopard安装时出现的不能进入创建帐户步骤的方法
How to: Install Error loop at account creation
Issue: Upon install, the process hangs in an infinite (?) loop circling between chosing language and creating / transferring an user acount ("Do you already own a mac?").
According to the forum, the problem seems to be connected to problems concerning the network card.
Solution 1: Importing an account from an existing (Tiger) installation.
Solution 2: Booting with the flag "Graphics Mode"="640x480x32". The resulting low screen-resolution prevents the setup screen, thus skipping the "loop". As one is not able to create a new username, only the default "admin" is created. This can be changed later on.
Solution 3: Some people reported success with disabling the network card in the bios or disconnecting the cable.
Solution 4: Boot using "-s" flag then type ->
/sbin/mount -uw /
passwd root <- Type any password you want
touch /var/db/.AppleSetupDone
reboot
--EOF--