MorphAdorner + Eclipse OutofMemoryError!

28 07 2009

MorphAdorner 1.0
Eclipse Galileo 3.5

In eclipse.ini
-startup
plugins/org.eclipse.equinox.launcher_1.0.200.v20090520.jar
--launcher.library
plugins/org.eclipse.equinox.launcher.win32.win32.x86_1.0.200.v20090519
-product
org.eclipse.epp.package.jee.product
--launcher.XXMaxPermSize
128M
-showsplash
org.eclipse.platform
--launcher.XXMaxPermSize
512m
-vmargs
-Dosgi.requiredJavaVersion=1.5
-Xms40m
-Xmx720m

Running examples:

Right-Click edu.northwestern.at.morphadorner.examples.PosTagString -> Run As -> Run Configurations -> Java Application->New

In Arguments Tab->Program arguments add the text to tag:
"I spent all day trying to figure out Eclipse java.lang.OutOfMemoryError: Java heap space!"

VM arguments add:
-Xms512m -Xmx1024m





struct type redefinition

5 03 2009

the header file may be included twice. use #ifndef to prevent multiple definitions

#ifndef COMMON_H
#define COMMON_H
#include "Common.h"
#endif /* COMMON_H */

#ifndef = if not defined
#ifdef = if defined





TinyMCE – r has no properties

25 03 2008

Occurs in firefox when there’s a textarea in a hidden div.

Change in tiny_mce.js


IsCollapsed: function () (
This.getRng var r = ();
if(r.item)return false;
return r.boundingWidth==0||this.getSel().isCollapsed
)

to


IsCollapsed: function () (
This.getRng var r = ();
if(r==null||r.item)return false;
return r.boundingWidth==0||this.getSel().isCollapsed
)