static S createJavaProgram(S code, S title) { S addURL = "http://tinybrain.de:8080/tb-int/add_snippet.php"; S query = "type=21&superhigh=1&public=1&text=" + urlencode(code) + "&name=" + urlencode(title); S answer = doPost(query, addURL); if (!isSnippetID(answer)) fail(answer); ret answer; }