tylert / wall-calendar-core

Wall calendar core source files

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

BD  Bangladesh/Bangladesh
JP  Japan/Japon
NZ  New Zealand/Nouvelle-Zélande
UN  United Nations/Les Nations Unies

Links

About

Wall calendar core source files

License:GNU General Public License v3.0


Languages

Language:Go 62.2%Language:Python 36.9%Language:Makefile 0.9%