!752 answer { if (match("please scrape *", s, m)) ret "OK. Scraped here: tinybrain.de/" + parseSnippetID(scrape(m.unq(0))); } static S scrape(S url) { url = unslack(url); ret ntUpload("Scrape Bot" + formatSnippetID(getProgramID()), "Contents of " + url, loadPage(url)); } static S unslack(S url) { if (url.startsWith("<")) url = url.substring(1); if (url.endsWith(">")) url = url.substring(0, l(url)-1); ret url; }