Simon Pinfold

Results 30 comments of Simon Pinfold

> whenever it is updated/repainted I would do this by running the plugin every frame and checking for changes (there might be an API or you could use some hash...

The timer should start after the scene is made visible. I did some testing and as far as I can tell this is happening correctly. I used a desktop capture...

Hmm thats odd you seem to be getting different results from my test... I'm noticing now the timestamps on my images written are also not in sync with the timestamps/delay...

Unfortunately I built this extension using windows threads, so porting would require replacing that with a linux/mac compatible alternative. It would also require disabling the shmem option, but thats not...

It may also be nice to have a probability assigned to each result node.

This is the monkey patch I am using to resolve this issue while we wait for a fix here ```python orig_asdict_inner = dataclasses._asdict_inner def _asdict_inner(obj, dict_factory): if isinstance(obj, tuple) and...

I was able to get this working by adding eschwartz's repository (unofficial repo, but arch trusted user) `/etc/pacman.conf +a` ``` [eschwartz] Server = https://pkgbuild.com/~eschwartz/repo/$arch ``` then just ``` sudo pacman...

I modified Zappa to work for v2 for myself, although only for [payload version 1.0](https://docs.aws.amazon.com/apigateway/latest/developerguide/http-api-develop-integrations-lambda.html). I'm unsure if Zappa would target using payload version 1.0 or 2.0. 1.0 would mean...

Here's what I used to solve the same scenario if it's any use to anyone finding this issue. `leak` is a `printf("%$sAAAA")` primitive that can be used repeatedly. This assumes...

Update `MapPEIntoMemory` so it doesnt try to copy 0-sized sections ```csharp if (_pe.ImageSectionHeaders[i].SizeOfRawData > 0) { Marshal.Copy(_pe.RawBytes, (int)_pe.ImageSectionHeaders[i].PointerToRawData, y, (int)_pe.ImageSectionHeaders[i].SizeOfRawData); } ```