hrm

Results 48 comments of hrm
trafficstars

I have found [#5790](https://github.com/wallabag/wallabag/issues/5790) but I don't think it's the same issue. I will try another database driver though, see if I at least can get it to work.

@larslockefeer PS Of my 4 pull requests, it makes sense to merge this one first, because I’ve come to know your plugin a bit better by now and this includes...

Or, instead of a tag (which I use for different things), a custom frontmatter attribute? Something like: ```yaml --- gtd-ignore: true --- ````

Right now todos are found by a regex on a file’s contents (at [TodoParser.ts#L5](https://github.com/larslockefeer/obsidian-plugin-todo/blob/main/model/TodoParser.ts#L5)): ```typescript const pattern = /(-|\*) \[(\s|x)?\]\s(.*)/g; ``` Let me think: 1. Todos without any leading spaces...

> Have you succeeded with this self-modification attempt? I have, to some extent: #19. Not sure if @larslockefeer is active here, but I’d love to help the plugin with this...

> Does it work for you if I get back to this in July? Sure, no worries

I’ve been playing around with this [here](https://github.com/harmtemolder/obsidian-plugin-todo/tree/draggable-notes), and got the drag and drop behavior to work, but it looks like you can only edit a note if you open the...

I'm digging into why this is happening to me too, and it seems that I've deleted a note from Anki. Therefore the plugin cannot find the note matching one of...

There actually is something [here](https://github.com/reuseman/flashcards-obsidian/blob/main/src/services/cards.ts#L106) that should output a nice error message when a card is not present in Anki: ```typescript if (cardsNotInAnki) { console.info("Flashcards: Cards not in Anki (maybe...

The `__init__() missing 3 required positional arguments: 'help_page', 'context', and 'backtrace'` error actually comes from Anki via [`reject(e)` in `anki.ts`](https://github.com/reuseman/flashcards-obsidian/blob/main/src/services/anki.ts#L208). So this might be something we'd need to pick up...