Home | About the author | Resume | << March 2009 | May 2009 >>
SMS Bundle - Mobile Marketing Solutions
SMS Bundle is an Australian-based service for sending marketing SMS and MMS

Brainteaser: Overridable methods

Inheritance & overridable methods

Consider the following case of inheritance: public class Parent { public Parent() { getValue(); } public void getValue() { }}public class Child extends Parent { private final Integer integer; public Child() { integer = new Integer(888); } @Override public void getValue() { ...

Read more...

Social Bookmarks :  Add this post to Slashdot    Add this post to Digg    Add this post to Reddit    Add this post to Delicious    Add this post to Stumble it    Add this post to Google    Add this post to Technorati    Add this post to Bloglines    Add this post to Facebook    Add this post to Furl    Add this post to Windows Live    Add this post to Yahoo!


If you like this post, then consider subscribing to the full feed RSS.

Online PDF Generator

Generate PDF online from HTML snippets

Online PDF generator now available. This simple but useful online PDF generator tool allows you to generate PDF document online from HTML snippets. The tool uses Flying Saucer library. The PDF is generated with full compression, including meta data in PDF properties. Keep in mind that for successful PDF generation, ...

Read more...

Categories : java, pebble
Social Bookmarks :  Add this post to Slashdot    Add this post to Digg    Add this post to Reddit    Add this post to Delicious    Add this post to Stumble it    Add this post to Google    Add this post to Technorati    Add this post to Bloglines    Add this post to Facebook    Add this post to Furl    Add this post to Windows Live    Add this post to Yahoo!


If you like this post, then consider subscribing to the full feed RSS.

Export Pebble Blog Entry to PDF Plugin

Added support for non-Latin fonts

In one of my previous posts, I described how I implemented a plug in for Pebble blogging software that allows export of blog entries to PDF. Today, I have made modifications to enable plug in to load font files at run time during PDF generation to provide support for additional non-Latin languages. So now, it is ...

Read more...

Categories : java, pebble
Social Bookmarks :  Add this post to Slashdot    Add this post to Digg    Add this post to Reddit    Add this post to Delicious    Add this post to Stumble it    Add this post to Google    Add this post to Technorati    Add this post to Bloglines    Add this post to Facebook    Add this post to Furl    Add this post to Windows Live    Add this post to Yahoo!


If you like this post, then consider subscribing to the full feed RSS.

Brainteaser: Broken case of inheritance

Consider the following case of inheritance: public class ExtendingHashSetE extends HashSetE { private int counter = 0; public ExtendingHashSet() { } @Override public boolean add(E e) { counter++; return super.add(e); } @Override public boolean addAll(Collection? extends E c) { ...

Read more...

Technorati Tags : , ,
Social Bookmarks :  Add this post to Slashdot    Add this post to Digg    Add this post to Reddit    Add this post to Delicious    Add this post to Stumble it    Add this post to Google    Add this post to Technorati    Add this post to Bloglines    Add this post to Facebook    Add this post to Furl    Add this post to Windows Live    Add this post to Yahoo!


If you like this post, then consider subscribing to the full feed RSS.

How bad the recession is affecting IT industry these days?

Recession worsens in UK and around the world

Within last three weeks, two of my friends living in UK called me with the same question: "How bad is recession in IT industry in Australia? I am thinking to migrate". One guy from Brazil that I know emailed me: "Hey, I am lodging my application for permanent residency in Australia"... Hm... I ...

Read more...

Categories : off topic
Technorati Tags : , , ,
Social Bookmarks :  Add this post to Slashdot    Add this post to Digg    Add this post to Reddit    Add this post to Delicious    Add this post to Stumble it    Add this post to Google    Add this post to Technorati    Add this post to Bloglines    Add this post to Facebook    Add this post to Furl    Add this post to Windows Live    Add this post to Yahoo!


If you like this post, then consider subscribing to the full feed RSS.