Alexander Prinzhorn

Results 617 comments of Alexander Prinzhorn

Thanks for confirming! I see two things to do here: 1. Fix whatever is causing the initial page to not load (maybe we shouldn't open the link before tornado is...

It seems like `b.open(url)` is blocking? Tornado will only respond to request when I exit the browser process. https://stackoverflow.com/questions/1149233/how-to-resume-program-or-exit-after-opening-webbrowser But this seems unrelated to the libGL logs, which I'm only...

I have both `x-www-browser` and `xdg-open`. Check out what I get in the REPL ``` >>> webbrowser.get('x-www-browser %s') >>> webbrowser.get('x-www-browser') ``` I assume anything other than `BackgroundBrowser` is blocking? Why...

https://github.com/mitmproxy/mitmproxy/search?q=Cannot+change+server.via+on+open+connection.&type=issues I'm pretty confident this is a duplicate of #5241 and they seem to work on a solution

> When I record something (-w) on mitmproxy==8.0.0 Upstream mode and replay it on 7.0.4 (-n -r), The error message is `"File Corrupted"` This is expected behavior as the recordings...

Shouldn't we just switch to `io.BinaryIO` in the case where exactly one column and row is selected? https://github.com/mitmproxy/mitmproxy/blob/dac0bfe786a8d1dfdd97f29d6bb262ed258153fa/mitmproxy/addons/cut.py#L130-L134 > If there is exactly one row and one column, the data...

I wasn't even aware of the `cut.clip` feature so I'm not sure what the original intended use-cases are. I thought about this and if I would use it to quickly...

> Just guessing the encoding is can of works we really don't want to open. I mean :see_no_evil: https://github.com/mitmproxy/mitmproxy/blob/7fdcbb09e6034ab1f76724965cfdf45f3d775129/mitmproxy/net/http/message.py#L172-L187 This is not about guessing encoding for arbitrary binary data. The...

> The editor suggests "from" when you type the "f", which doesn't make sense. You can disable it via `wordBasedSuggestions: false` > "Select" and "from" should be suggested, and table...

The `language` option is for syntax highlighting https://microsoft.github.io/monaco-editor/monarch.html Autocomplete is an entirely separate thing. You can't expect Monaco to ship with autocomplete support for every language and every SQL flavor....