Michael Maltsev
Michael Maltsev
As @injertao noticed [here](https://github.com/rwfpl/rewolf-wow64ext/pull/21#issuecomment-1176092665), my previous change broke support for pseudo handles.
Example: https://jsfiddle.net/pfnmvaex/ The rendered html is: `some_text` The result, as can be seen in the JSFiddle above: 
Select2 allows [dynamic option creation](https://select2.org/tagging) by setting `tags: true`. Unfortunately it doesn't work well with yadcf, since the select box is re-created on each selection, and the newly created dynamic...
The problem was that a new `onIconsSelected` function was created on each render, causing the following infinite loop: * `WinXP()` is called. * A new `onIconsSelected` function is passed to...
I think the screenshot below sums it up. You can see that the arrow is broken for all of my apps but Chrome. The chart: ``` .-------. | Hello |...
`Promise.all()` doesn't trigger the promises to start their work, creating the promise itself does. Reference: https://stackoverflow.com/a/40639551 Currently, all `batchExecutor` does is waiting for the promises in chunks, but they're still...
Currently the import/export tasks are executed in parallel in batches of 50: https://github.com/jloosli/node-firestore-import-export/blob/6977df5972cf84c8ef9ca6c527f57b2aad1f722b/src/lib/firestore-helpers.ts#L47 This number can't be changed via command line, only by modifying the source code. 50 is too...
Hi Duncan :) So I updated x64dbg and accepted the offer to try out the new engine, GleeBug. I've used it for several hours with no apparent issues, until, at...
Here's a gif demonstrating the bug. Another limitation is that a new breakpoint can't be set at that location until you step out of it. 
#### Problem Description Addon commands can be sequences, but the only supported sequence is of type `str`. Add support for `Sequence[int]`. https://github.com/mitmproxy/mitmproxy/blob/1f2e1a254a68e54e60360b66762ed6bdf2ff26be/docs/src/content/addons-commands.md?plain=1#L120 https://github.com/mitmproxy/mitmproxy/blob/1f2e1a254a68e54e60360b66762ed6bdf2ff26be/mitmproxy/optmanager.py#L368 #### Additional context Example use case: passing...