Java – print stack trace to a String

February 25th, 2010

Simple and quick one today - what if we need to print stack trace into a String?

JAVA:
  1. ...
  2. catch (Exception e) {
  3.     StringWriter sw = new StringWriter();
  4.     PrintWriter pw = new PrintWriter(sw);
  5.     e.printStackTrace(pw);
  6.     pw.flush();
  7.  
  8.     String stackTraceString = sw.toString();
  9.     //use the stackTraceString as you need...
  10. }
  11. ...

Instantiating Beehive JdbcControl manually

February 18th, 2010

Common usage pattern for Beehive Jdbc control is:

  • Create DB control class by extending JdbcControl
  • Declare DB control variable in page controller and use @Control annotation to have it automatically instantiated and injected
  • Use the DB control

The above works fine. But what happens if we would like to use our DB control class from within JSP page which is not part of our Beehive application and has no access to our controller?

The following text presents one possible approach.

Read the rest of this entry »

Malibu for iPhone/ iPod touch released!

February 5th, 2010

Malibu is a free drumming game for iPhone and/or iPod touch with talking pelican and awesome dancers and it was just released!

Download here.

More information can be found here.

Remote Mic now supports both Mac OS and MS Windows!

November 19th, 2009

Remote Mix is application that turns your iPhone into a wireless microphone (or a bug).

Remote Mic for iPhone

Today, Remote Mic Console 1.3 has been released for both Mac OS 1.5.x and MS Windows XP.

More information here

GrowlTunes patch accepted

November 10th, 2009

My small GrowlTunes patch (described here) made its way into official release of Growl 1.1.5:

I am happy to have contributed to such a great piece of an open source software.

Trashcan for iPhone/iPod touch

April 26th, 2009

Simple and fun game helping you get over all these boring meetings!

Trashcan for iPhone

More info on http://www.dolejsky.com/trashcan. Download here.

Trashcan for iPhone

John Mayer – Good Love Is On The Way – Drum tab

April 2nd, 2009

Again, very original drumming in this song. Check it out!

Download drum tab PDF here.

John Mayer – Bold As Love – Drum tab

April 2nd, 2009

One of my favorites songs to play on drums. Very interesting bass drum part.

Download drum tab PDF here.

Lenny Kravitz – Rock and Roll is Dead – Drum tab

April 2nd, 2009

Fun song to play. Be sure to groove hard!

Download drum tab PDF here.

Eric Clapton – Layla (unplugged) – Drum tab

April 2nd, 2009

One of the well known songs from Eric Clapton's MTV Unplugged CD.

Download drum tab as PDF here.