Skip to content

tylert/wall-calendar-core

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Feb 5, 2025
7910ef0 · Feb 5, 2025
Jun 24, 2023
Jan 31, 2022
Dec 19, 2024
Sep 18, 2015
Dec 23, 2024
Dec 7, 2024
Jan 5, 2024
Dec 23, 2024
Jan 5, 2024
Jan 5, 2024
Dec 19, 2024
Jan 26, 2022
Jun 29, 2022
Dec 18, 2023
Feb 5, 2025
Jan 30, 2024
Jan 19, 2025
Jan 26, 2022
Jan 5, 2024
Dec 7, 2024
Dec 7, 2024
Jan 19, 2025
Jan 26, 2022
Dec 23, 2024
Dec 7, 2024
Dec 23, 2024
Nov 6, 2023

Repository files navigation

Using

# Initial setup
make venv && source .venv/bin/activate

# Show all events for this year
( go run . --year 2024 ; \
    ./holiday_other.py --year 2024 ) | sort

# Find out when the next few Easters will occur
for (( year=2024 ; year<2034 ; year++ )); do
    go run . --year ${year} | grep 'Easter Sunday'
done

Golang

Links