John Vilk

Results 165 comments of John Vilk

@DarkAEther That would be great! Let me know if you manage to get things working.

> Are these self-signed certificates or something? Yes; this option is required for BLeak to run on https webpages. It uses mitmproxy to intercept requests to the website and send...

@perimosocordiae Do you have any thoughts? I'm not going to embark upon this until sometime _after_ `new-objects` is merged, so we have time for discussion.

When you launch a Java thread (from Java and in native code), you provide it with a method to run. When that method completes, the thread automatically shuts down and...

Actually, I was wrong; I'm referring to a different error. Your code is running a task on a thread that is not in the `RUNNING` state, so you are _accidentally_...

Are you calling `thread.run` directly? If so, [you should listen to the JSDoc for that method](https://github.com/plasma-umass/doppio/blob/master/src/threading.ts#L830)!

setTimeout has a minimum value of 4ms, as set by the standard, so it is too slow.

I agree that it makes no sense for workers, but I have doubts that they would deviate from the standard. When I get a chance to run further tests, I'll...

@norzak this is not a bug in Doppio. This is a bug in Chrome. Please [star this issue](https://bugs.chromium.org/p/chromium/issues/detail?id=344814&can=5&colspec=ID%20Pri%20M%20Stars%20ReleaseBlock%20Cr%20Status%20Owner%20Summary%20OS%20Modified) so the Chrome developers know that this should be fixed.

Your intuition sounds correct, as I believe that MITMProxy will intercept websocket requests. I'm not sure if there's a way to prevent MITMProxy from intercepting websocket requests; you can check...