!7 p { testURL("http://ai1.lol"); testURL("http://www.web-woody-lab.de/010w_start.php"); testURL("http://ai1.lol/1008855/raw"); testURL("http://snippets.tinybrain.de"); testURL("http://tinybrain.de:8080/tb/snippets.php"); } static bool testURL(S url) { print("Checking: " + url); int code = getURLReturnCode(url); S s = ""; bool ok = false; if (code == 200) { s = " => OK"; ok = true; } else { s = " => ???"; printAndClearSilentException(); } print(" Code: " + code + s); ret ok; }