All public logs

Jump to navigation Jump to search

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

Logs
  • 16:25, 27 August 2022 Ahapublic talk contribs created page Spreadsheetgen (Created page with "=== Automatically creating the schedule for the year === The following python script is able to generate the yearly schedule for a given year. <markdown> ``` from datetime import datetime, timedelta from dateutil.rrule import rrule, DAILY, TH, SA import datetime as dt import xlsxwriter workbook = xlsxwriter.Workbook('demo.xlsx') bold = workbook.add_format({'bold': True}) def get_first_date_of_month(year, month): first_date = datetime(year, month, 1) return fir...")