Tomcat remote debugging

Sometimes your web applications behave different when deployed to the application server although everything worked fine when running inside Eclipse on your workstation. In this case it is helpful to remote debug the application. In case of using Tomcat as application server just add the following VM parameters to JAVA_OPTS: -Xdebug -Xrunjdwp:transport=dt_socket,address=8000,server=y,suspend=n I do this inside the file setenv.sh in the bin directory by adding a line JAVA_OPTS="…options…" The paramete -Xdebug tells the VM to start in debug mode. Read more →

Ctrl-S in a linux shell

When using vi to edit documents on linux systems from time to time I press Ctrl-S to save my changes - damn Windows shortcuts 😉 This kind of freezes the shell because it locks the terminal output. If this happens to you press Ctrl-Q which causes the shell to resume terminal output. See this blog for more linux terminal shortcuts. Read more →

Cool interview with Bill Gates

Scoble made a really cool interview with Bill Gates and provides the video of it on his blog. Gates seems really relaxed unlike in many other interviews I have seen. He talks about his retirement and (of course) the future of Microsoft and Computers in general. Must be great to sit on one table with one THE software pioneers - thanks for sharing this experience Scoble! Read more →

And finally it’s out: the iPhone

Blogs of tech enthusiasts are really busy these days ‘cause CES Las Vegas is happening. But the biggest news today may be the release of the iPhone. Steve Jobs presented it today in his Keynote. I love Apple slogans: Introducing iPhone. Apple reinvents the Phone. Check out these cool sites having all the details of Apples next coup: http://www.engadget.com/2007/01/09/the-apple-iphone/ http://www.mactechnews.de/mwsf2007ticker/index.html http://www.tuaw.com/2007/01/09/iphone-announced And last but not least: the official iPhone page Read more →

Automatic backups

I found an interesting blog entry about how to set up an automated backup for a windows system by using a program called SyncBackSE - I’ll have to give it a try because I am not satisfied with my current backup solution (using Windows Backup from time to time 😀) Read more →

Java memory leaks

Today a colleague of mine found nice page with the story of a java memory leak hunter. This is a story out of real life - if you ever tried to find out why huge java (server) applications get an OutOfMemoryException you’ll know what this man is talking about. He found out some very interesting things. On this page an Eclipse profiler is mentioned - looks nice, I’ll have to test it. Read more →

Software for my Blackberry

Since I switched from my SonyEricsson P910i to a Blackberry 7290 a year ago I missed my password safe. On the P910i I was using Handy Safe because it had a desktop part that allowed me to sync it with my PC. The password safe RIM provides for Blackberries could not be synchronized with the PC and so I was searching for another one. Finally I found it:MiniSafe for Blackberry - it allows me to define categories and types, has a built in password generator and I can synchronize it with my PC. Read more →

convert ogg to mp3

Today I googled for a program to convert ogg vorbis audio files into mp3 files - because my car player can’t play ogg files. I found hundreds of shareware programs with ugly UI’s and bad encoders. At last I found a real cool one at www.rarewares.org - LameDropXPd did exactly what I wanted: Let me drop in the ogg’s, converted it using the best mp3 encoder - lame (IMHO), tagged it and saved it in the correct folder Read more →