static S createSuperHighSnippet(S text, S title, int type, S user, S pass) { S addURL = "http://tinybrain.de:8080/tb-int/add_snippet.php"; Map query = litmap("type", type, "superhigh", 1, "public", 1, "text", text, "name", title, "_user", user, "_pass", pass); S answer = doPost(query, addURL); if (!isSnippetID(answer)) fail(answer); print("Snippet created. " + formatSnippetID(answer)); ret formatSnippetID(answer); }