Sebastian Loncar

Results 33 comments of Sebastian Loncar

As i see, the flag Tls11 and Tls12 is "unsupported" in Mono: https://github.com/mono/mono/blob/master/mcs/class/System/System.Security.Authentication/SslProtocols.cs so, i'm wondering what chrome is using than. Maybe only the flag is unsupported, but it's still...

It seems, Mono uses an external unmanaged library for SSL: http://www.mono-project.com/docs/about-mono/releases/4.8.0/ The flag MONO_TLS_PROVIDER=legacy didn't helped. Because i planned to use a load balancer ( https://cloud.google.com/compute/docs/load-balancing/http/ ) i added it...

By the way, i finished the PR #1037 now :-)

> why would you want to block things you trust at another time I can give you a good reason: On a very low speed, payed cell phone connection, you...

It seems it was introduce by the PR #1 by @Franzsardoma . Instead of reverting it, i pulled the threashold much higher. I'm not sure if this is the correct...

If you have any suggestion how to solve this, i would be happy for a Pull Reqeust. Please keep in in mind to test your changes. It happens relative often,...

Is there anything you could change in the repo code here, to prevent this in the future? In my opinion, the lib should work without any "workarrounds", and even if...

First of all, thx for deep analyzing the problem. It may not the very best solution, seems it seems to make sense. But it should definitifly not made as static...

Today, there's still no v3 released. So, this is a small quick and dirty workarround: ```powershell $destinationRoot = "path/to/output" [RegEx]$Search = '(index\.html)"' $Replace = '"' [RegEx]$Search2 = '(\.html)"' $Replace2 =...

My plan is to communicate with a ATMega AVR chip. But in the moment, i have no device here. I2C will be requied in the future, too. I want give...