Hacker News new | ask | show | jobs
by stepstop 2154 days ago
> To facilitate quick note taking I wrote a FUSE driver for it

I didn't understand this part. Why can't you just write the file and then either manually/automatically trigger an import of the text into the SQLiteDB?

2 comments

The note taking service is on one of my raspberry pi's and exposes a HTTP API which the fuse driver interacts with.

Could have used NFS or something to achieve what you've suggested, but this is the path I went down and seems to work ok for my needs.

The fuse FS (which, fuse not at all difficult to use, there are many implementations of SQLite-backed fs) implements the trigger that automatically imports it.