My blog has moved! Redirecting...

You should be automatically redirected. If not, visit http://mindsiview.wordpress.com/ and update your bookmarks.

Monday, January 14, 2008

Ubuntu/Tomcat 5.5 Issues

I've been running Ubuntu Linux, specifically Feisty Fawn, and Tomcat 5.5 on a server at my house for a few months now. So far I've encountered only one issue: Tomcat5.5 doesn't start properly. In order to start it (once the startup.sh script has run), I've had to go to the /var/log/tomcat5.5 directory and sudo cat the catalina.out file. Doing so jump starts the tomcat console and messages start displaying. Once the INFO: Server startup message appears, I ctrl-C out of the catalina.out file. While this workaround solves the issue, it causes me some extra steps every time I reboot the server or restart tomcat...not that I have to do that very often. But, it's a pain. Tonight I finally had enough and starting searching the web for a solution. I found an explanation and a solution here on Cefn Hoile's blog. Thanks Cefn! I've listed the solution below for those of you who find my blog first: the first time you startup tomcat you:
  1. cd /var/log/tomcat5.5
  2. sudo mv catalina.out catalina.out.old
  3. sudo touch catalina.out
  4. sudo chown tomcat55:nogroup catalina.out

Sunday, November 25, 2007

dotproject: open source project management for the rest of us

If you're in IT, chances are sooner or later you're going to be managing a project. And, if you're managing a project of any size, you need a set of tools to help. For those of you who use a PC running Windows whatever...you know who you are...Microsoft Project will probably be your tool of choice. And, if you're into the whole project management certification track, Microsoft Project makes a lot of sense because so many of the training materials reference it.

But, if you're a Mac user like me, Microsoft Project is not an option (unless of course you're dual booting on an Intel or running Parallels and/or Virtual PC). And, if you're less concerned about project management certification and more concerned about managing projects, you still need a tool. What are your choices?

I've done some less than extensive research and the tool I've started using is dotProject. It's an open source project management tool written in PHP and MySQL. The only other thing you need is a web server. I've run it on both a Mac and on an ubuntu linux box.

While not as feature rich as Project, it has the most commonly used features. One that I like is the ticketing system. An issue that I often deal with during the life of a project is determining when a task is complete. This really becomes difficult with software development. Often a particular object or program that has been finished at one point in a project, has to be modified later in the project as requirements change. What to do? Do you reopen the task, create a new task that reflects the modifications, or do you add the time it's going to take to make the changes to another task? One solution is to use dotProject's ticket system to create a ticket for the mods that can linked to the project. I really like this concept for small changes during the life of a project.

Anyway, if you're looking for a non-Microsoft solution to your project management needs, check out dotProject.

Thursday, November 01, 2007

Dice Project Management Article

I recently read this project management article, Ten Skills for Project Management Success, on Dice.com (no I wasn't posting a resume) that might be of interest to some of you. I really like tip 6: Stay Away from Microsoft Project. I agree with the writer, if you want to quickly lose peoples' attention show them a complex gantt chart and some resource docs. While these tools are good for the project team, they do not translate well to management. When presenting project progress to your management team, try keeping it simple and concentrate on the big picture. It's been my experience that if management wants the details, they'll ask for them.

Saturday, July 28, 2007

JavaFX Tricks: LookAndFeel

Yes I know, it's been awhile since I've blogged. Over the last few months I've been working on some swing apps, installing ubuntu on a server at my house, and testing open source network monitoring software.

During my time away, I've also been working with JavaFX...I'll blog more on this later. For now I want to leave you with a FX tip that I couldn't find on-line. To change the look and feel of your FX script from the system default to one of the other Java look and feels do the following:

import javafx.ui.*;

Frame {
      lookAndFeel: "javax.swing.plaf.metal.MetalLookAndFeel"
      title: "Metal Look and Feel"
      height: 400
      width: 600
      content: Label {
                text: "Metal Look And Feel"
              }
      visible: true
};
As you can see from the example, the lookAndFeel attribute string needs to be set to the java look and feel class that you want to use.

Monday, February 26, 2007

Exporting JTable data to Excel Revised

Someone alerted me to a problem with my JTable exporting example. It seems with all the changes I've been making to my blog, I lost some of the code at the end of the example. It's been restored and can be found here: Tech Thoughts: Exporting JTable data to Excel. Rick.
Technorati search