OSS Projects and Poisonous people
October 31st, 2008 by Leons PetrazickisAn interesting video on online project management.
Posted in video | No Comments »
An interesting video on online project management.
Posted in video | No Comments »
Trac is a great bug tracking, work ticket, action item management environment. It integrates well with SVN and other source control repositories.
Its Roadmap view conveniently order milestones by due date. However, the custom report queries it comes with order milestones by their name. Frankly, that’s much less useful. I understand that they are replacing the SQL-driven custom reports with a customizable GUI interface, but in the meantime here’s how you can fix the issue:
t.due as the first column in the ORDER BY listThe report will now sort by milestone due date while allowing for empty milestones.
See Also
Posted in trac, svn | 1 Comment »
My team just released the beta version of DB2 Express-C 9.5.2. It includes the built-in Text Search module for the first time — fast WHERE CONTAINS(column, ‘monkey’) searches, great for web development — as well as lots of other enhancements and fixes.
Posted in db2 | 3 Comments »
I installed DB2 on an Ubuntu Linux server via SSH and the command line installer this morning. This is not particularly exotic, but is different from using the GUI installer on either platform. Still, I should jot down my steps:
tar xzvvf the file and cd into the directorysudo apt-get install libstdc++5
sudo ./db2setupExtra notes just in case:
sudo is the usual way to escalate privileges on Ubuntu.sudo su - db2inst1 is the way to switch users to, in this case, user db2inst1.Posted in db2 | 2 Comments »