Monthly Archives: October 2005

Jena Model Editor

The Jena Model Editor is a Swing-based GUI window that provides a simple Turtle (N3)-based editor and inspector for Jena models. It’s useful for developing GUI applications that store their data in Jena models. Want to know what statements one … Continue reading

Posted in General, Semantic Web | 1 Comment

Finish the things you started

Danny Ayers reveals the secret: How to find inner peace and feel great. And it’s much simpler than I had thought.

Posted in General | Comments Off on Finish the things you started

Miscellaneous stuff from my .vimrc file

Some more VIM goodies that have accumulated in mv .vimrc over the years: Switch between :split and :vsplit windows using CTRL+hjkl: map <c-J> <c-W>j<c-W>_ map <c-K> <c-W>k<c-W>_ map <c-H> <c-W>h<c-W>_ map <c-L> <c-W>l<c-W>_ set wmh=0 Nicer color scheme: brighter comments, … Continue reading

Posted in General | Comments Off on Miscellaneous stuff from my .vimrc file

VIM: Quick autocompletion

This little VIM script enables autocompletion with the tab key. All words in the current file will be used as possible completions. No cross-file autocompletion yet. Put this into ~/.vimrc (or _vimrc in your VIM directory if you are on … Continue reading

Posted in General | Comments Off on VIM: Quick autocompletion

Jena 2.3 released

Jena 2.3 is released. New/improved stuff: Out-of-the-box SPARQL support (via ARQ, which is now included in the Jena download) Faster queries on in-memory graphs Faster parsing of RDF/XML Neat! Good to see that the Jena releases are rolling out a … Continue reading

Posted in General, Semantic Web | Comments Off on Jena 2.3 released

VIM: Setting custom tab behaviour for some filetypes

To change the VIM tab settings for some file types, you can put something like this into ~/.vimrc (or _vimrc in your VIM directory if you are on windows); create the file if it doesn’t exist: ” Default tab behaviour: … Continue reading

Posted in General | Comments Off on VIM: Setting custom tab behaviour for some filetypes

VIM: Switching off auto-indentation

How to switch off all kinds of auto-indentation in VIM. Put this into ~/.vimrc (or _vimrc in your VIM directory if you are on windows); create the file if it doesn’t exist: ” Switch off all auto-indenting set nocindent set … Continue reading

Posted in General | Comments Off on VIM: Switching off auto-indentation