- cd /var/log/tomcat5.5
- sudo mv catalina.out catalina.out.old
- sudo touch catalina.out
- sudo chown tomcat55:nogroup catalina.out
Monday, January 14, 2008
Ubuntu/Tomcat 5.5 Issues
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
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.