Felix Janda

Results 12 comments of Felix Janda

How could I further debug this? The asynchronous nature makes it a bit hard to follow the program.

Thanks. ``` import asyncio import hangups from pathlib import Path cookies = hangups.auth.get_auth_stdin(str(Path.home()) + "/.cache/hangups/refresh_token.txt") client = hangups.Client(cookies) loop = asyncio.get_event_loop() task = loop.create_task(client.connect()) loop.run_until_complete(task) ``` is already enough to...

On linux, there is for example also the musl c library (http://musl-libc.org), which has its own iconv implementation. (It seems to violate one assumption of iconvcap: it can only convert...

I'm looking into porting to newer versions of SpiderMonkey by compiling only the `src/ecmascript` and `src/scripting/smjs` directories with C++. This might work, though is not completely ideal because the mixture...

> I would rather switch to QuickJS . It is C and has smaller memory > footprint, but first I want to finish libdom "migration". I stopped > on tables....

Was able to reproduce. The following seems to fix it. ``` diff --git a/src/slideshow.c b/src/slideshow.c index 3944a68..c6c6901 100644 --- a/src/slideshow.c +++ b/src/slideshow.c @@ -227,6 +227,12 @@ void slideshow_change_image(winwidget winwid, int...

Applying pull request #414 is probably a better way to fix this.

> Doesn't Alpine/Musl provide any way of getting a backtrace then? No, there is no function to obtain a backtrace (due to security considerations). > Having a crashlog without any...

I still experience this issue on the 6.8 surface kernel. The audio now usually works after resuming from suspend, but it still does not properly shut down if it had...