Wednesday 18 November 2009

Trying Nokogiri XML Parser for Ruby

Bumped into a few blogs talking about how Nokogiri was faster than REXML for Ruby XML parsing. My OMG SysML XMI to ISO STEP AP233 XML converter demonstrations are taking so long that I can't run them live during the demo - up to 8 minutes for a large example SysML diagram. So, I'm modifying the converter to use Nokogiri in the hopes that I'll be able to do the demos live in the future. My first small test showed an 80 percent improvement ... fingers crossed that holds for the real converter.

Update - having problem with XML namespaces. Only xpath method seems to understand them, so after converting from REXML to Nokogiri my converter actually takes longer to run.

Saturday 14 November 2009

IDIOM - An ontology-centric IT Framework

I've been working in an ISO committee for many years and have been trying to convince it to adopt the same IT that the rest of industry uses. It appears that's finally coming to pass (small hurrah heard here).

The committee is called Industrial Data so I came up with the name 'Industrial Data Integrated Ontologies and Models' or IDIOM. Actually, came up with the name 3-4 years ago on one of my many cross-Atlantic flights when my laptop battery died. The core point of the whole exercise is to base a suite of inter-related IT capabilities (process models, SOA, etc) around a core of concepts that are formally specified in logic-based ontologies.

We've done the basic developing on the futurearch wiki (at wikispaces.com, which is a nice free service). Note that although 'Industrial Data' is in the name, there is absolutely nothing limiting how this IT Framework can be used.

More to come ...

Friday 28 August 2009

VMWare Fusion - Reusing Core Ubuntu Install

When testing out new software, Monodevelop this week, I want to keep my daily Ubuntu VMWare guest clean until I decide if I'll use the new tool or not so I use a separate install. I don't want to keep so many Ubuntu installs around so cloning/disk reuse is interesting. I found a good article explaining how to build a core Ubuntu OS and then extend it. Basically, you create a core OS install guest, then share its disk with other testing guests after taking a snapshot in the other testing guest. Taking a snapshot keeps the core disk unwritable.... nice.

Thursday 4 June 2009

Spotify, Airport and Airfoil - Free Web music on my Stereo

Spotify is free in UK now, with ads every few songs but not too bad, or you can pay a bit. It has a great collection of free music - well worth a look.

Combine it with Airfoil and I can stream Web music, or any other audio, to my stereo from my iMac/Airport Extreme.

Wednesday 13 May 2009

Active Scaffold and Inheritance

Had a problem getting two cases of single table inheritance to work in ActiveScaffold so thought I'd document it. Package and Classifier are the ActiveRecord classes.

class ExpressSchema
has_many :express_entities, :foreign_key => 'package_id'
end

class ExpressEntity
belongs_to :express_schema, :class_name => 'ExpressSchema',
:foreign_key => 'package_id'
end

Monday 11 May 2009

YUML Me for Putting UML on Web

Found a very nice little tool called yUML me for putting UML Use Case and Class figures into your blog or other Web pages.

Monday 30 March 2009

Semantics For and From Information Models

I gave a presentation at the OMG Semantic Information Day on Thursday of last week. My presentation was actually called Semantics For and From Information Models and was about the use of W3C OWL to add semantics to data exchanges using XML and a follow-on project from NIST with a goal of pushing the STEP community towards semantics/ontologies as a core modeling technology.

The presentations will all be made available online and I'll update this post when they're available.

Tuesday 17 February 2009

Demos with Rails, Hobo, ActiveScaffold

Continuing to play with doing demos of engineering applications using Ruby on Rails, and in particular the Hobo and ActiveScaffold frameworks that sit on top of Rails. Hobo is nice as long as you have a fairly simple set of concepts to handle. ActiveScaffold is more flexible, but is also a bit more work (e.g. Hobo builds in users/password where you have to add it to ActiveScaffold yourself).

Used ActiveScaffold on one "real" project at for work, which was just a prototype though, with around 30 concepts in the model and it worked out OK. Still some limitations though. It was the front end for a rules engine (jRules from iLog which was recently bought by IBM) so was an interesting architeture. We had to update the data tables from both the Rails GUI and from Hiberbate from the Java accessing jRules. Oracle Express was the database, which poses some problems of its own (e.g. date support is problematic).

Tuesday 10 February 2009

INCOSE Activties with SysML and AP233

A bit of work news ...

At INCOSE over the weekend a workshop was held to start mapping the OMG SysML and ISO AP233 standards together. There's an OMG wiki to track progress. Here's an example SysML diagram:

Tuesday 20 January 2009

VMWare Fusion VMs Work on Thinkpad Player

Kept reading on VMWare and found that creating VMs on the iMac using VMWare Fusion then using VMWare Player on my laptop to play them was supported. Tried it and it does work - great. Not sure if my original problem was Fusion V1 vs. V2 or an error on my part when copying from iMac to Thinkpad. Anyway, progress ...

Also found a script that lets you clone VMs. It doesn't work on Fusion (VMs are OS X packages of some sort, not a directory) but it showed me where to rename things and edit names inside files ... which is great. I now have a core Kubuntu 8.04.1 that I can clone and rename for other purpose (e.g. a netbeans VM).

Wednesday 14 January 2009

Trying Xubuntu as VMWare Host on Laptop

Needed to reinstall VMWare Server (the free version) on my Thinkpad T61 widescreen so decided to try out Xubuntu (XFCE instead of Gnome/KDE) as the host. Should use a bit less memory and disk space so the VMs should work a bit better, if not noticeably better. The VMServer software wouldn't install properly with Xubuntu 8.10 so reverted to 8.04.1 which is supported per the VMWare Web site.

Sunday 11 January 2009

Tracks for free!

Stumbled on an online Tracks (Get Things Done Rails app) online. Signed up at morph eXchange where you can subscribe to Tracks and use if for free. morph eXchange can also host your apps in the Cloud if you want - although I've not tried that yet.

Tuesday 6 January 2009

Finally joined the blogsphere... we'll see how it goes.

Writing this from a Linux VM using VMWare Fusion on iMac 24 inch (great machine btw). The iMac is my desktop but I use a laptop for travel so copy my Linux and XP VMs back and forth between the iMac and Thinkpad. Have to create the VM on VM Server on the laptop to get that to work properly ... not sure why.