Main public logs

From Rest of What I Know

Combined display of all available logs of Rest of What I Know. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 01:45, 15 September 2025 Roshan talk contribs created page Module:RedditUtil (Created page with "local p = {} local function trim(s) if type(s) ~= 'string' then return nil end return (s:gsub('^%s+', ''):gsub('%s+$', '')) end local function parse_from_url(url) if type(url) ~= 'string' then return {} end local u = url -- normalize common host variants -- supports old.reddit.com / www.reddit.com / reddit.com local sub, id = u:match('^https?://[^/]*reddit%.com/r/([A-Za-z0-9_]+)/comments/([A-Za-z0-9]+)/') if sub and id then return {subreddit = sub,...")