Archive for November, 2009


Relay Race Game In Java With Threads

Thursday, November 26th, 2009

Make a relay race in Java with animated visuals. The original task was a school task that only needed to print team status and results in the Eclipse console. I liked it allot and made a really simple visual relay race. You have 5 teams with 4 contester running. Every contester is a thread working together as a team.

(more…)

Chained Exceptions

Tuesday, November 24th, 2009

Quick notes about chained exceptions, and exception handling in general. I’m going to run a simple client program which will throw exceptions forcing the chain to throw exceptions and these exceptions will be caught by the next callers catch block. Then I’m going to print out the exception stack trace to see the chain.

(more…)

Data Structures

Thursday, November 5th, 2009

In this post, I would like to write down some notes on dynamic data structures that grow and shrink at execution time. Linked lists, queues, stacks and binary trees will follow in this post.
(more…)