Categories
- Android (5)
- Cloud Computing (10)
- Development (14)
- Linux (35)
- Uncategorized (36)
- WordPress (5)
Tags
Archives
-
Random Posts
Delicious Bookmarks
- Labor Efficiency: The Next Great Internet Disruption 22 hours ago
- Apache HBase 0.92.0 has been released 2012/02/04
- Ceph 2012/02/04
- Maximize virtio-net performance with vhost-net 2012/02/03
- Android-x86 - Porting Android to x86 2012/02/01
- 中国电信将成立云计算公司 践行“天翼云计算”战略 2012/02/01
Google Reader Shares
- Hudson vs. Jenkins: Is it too soon to declare a winner?
- Galaxy Nexus 的 Super AMOLED 屏幕多了 HD,但少了 Plus
- Faenza Icon theme for Gnome 3.2 makes Ubuntu a little more eye candy
- Google 在台湾、香港及新加坡兴建自己的数据中心,一到两年后启用
- 既定的秩序是教育的结果
- Amazon S3 - 566 Billion Objects, 370,000 Requests/Second, and Hiring!
Links
Meta
Monthly Archives: January 2005
An open letter from Jonathan Schwartz to Sam Palmisano
刚刚看到了一则新闻,Jonathan Schwartz, President, COO, Sun, 写了一封 open letter 给 Sam Palmisano, IBM, 要求 IBM 对 Solaris 10 提供支持。大厂商之间的较量啊,呵呵,越来越激烈了。尤记得一年多前,IBM 与 Sun 在 Java IDE tools 和 open sourcing Java 等各方面的 secure negotiation 和 open letter,现在又开始了一轮。 Dear Sam, IBM and Sun have … Continue reading
Convert the code set of the text file
在使用Eclipse开发过程中,推荐在初始安装完成之后立刻通过“首选项”-“工作台”-“编辑器”,将文本文件的内部编码修改为UTF-8,这样有利于开发工作的国际合作。 转化文本文件内码的方法: 1,Linux提供了一个专门的指令iconv来实现转化。大致的语法是:iconv -f coding -t coding inputfile -o outputfile比如,我要将一个内码为GB18030的文本文件转化成内码为UTF-8,可以:$ iconv -f GB18030 -t UTF-8 MyTestIn.txt -o MyTestOut.txt iconv简单易用,可若在一个复杂的目录结构中进行转换,毕竟麻烦了些,所以一般需要使用shell, perl来编制一段简单的程序以实现复杂的转换工作。 2,使用专门的转换工具。正是因为iconv的不能直接对复杂的目录层次直接操作这个问题,我们才考虑使用第三方的工具来转换。在我试用的工具中,Uni2Me短小精悍,而且是绿色软件,值得推荐一下。下载地址:http://alf-li.pcdiscuss.com
Posted in Uncategorized
Leave a comment