List Images

Posted: January 31st, 2009 | Filed under: CSS | Tags: ,

In CSS List Images are such a simple topic that I have seen overlooked over and over. There is not much to it at all. Just one line of css.

Example

ul { list-style-image:url(picName.jpg); }

Done in one short line. This will simply make every un-ordered list have an image in place of the dot. So then an un-ordered List in XHTML such as:
Read the rest of this entry »


Linked Lists in Java Part 1

Posted: April 23rd, 2008 | Filed under: General | Tags: , ,

Recently I have been playing around with Java’s LinkedList class. This is a very usefull class that is included in java.util.LinkedList.

The LinkedList Class allows you to implement a linked list (what a surprise) with a simple class declaration. I am going to explain how to create and use the class, as well as a few tips I have picked up while playing around with the class.
Read the rest of this entry »