karlicoss
karlicoss
@anoduck if available for openbsd I recommend you to install `ripgrep` -- much less headache :)
Hi @Alesnim can you double check please? I released update for extension end of May, perhaps it somehow fixed this? Since it works for me in firefox :)
So let's say promnesia module takes in a JSON-like config object (instead of specific config fields, it can't interpret them anyway): ``` SOURCES = [ Source(roamresearch, hpi_config={"export_path": "path/to/json", "error_policy": "throw"}),...
Note to self -- been playing with it today, and at the moment it's achievable with something like this (needs improvement of course, but at least it's already possible in...
I think it's not necessarily caused by https://github.com/karlicoss/promnesia/issues/177 or https://github.com/karlicoss/promnesia/pull/307 -- even with single update from the background page it takes it a while to process highlights. I wonder if...
Might need to be careful about closing libmagic https://github.com/karlicoss/promnesia/pull/124#issuecomment-653890755
Relevant: i've implemented 'almost realtime' indexing recently: https://github.com/karlicoss/promnesia/blob/c442081c3ac46859462ccd10f65dc89e39a2f44d/src/promnesia/dump.py#L18 E.g. you can have a separate config file only with your text notes (which should be indexed very fast). Then if you...
Yep, good idea to pass it in cmdline args! It was somewhat experimental at first, so I made it an env variable, but it seems to work pretty well (apart...
hmm seems that it was closed automatically by github -- we don't really have realtime indexing yet, so I'll reopen
Perhaps for actual 'realtime' this would need proper HPI support. E.g. HPI module exposes a generator or something, which Promnesia can poll on (presumably, in a loop over all promnesia...