!7 module SfC > DynObjectTable { S stringToSearch = "ai1.space"; bool caseInsensitive = true; start { thread { clear(); LS l = dm_dynModulesOnServer_ids(); for (S id : l) { S code = getServerTranspiled2(id); if (caseInsensitive ? cic(code, stringToSearch) : contains(code, stringToSearch)) add(snippetWithTitle(id)); } print("Done searching for " + quote(stringToSearch) + ", checked " + n2(l, "module") + "."); } } }