We'll look for wiki's good parts and save them here. No plans to organize other than a custom Recent Changes.
Farmwiki is a federated farm server experiment. search ![]()
See also Most Visible Federation
We'll mine the search index logs for insight as to what is happening in the federation.
ROSTER search.federatedwiki.org:3030/recent-activity
I'm noticing strange text mixed in with the Recent Activity Roster from Federation Search. matrix ![]()
FROM query.search.federatedwiki.org/recent-activity CODE unfish CLICK PREVIEW items
export function unfish() { let items = this.page.story let bad = items[4].text.split(/\n/) let good = bad.filter(line => !line.endsWith(':')) items[4].text = good.join("\n") this.items = items return `${bad.length - good.length} lines removed` }