Life Calendar: your life in weeks. See the weeks of your life and mark the important ones.
Type this in a Julia REPL:
]add https://github.com/kavir1698/LifeCalendar.jl.git
Example:
using LifeCalendar
using Dates
my_birth_date = Date(1990, 5, 16)
expected_years = 80
special_dates = Dict(
"School" => [Date(1996, 9, 16), Date(2007, 6, 16)],
"BSc" => [Date(2007, 9, 16), Date(2011, 3, 16)],
"MSc" => [Date(2011, 9, 1), Date(2013, 9, 1)],
"Marriage" => [Date(2016, 3, 3), Date(2016, 3, 3)],
)
life_calendar(my_birth_date, expected_years, special_dates)
This will save the calendar as a PDF.