24 January, 2015

Remove - Powered By Blogger Attribution

One of the most annoying thing on my blog was the "Powered By Blogger" in the attribution gadget.
Getting rid of it is very simple, but there is no straight way to do it from the UI that blogger provides.

This is how i got rid of it. One simple line

#Attribution1{display:none;}

Here are the detailed steps to do it

21 January, 2015

Java - The ArrayList Class

This post highlight's some of the important points about ArrayList.


  • ArrayList class extends AbstractList and implements List interface
  • Data structure used for ArrayList is resizable or growable arrays
  • Duplicates are allowed in ArrayList
  • Insertion order is preserved
  • Heterogeneous objects can be inserted.
  • Null values are allowed
  • ArrayList is serializable
  • ArrayList is clonable

Java - List and sub classes

List interface in Java is one of the very commonly used Collection Interface. 
We will look at important sub classes and methods of List Interface.

 

16 January, 2015

Redirecting my domain to my blog

I have recently brought a domain in rediff ( www.lazygeeks.in ). And this new year i have decided to blog regularly. So, i have decided to link my old standing blog to my new domain.

Here is how simple this can be done.

1) log on to your blogger.com account.
2) open settings of your blog

01 January, 2015

What is System.out.println

Hi there,

In this post, lets understand what is System.out.println, and few details about it.

Before we start with our understanding of System.out.println, let us try and understand the below java class.

public class Test{

public static String foo;