November 8, 2009
I wanted to extend somewhat older application adding scripting capabilities using Groovy. Unfortunately, it crashed at the very start… the reason was application already has a bunch of libraries where some reference outdated version of the Asm (org.objectweb.asm) package, while Groovy used much fresher version. My first though was to try updating Asm or some [...]
Read the full article →
October 24, 2009
Related to my previous post (moving web site to the new domain), here’s how you can forward all visitors to your new site using .htaccess (for Apache web server): RewriteEngine on RewriteCond %{HTTP_HOST} ^olddomain.com RewriteRule ^(.*)$ http://newdomain.com/$1 [R=permanent,L] This will forward all visitors to your new domain, targeting exactly the same document as requested on [...]
Read the full article →