diff options
| author | quentin@aristote.fr <quentin@aristote.fr> | 2023-08-20 14:27:53 +0200 |
|---|---|---|
| committer | quentin@aristote.fr <quentin@aristote.fr> | 2023-08-20 17:11:33 +0200 |
| commit | 1b58988cc70068e43c479809f3b3fa34bc5ff11d (patch) | |
| tree | 5a5abf9ba1fa3808be621dd2a3a3cdc6503eb162 /education | |
| parent | 00348ab9a2d66c41d61788455acfe6cfadad13c6 (diff) | |
change api to accomodate for tex cv
Diffstat (limited to 'education')
| -rw-r--r-- | education/2016-09_llg.nix | 15 | ||||
| -rw-r--r-- | education/2018-09_ens/2018-09_l3.nix | 14 | ||||
| -rw-r--r-- | education/2018-09_ens/2019-09_m1.nix | 12 | ||||
| -rw-r--r-- | education/2018-09_ens/2021-09_m2.nix | 12 | ||||
| -rw-r--r-- | education/2018-09_ens/default.nix | 12 |
5 files changed, 54 insertions, 11 deletions
diff --git a/education/2016-09_llg.nix b/education/2016-09_llg.nix index 9a13202..3ec5e41 100644 --- a/education/2016-09_llg.nix +++ b/education/2016-09_llg.nix @@ -1,12 +1,23 @@ { href, ... }: { - date = { start = "2016-09-01"; end = "2018-07-31"; }; + date = { + start = { + year = 2016; + month = 9; + day = 1; + }; + end = { + year = 2018; + month = 7; + day = 31; + }; + }; institution = { name = "Lycée Louis-le-Grand"; location = "Paris, France"; url = "https://www.louislegrand.fr/"; }; studyType = "Higher Schools Preparatory Classes"; - description = "MPSI - MP* (Mathematics, Physics & Computer Science)"; + description = "MPSI - MP* (Mathematics, Physics and Computer Science)"; } diff --git a/education/2018-09_ens/2018-09_l3.nix b/education/2018-09_ens/2018-09_l3.nix index 40643b5..d02c9e3 100644 --- a/education/2018-09_ens/2018-09_l3.nix +++ b/education/2018-09_ens/2018-09_l3.nix @@ -2,8 +2,16 @@ { date = { - start = "2018-09-01"; - end = "2019-07-31"; + start = { + year = 2018; + month = 9; + day = 1; + }; + end = { + year = 2019; + month = 7; + day = 31; + }; }; program = { name = "ENS's Computer Science Department"; @@ -32,5 +40,5 @@ ]; }; description = - "Graduated with highest honors in Computer Science (17.80/20), with honors in Mathematics (14.74/20)"; + "Graduated with highest honors in Computer Science (17.80/20), with honors in Mathematics (14.74/20)."; } diff --git a/education/2018-09_ens/2019-09_m1.nix b/education/2018-09_ens/2019-09_m1.nix index f58e7ea..40ca4d1 100644 --- a/education/2018-09_ens/2019-09_m1.nix +++ b/education/2018-09_ens/2019-09_m1.nix @@ -2,8 +2,16 @@ { date = { - start = "2019-09-01"; - end = "2020-07-31"; + start = { + year = 2019; + month = 9; + day = 1; + }; + end = { + year = 2020; + month = 7; + day = 31; + }; }; program = { name = "ENS's Computer Science Department"; diff --git a/education/2018-09_ens/2021-09_m2.nix b/education/2018-09_ens/2021-09_m2.nix index 734e944..02ebc0b 100644 --- a/education/2018-09_ens/2021-09_m2.nix +++ b/education/2018-09_ens/2021-09_m2.nix @@ -2,8 +2,16 @@ { date = { - start = "2021-09-01"; - end = "2022-07-31"; + start = { + year = 2021; + month = 9; + day = 1; + }; + end = { + year = 2022; + month = 7; + day = 31; + }; }; program = { name = "Parisian Master of Research in Computer Science"; diff --git a/education/2018-09_ens/default.nix b/education/2018-09_ens/default.nix index 6c5aa4a..4adeee8 100644 --- a/education/2018-09_ens/default.nix +++ b/education/2018-09_ens/default.nix @@ -2,8 +2,16 @@ { date = { - start = "2018-09-01"; - end = "2023-08-31"; + start = { + year = 2018; + month = 9; + day = 1; + }; + end = { + year = 2023; + month = 8; + day = 31; + }; }; institution = { name = "École Normale Supérieure"; |
