26 ms·
> 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/automa
by stepstop 6y 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?
- jasonjayr 6y agoThe 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.
- djhworld 6y agoThe 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.