whoami > dpnunez

1type Education = {
2  degree: string;
3  institution: string;
4  location: string;
5  startYear: number;
6  endYear?: number;
7  description?: string;
8};
9
10const education: Education[] = [
11  {
12    degree: "High School with Technical Focus in Electronics",
13    institution: "Instituto Federal Sul-Rio-Grandense (IFSul)",
14    location: "Pelotas, Brazil",
15    startYear: 2015,
16    endYear: 2019,
17    description: "A technical high school program with an emphasis on electronics, including circuit design and hardware programming.",
18  },
19  {
20    degree: "Bachelor of Science in Computer Science",
21    institution: "Universidade Federal de Pelotas (UFPEL)",
22    location: "Pelotas, Brazil",
23    startYear: 2020,
24    description: "Currently pursuing a degree focused on software development, algorithms, and data structures.",
25  },
26  {
27    degree: "Exchange Program in Computer Science",
28    institution: "Instituto Politécnico de Bragança (IPB)",
29    location: "Bragança, Portugal",
30    startYear: 2025,
31    description: "Part of an exchange program, this internship will focus on software engineering and development practices.",
32  },
33];
34
35export { education };