summaryrefslogtreecommitdiff
path: root/education/2018-09_ens/default.nix
blob: 10a00d12962ce6c09fa2199d0ca488dcc8897f02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ make, ... }:
{
  date = {
    start = {
      year = 2018;
      month = 9;
      day = 1;
    };
    end = {
      year = 2023;
      month = 8;
      day = 31;
    };
  };
  institution = {
    name = "École Normale
  Supérieure";
    url = "https://www.ens.psl.eu/en";
    location = "Paris, France";
  };
  studyType = "Master's degree in Theoretical Computer Science";
  years = builtins.map (path: make path { }) [
    ./2018-09_l3.nix
    ./2019-09_m1.nix
    ./2021-09_m2.nix
  ];
  description = "Also followed extra post-graduate courses in Mathematics.";
}