Author Archives: Brian Lavender

About Brian Lavender

I like to program in C++, Java, and Pascal. I have an admiration for languages like Pascal, Ada, and Eiffel. I work a lot with GNU/Linux systems.

Cereal Hack Raffle Application

Willow Schlanger and I participated in the Cereal Hack this last weekend. We built a Raffle application. We both worked in parallel. Willow built a version in PHP and I did mine in Java. Willow’s app was the most functional … Continue reading

Posted in Uncategorized | Comments Off on Cereal Hack Raffle Application

Running JBoss Application Server

This is about the JBoss Application Server, commonly known as JBoss AS. I have some posts that need the JBoss application server. If you visit the JBoss website, you will notice many projects that fall under it. Make sure you … Continue reading

Posted in Java | Comments Off on Running JBoss Application Server

Maven

I have some projects that use Maven. Here are the steps to get maven. Go to the Maven website. There is Maven 2 and Maven 3. Get the Maven 3 download. The name of the download is the following: apache-maven-3.0.4-bin.tar.gz … Continue reading

Posted in Java | Comments Off on Maven

Changed comment policy

In order to comment, you have to be registered now. I thought the re-Captcha would cut out spam comments, but either there are good re-Captcha crackers out there, or a lot of people looking for trackback links. I am assuming … Continue reading

Posted in Uncategorized | Comments Off on Changed comment policy

Some code would be nice!

We shall see if this turns to code. 1 2 3 4 5 public class Hello { public static void main(String[] args) { System.out.println("Hello World!"); } } public class Hello { public static void main(String[] args) { System.out.println("Hello World!"); } … Continue reading

Posted in Uncategorized | Comments Off on Some code would be nice!

Using Flex SDK on Linux

I just ran into a great post for integrating the Flex SDK with Eclipse. Adobe makes a free software version of the Flex SDK. When you look around for getting started with Flex Builder, just about everything points to Flex … Continue reading

Posted in Uncategorized | Comments Off on Using Flex SDK on Linux

Detachable Models with Wicket (Attempt one)

Here is the Code. To run it, unzip it. You need Java and Maven. To run it and view it, just issue mvn jetty:run . Point your browser to http://localhost:8080 . You can also import it into Eclipse using File->Import->Existing … Continue reading

Posted in Wicket | Comments Off on Detachable Models with Wicket (Attempt one)

Bind to your model better with Wicket!

In this post, I still follow the Wicket in Action book, yet continue with the process of breaking out the concept into one simple project. This post takes the model (Customer object) and ties it to the page using the … Continue reading

Posted in Wicket | Comments Off on Bind to your model better with Wicket!

OpenOffice BASE and HSQLDB in server mode

The sample database for this post can be downloaded and used with GNU/Linux. It can also be adapted to Windows and Mac. OpenOffice Base uses hsqldb as its back end database in embedded mode. If you are a developer like … Continue reading

Posted in Uncategorized | Comments Off on OpenOffice BASE and HSQLDB in server mode

Callbacks and Wicket

I don’t believe starting with Anonymous Inner Classes (AIC) is a good way to get started when doing event driven programming. For this post, I took the Cheesr application from the Wicket in Action book and removed the AICs and … Continue reading

Posted in Wicket | 3 Comments