Visualize Database Design with SchemaSpy

October 4th, 2009

I started working on a project that uses an Oracle database and wanted to get an overview of the tables and their relationships. I decided to see if any tools were out there that could create some documentation based on the schema. Ideally, one that could also create some sort of ERD like diagram. I found just what I was looking for in SchemaSpy.
Read the rest of this entry »

How to Configure WRT54G as an Access Point

August 29th, 2009

I recently installed a new router/firewall in the office. I was using the WRT54G as my firewall and router. However, I only needed an access point for my laptop and wireless devices. The manual was not very helpful in suggesting what needed to be done. This post describes the steps I took to successfully configure the WRT54G as an access point only.
Read the rest of this entry »

MissingMethodException: No signature of method for Grails Dynamic Method

May 25th, 2009

In my last post, I described how you can use resources.groovy to create and initialize a class. However, you can get into trouble if the initMethod will access any of the dynamic methods that Grails introduces. If you are not careful, you may get an Exception like the following:

groovy.lang.MissingMethodException: No signature of method: static Thing.count() is applicable ...
Read the rest of this entry »