https://github.com/kavir1698/lifecalendar.jl
Life Calendar: your life in weeks. See the weeks of your life and mark the important ones.
https://github.com/kavir1698/lifecalendar.jl
calendar julia julialang life life-calendar life-in-weeks vega-lite vegalite weeks
Last synced: about 1 month ago
JSON representation
Life Calendar: your life in weeks. See the weeks of your life and mark the important ones.
- Host: GitHub
- URL: https://github.com/kavir1698/lifecalendar.jl
- Owner: kavir1698
- Created: 2020-12-07T00:06:39.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-12-08T12:09:35.000Z (over 3 years ago)
- Last Synced: 2023-03-03T15:27:25.469Z (about 2 years ago)
- Topics: calendar, julia, julialang, life, life-calendar, life-in-weeks, vega-lite, vegalite, weeks
- Language: Julia
- Homepage:
- Size: 238 KB
- Stars: 9
- Watchers: 2
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# LifeCalendar.jl
Life Calendar: your life in weeks. See the weeks of your life and mark the important ones.
## Installation:
Type this in a Julia REPL:
```julia
]add https://github.com/kavir1698/LifeCalendar.jl.git
```## Usage
Example:
```julia
using LifeCalendar
using Datesmy_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.
