The editors' meeting has been canceled for technical reasons.

Module:ScheduleList: Revision history

Jump to navigation Jump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

23 January 2025

  • curprev 08:4108:41, 23 January 2025Selfice talk contribs 4,254 bytes +4,254 Created page with "local p = {} -- Utility function: Check if a year is a leap year local function is_leap_year(year) return (year % 4 == 0 and year % 100 ~= 0) or (year % 400 == 0) end -- Utility function: Calculate the number of days in a month local function days_in_month(month, leap_year) local days = {31, leap_year and 29 or 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31} return days[month] end -- Utility function: Convert `mmdd` input to `Month Day` format local function f..."