Feb 06

This is pretty interesting:

The Visualization of Browser War

The Visualization of Browser War

  • Share/Bookmark
Feb 05

This should be a good tutorial. I need to look into it:

http://www.ibm.com/developerworks/edu/os-dw-os-ecl-commplgin1.html

I know there is an excellent tutorial in Chinese. It demos how to craft a source code editor using Eclipse JFace Text Framework and a bit ANTLR. The link is here.

  • Share/Bookmark
Feb 05

Here are some tutorial links for learning antlr v3:

  1. The Getting Started Tutorial from Official Site is Damn Good!
  2. ANTLR Works is a damn good tool!
  3. The Definitive Antlr Reference is a good book
  4. ANTLR 3.X Tutorials are good video course and introduced a damn good eclipse tool: ANTLR IDE.
  • Share/Bookmark
Feb 03

After installing Ubuntu 9.10, eclipse became naughty. I tried to create a Java Project. However, mouse-click on Next/Finish buttons didn’t work. The buttons got focused, but no response. So you have to press ENTER or SPACE to actually press the buttons.

A quick fix here: create a shell script. For example, eclipse.sh:

export GDK_NATIVE_WINDOWS=1
/home/frankdu/Developer/eclipse/eclipse

Then add executable permission to the file: chmod +x ./eclipse.sh

Every time you run eclipse.sh to launch eclipse. At least we can be happy for a while. Please see http://www.eclipse.org/forums/index.php?t=msg&goto=498640& for more information.

  • Share/Bookmark