-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathresumeData.js
More file actions
170 lines (170 loc) · 5.11 KB
/
resumeData.js
File metadata and controls
170 lines (170 loc) · 5.11 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
const resume = [
{
title: 'Education',
data: [
{
title: 'University of São Paulo',
rightTitle: '2017 - Dec/2022',
descriptions: [
{
info: 'Bachelor of Science in Computer Science',
rightInfo: 'GPA 8.8/10 - 4th in class (out of 127)',
},
],
},
{
title: 'Linköping University (Sweden)',
rightTitle: 'Aug/2019 - Jan/2020',
descriptions: [
{
info:
'One semester studying abroad taking Computer Science courses as an exchange student.',
},
],
},
{
title: 'Escola Tecnica Everardo Passos (ETEP)',
rightTitle: '2014 - 2016',
descriptions: [
{
info: 'Computer Technician',
},
],
},
],
},
{
title: 'Work Experience',
data: [
{
title: 'Incoming Software Engineer Intern at Facebook (London - UK)',
rightTitle: 'July/2021 - Oct./2021',
},
],
},
{
title: 'Major Projects',
data: [
{
title: `<a href="https://github.com/FbFDestro/YourAutoLiker" target='_blank'>Your Auto Liker</a>`,
rightTitle: '2018 - 2019',
descriptions: [
{
info: `Chrome extension that automatically likes or dislikes youtube videos from
selected channels when you watch them. Developed mainly with Javascript
and Chrome Browser API. <a href="https://fbfdestro.github.io/YourAutoLiker/">Published at Chrome Web Store</a> with real users.`,
},
],
},
{
title: `<a href="https://github.com/FbFDestro/news-program-manager" target='_blank'>News program manager</a>`,
rightTitle: '2019 - 2020',
descriptions: [
{
info: `Developed for learning purposes to the Database course focused
on complex queries and modeling. The project has a React.js frontend
that makes requests to a Node.js RESTful backend which query a PostgreSQL database. `,
},
],
},
{
title: `<a href="https://github.com/FbFDestro/DownloadBanker" target='_blank'>DownloadBanker</a>`,
rightTitle: '2015 - 2016',
descriptions: [
{
info: `E-commerce of authorial digital content with the goal of being an
intermediary between producers and consumers.
The project has a Website (Asp.Net, C#, and Javascript),
an Android App (Java) and a Desktop Application (C#).`,
},
],
},
{
title: `<a href="https://github.com/FbFDestro/TechFit" target='_blank'>TechFit</a>`,
rightTitle: '2015',
descriptions: [
{
info: 'Desktop gym manager developed with C# and MySQL',
},
],
},
{
title: `<a href="https://github.com/FbFDestro/FirstPlei" target='_blank'>FirstPlei</a>`,
rightTitle: '2014',
descriptions: [
{
info:
'Desktop games including Sudoku, Memory Game and Tic Tac Toe developed with C#',
},
],
},
],
},
{
title: 'Activities',
data: [
{
title: 'University Teaching Assistant',
rightTitle: 'Mar/2018 - Jun/2019',
descriptions: [
{
info: `Helped professor with development and correction of tests and exercises for Introduction
to Computer Science I and Introduction to Computer Science: Laboratory Practice I.
Gave classes for around 60 students to reinforce understanding of subjects and solve doubts.`,
},
],
},
{
title: 'Brazilian ICPC Summer School',
rightTitle: 'Unicamp – Jan./2018',
descriptions: [
{
info: 'Two weeks training for competitive programming contests',
},
],
},
{
title: 'Member at University Study Group for Programming Contests (GEMA)',
rightTitle: 'Mar/2017 - Dec/2018',
descriptions: [
{
info: 'Weekly meetings and contests to exercise problem-solving.',
},
],
},
],
},
{
title: 'Achievements',
data: [
{
title: 'ACM-ICPC South America/Brazil First Phase',
descriptions: [
{
info:
'7th place in local scoreboard/53rd place in global scoreboard out of 1556',
rightInfo: '2018',
},
{
info:
'9th place in local scoreboard/93rd place in global scoreboard out of 873',
rightInfo: '2017',
},
],
},
{
title: 'Brazilian Informatics Olympiad - OBI',
descriptions: [
{
info: '76th place out of 1251 participants - University level',
rightInfo: '2017',
},
{
info: '40th place out of 122 participants (honorable mention) - Junior level',
rightInfo: '2012',
},
],
},
],
},
];