Jump to content

Related changes

Enter a page name to see changes on pages linked to or from that page. (To see members of a category, enter Category:Name of category). Changes to pages on your Watchlist are in bold.

Recent changes options Show last 50 | 100 | 250 | 500 changes in last 1 | 3 | 7 | 14 | 30 days
Hide registered users | Hide anonymous users | Hide my edits | Show bots | Hide minor edits
Show new changes starting from 23:19, 2 June 2025
 
Page name:
List of abbreviations:
N
This edit created a new page (also see list of new pages)
m
This is a minor edit
b
This edit was performed by a bot
(±123)
The page size changed by this number of bytes

30 May 2025

N    23:28  Module:ConvertMPHKMHTCStats diffhist +492 Sharkius talk contribs (Created page with "local p = {} function round(num, digits) digits = digits or 0 local mult = 10 ^ digits return math.floor(num * mult + 0.5) / mult end function p.main(frame) local args = frame.args local mph = tonumber(args[1]) local sigfig = tonumber(args["sigfig"]) or 4 if not mph then return "" end local kmh = mph * 1.609344 -- Round to nearest integer local rounded_mph = round(mph) local rounded_kmh = round(kmh) return string.format("%d (%d)", rounded_mph, rounded_k...")