static boolean centralServerUp(int timeout) {
  try {
    ret match3("pong", loadPageWithTimeout("http://tinybrain.de:8080/ping.php", timeout));
  } catch (Exception e) {
    print(e);
    ret false;
  }
}