Stefan Zabka

Results 206 comments of Stefan Zabka

Hey @joy2306, thanks for choosing OpenWPM for your first open source contribution. However I'm afraid that this issue isn't suitable for a beginner. Do you want to have a look...

Go right ahead. I might be a little less available the next couple of weeks as I try to finally get #753 done, so you might be stuck on questions...

I think the DNS instrument is the best place to start as the other 3 topics are pretty advanced and go deep into firefox. As for reading on the DNS...

Hey, this might be due to these request being part of a redirect chain. Iirc during a single redirect the http channel gets reused. So all of these requests might...

The http_redirects might be outdates/no longer needed.

It's a reference to the entire request chain. The script creates the first request, which then returns with a redirect status code and kicks off the second request. So indirectly...

Hey, 1. I'm sorry I don't quite understand this problem. Which ID do you want to correlate it to? The request_id? You can use the `request_id` to correlate with a...

Someone should try to write a test page that either times out or tries to disrupt our data collection in some other way. Once we have a test case we...

Hey, to resolve this issue I'd like you to do the following things: 1. Move the documentation from [Configuration.md](https://github.com/mozilla/OpenWPM/blob/master/docs/Configuration.md#platform-configuration-options) into the respective docstring of the attributes [here](https://github.com/mozilla/OpenWPM/blob/master/openwpm/config.py#L123) E.g. for `data_directory`...

WebSockets have a number of attractive qualities: 1. They allow us to remove our own socket implementation both in the browser but also in the platform 2. They can by...