The editors' meeting has been canceled for technical reasons.
All public logs
Jump to navigation
Jump to search
Combined display of all available logs of NeuroWiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 08:41, 23 January 2025 Selfice talk contribs created page Module:ScheduleList (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...")