Osmo Salomaa

Results 35 comments of Osmo Salomaa

For what it's worth, I wrote my own file indexing extension specifically because of this issue (maybe something else too, I don't remember anymore). The configuration I ended up choosing...

It's not fixable in the tokenizer, but in the SpellChecker class we do already have some special cases. Currently there's one character of leading and trailing context that's used. Technically...

I can't run those greps, my Debian doesn't seem to have myspell, only hunspell files and they probably have a different format. I think maybe we could make the function...

I agree, it would be useful. An audio waveform display was on the TODO-list for a long time, until I concluded that it sounds like a lot of work and...

I checked a while back how the GIMP folks build it and it looked horribly complicated. https://github.com/GNOME/gimp/tree/master/build/windows What I have used before is obsolete, at least pygi-aio hasn't been updated...

I haven't seen this before. Seems to be the TTML format (previously DFXP). * https://en.wikipedia.org/wiki/Timed_Text_Markup_Language * https://www.w3.org/TR/ttml1/ * https://www.w3.org/TR/ttml2/ Looks complicated.

Sort of, looks like some kind of a Netflix-specific subset of TTML. If wanting to upload subtitles to Netflix, then it probably matters that you adhere to those rules. If...

It's not obvious what it should do, but, yes, I can consider it.

Looks good so far. I'm here and on [Gitter](https://gitter.im/otsaloma/gaupol), whichever you prefer, if you have questions. (Gitter seems to have gone full Matrix, I'm not up to speed on that,...

Does this help? ```python #!/usr/bin/env python3 import aeidon class Child(aeidon.Observable): signals = ("stuff-done",) def do_stuff(self): # Do something here, # once done emit: self.emit("stuff-done") class Parent: def __init__(self): self.child =...