Main public logs

Jump to navigation Jump to search

This is a combined display of all logs except the patrol, review, tag and thanks logs: :Who performed the action – enter their name without prefix under "Performer". :The page or user affected by an action – enter the page or user name (prefixed with "User:") under "Target".

Logs
  • 17:31, 2 February 2022 Tachyony talk contribs created page Module:TwitterSnowflake (Created page with "local p = {} local Date = require('Module:Date')._Date function p.snowflakeToDate(frame) local format = frame.args.format or "%B %e, %Y" local epoch = tonumber(frame.args.epoch) or 1288834974 local id_str = frame.args.id_str if type(id_str) ~= "string" then error("bad argument #1 (expected string, got " .. type(id_str) .. ")", 2) end if type(format) ~= "string" then error("bad argument #2 (expected string, got " .. type(format) .. ")", 2) end if type(epoch) ~= "n...")