(Go Back)
LibOrgParser Update
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 SQLite library. Queries that look like this,

  1. 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:
  1. function nav() { grep -ohE "[[:alpha:]]*://[[:alnum:][:punct:]]*" $@ | while read; do xdg-open "$REPLY"; done; }
  2.  
  3. # use like this
  4. nav todo.org someotherfile.txt
blog comments powered by Disqus