Christophe Meessen

Results 46 comments of Christophe Meessen

After a quick search in `therecipe/qt` I found the definition `QMainWindow__AllowNestedDocks`. It is thus defined in the qt package in the file `widgets/widgets.go` in line 34145. It is thus apparently...

Thank you for testing out my code and reporting an issue. 0x61a80000 is a negative number since the bit 31 is 1. The computation is indeed overflowing but that is...

You are right, sorry. 0x61A80000 is a positive number, the bit 31 is zero. You also found a problem. I ran a brute force test by computing all square root...

I came to the same observation. We are missing just one bit. There is no problem when using int64_t variables, or by using the 64bit integer `sqrt_i64()` function with the...

Repo has been updated. Tell me if it works for you ? The tests have been updated to test all integers in the range 0 to 0x7FFFFFF included.

I didn't understand. Could you send me a PR ?

Repo has been updated. Tell me if it works for you ? The tests have been updated to test all integers in the range 0 to 0x7FFFFFF included.

If speed is important as it is probably the case for FreeType than it could be interesting to remove the `if` statement to benefit from the CPU pipelining. The instructions...

The following code uses `os.StartProcess` as go-rod and succeeds in starting an independent instance. ```go // From https://gist.github.com/lee8oi/ec404fa99ea0f6efd9d1 func Start(args ...string) (p *os.Process, err error) { if args[0], err =...

I finally identified the cause. Firefox ignores the argument `--profile` if its value is attached with `=`. Surprisingly, it doesn’t ignore the `--remote-debugging-port=9333` argument. It does open the port 9333....