LibOrgParser Update Thursday, June 3rd 2010
Today I brought my LibOrgParser repository up to date with my local copy, for the first time in a while since I've been rather slack with my local repository.. but hopefully I got everything. The new version brings reading and writing functionality, as well as a new API, and the OrgQL utility, which lets you run simple SQL like queries on an org-mode file, thanks to the [wiki]SQLite[/wiki] library. Queries that look like this,

SELECT ALL FROM /home/hashbox/todo.org WHERE heading CONTAINS todo


Oh and I found this image I made a while ago, kinda neat I think :)

/images/org-mode.jpg


Add OrgQL to that, and that's pretty much my todo list flow :)


Edit: Oh and while we're at it, here's a one liner bash function for opening links in a file:
function nav() { grep -ohE "[[:alpha:]]*://[[:alnum:][:punct:]]*" $@ | while read; do xdg-open "$REPLY"; done; }

# use like this
nav todo.org someotherfile.txt
Comment on this Post