Categories
Uncategorized

irb

Top top for using irb, the interactive ruby environment. Stick this in your ~/.bashrc or equivalent.

irb --readline -r irb/completion

And now you get nice completion of class and method names inside ruby. Lovely! Just like Python’s rlcompleter.

More info from Why’s Poignant Guide (which could use a few anchor’s).

As a side note, Ubuntu really needs to learn to install a few more Ruby packages by default. It’s missing webrick, yaml, irb, ri, erb and a lot of other stuff that should be standard in ruby 1.8. Grrr. Oh, it’s a bigger problem

Categories
Uncategorized

RDF

I’ve just finished reading Practical RDF for work. My conclusions:

  • RDF/XML makes my brain hurt.
  • RDF still seems a way off being “practical.” I’m with Tim Bray on this one.
  • Some of the frameworks for RDF still look pretty cool. I had a quick play with the Python rdflib and was quite surprised at how easy it was. Jena and Redland also look good.
  • Ontologies seem like a good idea, in the same way that DTD’s (well, RelaxNG+schematron for preference) are a good idea for plain XML. But they’re still way over my head. I’ll have to go back and reread that bit of the book when I’ve got a less fuzzy head.
  • Mozilla’s use of RDF to build treeviews is pretty cool. I must play with that.

On the whole, I’ve learned a bit about how it works, and I can definitely see how it would be useful for some of the things we do at work with a relational database. But it’s a large rearchitecting to do so. Also, the book has let me know how much more I have to explore once I’ve put a bit of groundwork into understanding the basics.