Aug 27
Before install Erlang, please make sure GCC is installed.
1. Download Erlang source code from http://www.erlang.org/download.html
2. Unarchive the file
3. run Terminal and follow the steps
cd otp_src_R14A
./configure
make
sudo make install
4. type erl in Terminal, it should be ok now.
There is a plugin for XCode to use Erlang.
Download from http://sourceforge.net/projects/quickconnect/ , and run it.
written by admin
\\ tags: erlang, mac, Software
Jul 13
When open taglist in vim, it may says:
Taglist: Failed to generate tags for /my/path/to/file
ctags: illegal option — -^@usage: ctags [-BFadtuwvx] [-f tagsfile] file …
Solution is quite easy, open .vimrc and add the following line
let Tlist_Ctags_Cmd=’/location/ctags’
In my mbp, Snow Leopard, it is ‘/opt/local/var/macports/software/ctags/5.8_0/opt/local/bin/ctags’
written by admin
\\ tags: Software, Vim
Jan 15
If you are a beginner of Linux, especially, Ubuntu, this software is what you need. Ailurus is a great tool which can help you “Install software”, “Configure Linux” and “Study Linux skills”.
Ailurus is an open source software, located in Google Code, here is the link. You can find download address from right side of ailurus homepage. Let’s see what ailurus looks like.
Continue reading »
written by Kyle Wu
\\ tags: Linux, Software, Ubuntu
Dec 10
自Google Chrome推出以来,受到很多人的喜爱。但是以前仅有Windows版本的,不过现在,Google Chrome for Linux终于出现了。这里可以下载到。感觉速度真的很快,比Firefox强很多。之前我已经使用过Chromium一段时间,不过苦于没有扩展,所以一直没有放弃firefox。但是现在,有相当多扩展可以下载和使用,是时候放弃Firefox了。
LifeHacker介绍了18款扩展,我没有全部使用,只使用了一部分,这里做个简要介绍。
Xmarks for Chrome Beta, 这款扩展我不多说了,我一直没有放弃Firefox的主要原因就是它。它可以同步书签到网络上,免去了备份书签的困扰。
Google Alerter,提示GMail, Google Wave和Google Reader的未读数目。代替了Firefox下GMail Notifier等扩展。
ChromeMilk,专门针对Remember the milk的扩展,Remember the milk是一个GTD网站。
主要是这三个插件,当然还有针对twitter,flickr, delicious等的插件,具体请到LifeHacker上自行查找,链接在这里。
written by Kyle Wu
\\ tags: Google, Ubuntu
Nov 23
Global Menu是Mac OS系统的一个基本功能,用过Mac的肯定都知道。使用Gnome的Linux一样可以做到,这里是gnome2-globalmenu的项目主页,有兴趣的可以看一下,里面的wiki挺全,有安装方法介绍。这篇文章不是介绍如何安装global menu,而是解决卸载后出现的一个小问题。
在卸载global menu后,如果你从命令行启动程序,就会发现往往都会提示如下的错误
Gtk-Message: Failed to load module “globalmenu-gnome”: libglobalmenu-gnome.so: cannot open shared object file: No such file or directory
说明在启动程序时,依然去调用globalmenu-gnome模块,但是由于已经卸载,所以提示没有找到。
解决方法很简单,运行gconf-editor,然后找到app -> gnome_setting_daemon -> gtk-modules,在右方可以看到global menu还是选中状态,取消选中或者删除就可以了。这样子再次运行程序就不会出现错误了。
gconf-editorg
written by Kyle Wu
\\ tags: Linux, Ubuntu