karlicoss

Results 351 comments of karlicoss

Yep, this is the idea! Even the `stat().st_mtime` is probably a good proxy for the file modification time? It's possible to support something like it, for example: https://github.com/karlicoss/HPI/blob/ed47e98d5c85b3334b3be059ad31b82c6fc0d19c/my/emfit/__init__.py#L27-L33 Another example...

@Nebucatnetzer if you are mostly using it read only, as a workaround for now you might get away with using `org-agenda-write` to export your agenda in a single file (e.g....

@Nebucatnetzer ah, I see. Anyway, you could use a special agenda view to collect all your notes and export them to a single file (or even just concatenate all of...

While it doesn't exactly solve it, as a workaround, I empty the file and set the org title to `DELETE ME`, that way I can just unlink the file from...

I took a quick look in the repository; for sharing, [`AppUtils.share`](https://github.com/hidroh/materialistic/blob/6eb09aff553308f7ecc7bc7ebb161be86fd4cee6/app/src/main/java/io/github/hidroh/materialistic/AppUtils.java#L525) is used. The actual place in the app's logic where comment is shared is [here](https://github.com/hidroh/materialistic/blob/d767bdf44d85b3baf451706c919fba4f0ef3f74e/app/src/main/java/io/github/hidroh/materialistic/widget/ItemRecyclerViewAdapter.java#L249). What happens as I...

Thanks @vasturiano, isolated package solved another issue for me (and cleaned some mess). However I still was ending up with a single node because there was an error in `linkDirectionalParticleWidth`...

Hey, @yoyurec sorry for late reply -- as I mention in the comment https://github.com/karlicoss/promnesia/pull/307#issuecomment-1120473302 , there are still some outstanding issues -- but otherwise I haven't look at it

I'm having a related issue -- working on a browser extension and getting `UNSAFE_VAR_ASSIGNMENT (Unsafe asssignment to innerHTML)` while running `web-ext lint`. Basically using innerHTML assingments in browser extension causes...

Seems that there is actually [a comment in the code]( https://github.com/atomiks/tippyjs/blob/master/src/template.ts#L13-L18), introduced [here](https://github.com/atomiks/tippyjs/commit/dd432f9eea2945e829116998df5aa4e61054ff51) regarding this issue with web extensions, but assigning innerHTML dynamically doesn't trick webext-lint anymore. And either way,...

Actually seems that [headless tippy](https://atomiks.github.io/tippyjs/v6/headless-tippy/) doesn't suffer from this innerHTML problem. And also generally seems less problematic for web extension because it doesn't inject extra CSS (so less chances to...