static L getVersionsOfSnippet(S snippetID) { S html = loadPage("http://tinybrain.de:8080/tb/versions.php?id=" + psI(snippetID)); LL rows = new TableFinder(html).rows(); L header = first(rows); new L versions; for (L row : dropFirst(rows)) { SS data = toMapAccordingToHeader(row); printStruct(data); } ret versions; }