CleanBrowsing
CleanBrowsing
Not familiar with it. What error do you get there?
Sorry for the delay checking your PR. Mind resolving the conflicts?
The issue with this syntax is that it breaks on openbsd's default shell (the standard sh shell - openbsd user here). For example, this is what I get when I...
Quick way to test: ``` $ ./test.sh ./test.sh[5]: [: test: unexpected operator/operand ``` file: ``` #!/bin/sh if [ $1 = "test" ]; then echo "cmd1 = test" fi ```
If I change to: ``` $ cat test.sh #!/bin/sh if [ "x$1" = "xtest" ]; then echo "cmd1 = test" fi ``` It works: ``` $ ./test.sh $ ./test.sh test...
Thanks! Checking that now.
Love the idea. Mind just switching the text to English? to make it easier for more people to use? thanks!
Mind fixing the conflicts?
Anyone with Windows experience to do it for us? Can't really help with it.
If it is always coming up as 1000ms, it means you do have an issue on the test. Maybe DNS is blocked or the dig command line tool is not...