Results 1568 comments of John Cupitt

Hi Benjamin, thanks for letting me know! My guess is that this is a false positive from an automated search for `BROWSER`. In nip2, `BROWSER` (I keep typing "bowser" by...

OK, I've asked for the issue to be closed, request number 434637. I'll update if I hear back. Thanks again!

`helpindex.h` links help tags in the source to references to pages in the manual, it can't be changed by the workspace. The preferences are kept as a workspace, but it's...

It's true that if an attacker could modify the prefs file (the user's personal one is kept in `~/.nip2-x.y.x/start/Preferences.ws`), then they could make nip2 execute some arbitrary code the next...

Hi @fredgido, Because pyvips is demand-driven, your trick of reusing the previous result is not a great fit. I would use `thumbnail` and run the whole thing three times. I...

I think this is a gtk on Windows bug. nip2 adds a preview on the right hand side of the file open dialog, but that's it. And the preview won't...

That's a good idea. It's not hard to implement, you need to define two classes, `List` (for example) and `Listview`, one handles the link to the programming language, one handles...

Hello, you can limit the pyvips operation cache by memory usage. ```python pyvips.cache_set_max_mem(1024 * 1024) ``` Sets it to 1MB. The default is 100MB. This only affects the cache. If...

For example, if I add `leak_set` to the watermark example: ``` john@kiwi:~/GIT/pyvips/examples (master)$ VIPS_CONCURRENCY=4 ./watermark.py ~/pics/k2.jpg x.jpg hello memory: high-water mark 7.01 MB john@kiwi:~/GIT/pyvips/examples (master)$ VIPS_CONCURRENCY=1 ./watermark.py ~/pics/k2.jpg x.jpg hello...

Hello @acycliq, Do you mean you'd like the tiles in the pyramid to have a transparent background so you can overlay them on something else later? You'll need to use...