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() { ...
If you like this post, then consider subscribing to the full feed RSS.
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, ...
If you like this post, then consider subscribing to the full feed RSS.
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 ...
If you like this post, then consider subscribing to the full feed RSS.
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) { ...
If you like this post, then consider subscribing to the full feed RSS.
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 ...
If you like this post, then consider subscribing to the full feed RSS.
Categories : off topic
If you like this post, then consider subscribing to the full feed RSS.
















