javascript array’s

I’m currently working on some javascripting code and had some trouble with very basic operations on array’s. This website was a great help: http://www.hunlock.com/blogs/Mastering_Javascript_Arrays

jstl el troubleshooting

A comprehensive troubleshooting guide handling some common jstl/el mistakes: http://thoughtsgarden.com/p/jstl-1.1.x-installing-configuring/ My experience 1. Download the yakarta taglibs from here: http://jakarta.apache.org/site/downloads/downloads_taglibs-standard.cgi and copy the standard.jar and jstl.jar towards the /WEB-INF/lib/ folder of your...

remote debugging

to remotely debug servers, local java executions, … add the following arguments: -Xdebug -Xnoagent -Xrunjdwp:transport=dt_socket,address=8787,server=y,suspend=n You can then connect with eclipse, starting a remote java debug on the given port. here that...

free svn hosting

I started using http://opensvn.csie.org but could problems (host not responding) when actually trying to import. Now I’m evaluating http://www.assembla.com and so far import is working. It’s a different approach because you need...

some SQL talk

not in and null values I was joining some tables with a versioning table and needed a way to filter out some specific versions. So I was thinking of the NOT IN...