Archive for the ‘Programming’ Category

Eclipse Plug-In Dependencies

Friday, January 22nd, 2010 Posted in Programming | No Comments »

I had plugin A as a dependency of plugin B. A had some .*jars in its build path. Plugin B was supposed to use some of the classes in those *.jars. When I added the corresponding packages to be exported ...

Eclipse language packs

Sunday, June 14th, 2009 Posted in Programming | No Comments »

When using the eclipse babel project. And you want to switch back and forth between several languages you can use the switch when startinf eclipse -nl Make sure you use the -clean command when starting eclipse to make the changes ...

C++: Note about pointers

Tuesday, June 9th, 2009 Posted in Games, Programming | No Comments »

I am still learning ... so don't mind me stating the obvious: int* a[3]; // defines an array a ...

eclipse ant auto build

Tuesday, March 10th, 2009 Posted in Computer, Programming | No Comments »

Here is a little note about eclipse using ant as an auto build process: http://www.eclipsezone.com/eclipse/forums/t65486.html

eclipse svn+ssh ppk and pageant

Tuesday, March 10th, 2009 Posted in Computer, Programming | No Comments »

Here are some links describing how to set up eclipse using a svn+ssh connection with a ppk file: http://www.woodwardweb.com/java/howto_configure.html http://wazong.de/blog/2008/03/05/subversion-mit-svnssh-protokoll-und-eclipse/ You can combine those two methods and use the '-2 -i "path"' options in your SVN_SSH system variable. Or use Pageant to load ...

Latex for WordPress

Thursday, November 27th, 2008 Posted in Computer, Programming | No Comments »

I found a latex plugin that I committed some work to some time ago nicely taken care of by zhiqiang. Here is a link to the article: http://zhiqiang.org/blog/plugin/mimetex and here is the Wordpress link: http://wordpress.org/extend/plugins/latex/ I had some trouble getting it to work, due ...

MySQL: How te get last autoincrenment id.

Saturday, July 12th, 2008 Posted in Computer, Programming | 2 Comments »

There are three ways using java: http://dev.mysql.com/doc/refman/6.0/en/connector-j-usagenotes-basic.html#connector-j-examples-autoincrement-getgeneratedkeys This is the one I prefere, because the value is scoped by the Statment instance, hence only overwritten when I reuse the specific Statement: Statement stmt = null; ResultSet rs = null; try { // ...

Classpath entry will not be exported or published

Wednesday, June 18th, 2008 Posted in Programming | No Comments »

Classpath entry will not be exported or published. Runtime ClassNotFoundExceptions may result. This is an error I get when I use Eclipse 3.3.2 with WTP 2.0.6. I added a few libraries to my BuildPath. I found somebody having the same issues: Hi, I have ...

JSP/Servlet Tutorials

Friday, June 13th, 2008 Posted in Programming | No Comments »

first edition of a online book: http://pdf.moreservlets.com/ second edition: http://pdf.coreservlets.com/

Java3D

Thursday, April 10th, 2008 Posted in Programming | No Comments »

First a little trick to make java3d work with eclipse without having administrator privileges. You have to add the "*.jar"s from the java3d *.zip file (hopefully found here: https://java3d.dev.java.net/binary-builds.html) to your build path and add -Djava.library.path=<DIR where your *.so or *.dll files reside> to ...