Main public logs

Jump to navigation Jump to search

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

Logs
  • 20:03, 23 February 2025 Sapero talk contribs created page Module:Mallian time (Created page with "function t3(n) if n == 0 then return "0" end local result = "" while n > 0 do result = ("012346789"):sub((n % 9) + 1, (n % 9) + 1) .. result n = math.floor(n / 9) end return result end function mallianDecimalTime(showDecimals) showDecimals = showDecimals ~= false local date = os.date("!*t") local timeInMilliseconds = ((date.hour * 60 + date.min) * 60 + date.sec) * 1000 + 25661000 local time = (timeInMilliseconds % 8640...")