7月 212011
 

转载地址:http://www.kevinwilliampang.com/2008/10/07/10-programming-proverbs-every-developer-should-know/
Proverbs are used to express universal truths or life lessons in a short and memorable fashion.  I find that they are a great way to keep things in perspective, both in life and in work.  Because of this, I have assembled 10 programming proverbs that every developer needs in their arsenal.

1. There is no smoke without fire

Continue reading »

7月 142011
 
转载地址:

http://www.ylmf.net/ubuntu/tips/2010122818544.html

注:此种方法我亲自测试,可行
 
Ubuntu 10.10启动进入命令行模式
1: 运行 sudo gedit /etc/default/grub
2: 找到 GRUB_CMDLINE_LINUX_DEFAULT=”quiet splash”
3: 改为 GRUB_CMDLINE_LINUX_DEFAULT=”quiet splash text”
3: 运行 sudo update-grub
重启 over
根本不需要任何对GDM的操作
另外 中文locale下在命令行界面显示中文可以非常简单的安装zhcon即可 还自带命令行下的中文输入法
sudo aptitude install zhcon
zhcon –utf8
主意 一定要以 –utf8参数启动,zhcon默认是gb2312编码
如果控制台下没有输入中文的需要 ,那么可以使用jfbterm ,显示速度更快,也漂亮一点
sudo aptitude install jfbterm
jfbterm -q -c other,UTF-8,iconv,UTF-8
由于参数较长 可以写入文件并加上执行权限来运行
另外 ,为了开启framebuffer ,以提升zhcon或者jfbterm的性能,还需要修改 /etc/default/grub 文件, 将GRUB_GFXMODE前面的注释(#号)去掉,后面的根据你的机器修改为 800×600或者1024×768,注意不要修改为宽屏分辨率,除非你用vbeinfo这个命令测试出显卡支持宽屏分辨率下的framebuffer
例如
GRUB_GFXMODE=800x600x16

Continue reading »