-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
352 lines (323 loc) · 19.8 KB
/
index.html
File metadata and controls
352 lines (323 loc) · 19.8 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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Alfredo Carbonari Garcia CV</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css"
integrity="sha512-5A8nwdMOWrSz20fDsjczgUidUBR8liPYU+WymTZP1lmY9G6Oc7HlZv156XqnsgNUzTyMefFTcsFH/tnJE/+xBg=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" type="text/css" href="cv.css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script>
function openNav() {
document.getElementById("sidenav").style.width = "280px";
document.getElementById("closebtn").style.display = "block";
document.getElementById("closebtn").style.zIndex = "1";
}
function closeNav() {
document.getElementById("sidenav").style.width = "0";
document.getElementById("closebtn").style.display = "none";
document.getElementById("closebtn").style.zIndex = "0";
}
</script>
</head>
<body>
<div class="container">
<!--PROFILE PICTURE, TITLES AND INFO-->
<div class="left-side">
<div class="profile-header">
<div class="img-container">
<img src="./img/alfredo.png" />
</div>
<h2> Alfredo Carbonari Garcia<br /><span>Developer</span></h2>
</div>
<div class="personal-info">
<h3 class="title">Personal Info</h3>
<ul>
<li>
<span class="icon"><i class="fa fa-birthday-cake"></i></span>
<span class="text">02/10/1993</span>
</li>
<li>
<span class="icon"><i class="fa fa-globe"></i></span>
<span class="text">italian, spanish</span>
</li>
</ul>
</div>
<div class="contact-info">
<h3 class="title">Contact Info</h3>
<ul>
<li>
<span class="icon"><i class="fa fa-map-marker"></i></span>
<span class="text">Madrid, Spain</span>
</li>
<li>
<span class="icon"><i class="fa fa-phone-square"></i></span>
<span class="text">+34 651 13 66 92</span>
</li>
<li>
<span class="icon"><i class="fa fa-envelope-square"></i></span>
<span class="text">alfredcgarcia@outlook.com</span>
</li>
<li>
<span class="icon"><i class="fa fa-github-square"></i></span>
<a href="https://github.com/alfredcargar">alfredcargar</a>
</li>
<li>
<span class="icon"><i class="fa fa-linkedin-square"></i></span>
<a href="https://www.linkedin.com/in/alfredo-carbonari-garcia/">alfredo-carbonari-garcia</a>
</li>
</ul>
</div>
<div class="tech-skills">
<h3 class="title">Technologies</h3>
<ul>
<li><span class="text">Java (J2EE, Spring Boot)</span></li>
<li><span class="text">Maven</span></li>
<li><span class="text">SQL (MySQL, PostgreSQL)</span></li>
<li><span class="text">Git</span></li>
<li><span class="text">Jenkins</span></li>
<li><span class="text">HTML+CSS</span></li>
<li><span class="text">Javascript</span></li>
<li><span class="text">Batch, Shell</span></li>
<li><span class="text">Python</span></li>
<li><span class="text">Matlab/Octave</span></li>
</ul>
</div>
</div>
<!--TEXT CONTENT-->
<div class="right-side">
<!--sidebar button-->
<div class="sidebar-container">
<div id="sidenav" class="sidenav">
<!--<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>-->
<div class="close-div">
<span id="closebtn" class="closebtn" onclick="closeNav()">×</span>
</div>
<div class="sidebar-header">
<div class="sidebar-img">
<img src="./img/alfredo.png" />
</div>
<h2> Alfredo Carbonari Garcia<br /><span class="subtitle">Developer</span></h2>
</div>
<!--PERSONAL AND CONTACT INFORMATION-->
<div class="personal-info">
<h3 class="title">Personal Info</h3>
<ul>
<li>
<span class="icon"><i class="fa fa-birthday-cake"></i></span>
<span class="text">02/10/1993</span>
</li>
<li>
<span class="icon"><i class="fa fa-globe"></i></span>
<span class="text">italian, spanish</span>
</li>
</ul>
</div>
<div class="contact-info">
<h3 class="title">Contact Info</h3>
<ul>
<li>
<span class="icon"><i class="fa fa-map-marker"></i></span>
<span class="text">Madrid, Spain</span>
</li>
<li>
<span class="icon"><i class="fa fa-phone-square"></i></span>
<span class="text">+34 651 13 66 92</span>
</li>
<li>
<span class="icon"><i class="fa fa-envelope-square"></i></span>
<span class="text">alfredcgarcia@outlook.com</span>
</li>
<li>
<span class="icon"><i class="fa fa-github-square"></i></span>
<a href="https://github.com/alfredcargar">alfredcargar</a>
</li>
<li>
<span class="icon"><i class="fa fa-linkedin-square"></i></span>
<a href="https://www.linkedin.com/in/alfredo-carbonari-garcia/">alfredo-carbonari-garcia</a>
</li>
</ul>
</div>
<!--TECHNICAL SKILLS-->
<div class="tech-skills">
<h3 class="title">Technologies</h3>
<ul>
<li style="padding: 18px;"><span class="text">Java (J2EE, Spring Boot),
Maven,
SQL (MySQL, PostgreSQL),
Git, Jenkins, HTML, CSS, JavaScript, Batch/Shell, Python, Matlab/Octave
</span></li>
</ul>
</div>
<a class="sections" href="#work">Work</a>
<a class="sections" href="#education">Education</a>
<a class="sections" href="#languages">Languages</a>
<a class="sections" href="#technologies">Technologies</a>
</div>
<!-- the button -->
<div class="hamburger-div">
<span onclick="openNav()">☰</span>
</div>
</div>
<!--WORK EXPERIENCE-->
<section class="about" id="work">
<h2 class="section-title">Work Experience</h2>
<div class="experience-n">
<h4 class="time-period">03/2023 - present<span class="city-mobile"><br />Madrid, Spain</span></h4>
<h3 class="paragraph-title">Software Developer</h3>
<h4 class="entity-name">
General Software - Crida
<span class="location"><span style="padding:5px;"><i class="fa fa-map-marker"></i></span>Madrid, Spain</span>
</h4>
<p class="experience-content">
Developer for Crida, Enaire's branch dedicated to investigation, development and innovation. My work here has its main focus mainly on application development, using Java and MSSQL along with technologies such as Vaadin, JEE, Spring Boot and Talend Open Studio for data inegration. The applications and APIs I've worked on include REST services and libraries that implement Machine Learning algorithms together with Python libraries for Data Science (Pandas, Numpy, scikit-learn), with the goal of predicting and gathering data on aircrafts routes and traffic. While working here I've also been formed and learned about aeronautical concepts and terminology that turned out necessary at the moment of understanding the data we stored and used as well as the algorithms I had to implement.
</p>
</div>
<div class="experience-n">
<h4 class="time-period">04/2022 - 10/2022<span class="city-mobile"><br />Madrid, Spain</span></h4>
<h3 class="paragraph-title">Java Developer</h3>
<h4 class="entity-name">
Aktios Digital Services SL (Indra Sistemas)
<span class="location"><span style="padding:5px;"><i class="fa fa-map-marker"></i></span>Madrid, Spain</span>
</h4>
<p class="experience-content">
External Java Developer in Indra for a project involving developing applications for the EPO (European Patent Office). Among my functions and the technologies used:
<ul class="experience-list">
<li>Development and maintainance of Java applications, mostly web REST services and other standalone GUI applications. For this purpose I've worked with JEE, JSP (including HTML, CSS and JS), EJB, JPA, Maven and WildFly (JBoss).</li>
<li>
Version control and deployment using Bitbucket and Jenkins.
</li>
<li>Organization of work through Agile and SCRUM methodologies using Jira.</li>
<li>Control and maintainance of the remote Windows and Linux Servers where some applications were running.</li>
<li>Scheduling of tasks remotely with UAC Stonebranch, including batch and shell scripting and organization of workflows.</li>
</ul>
</p>
</div>
<div class="experience-n">
<h4 class="time-period">11/2020 - 12/2021<span class="city-mobile"><br />Padova, Italy</span></h4>
<h3 class="paragraph-title">Backend Developer</h3>
<h4 class="entity-name">
Dedicated Italia Srl
<span class="location"><span style="padding:5px;"><i class="fa fa-map-marker"></i></span>Padova, Italy</span>
</h4>
<p class="experience-content">
Java developer for a platform with microservices architecture, specialized in EDI (Electronic Document Interchange), with main clients in the automotive and fashion industries.
While here I worked in:
<ul class="experience-list">
<li>Java development;</li>
<li>Version control and deployment with Bitbucket and Jenkins;</li>
<li>Setup and maintainance of the Java backed MySQL database using JDBC;</li>
<li>Revision of documents EDI/SAP (edifact, Idoc, csv);</li>
<li>Customer/partners support;</li>
</ul>
</p>
</div>
<div class="experience-n-last">
<h4 class="time-period">09/2015 - 03/2016<span class="city-mobile"><br />Venice, Italy</span></h4>
<h3 class="paragraph-title">E-Commerce employee</h3>
<h4 class="entity-name">
Centernet Italia Srl<span class="location">
<span style="padding:5px;"><i class="fa fa-map-marker"></i></span>Venice, Italy
</span>
</h4>
<p class="experience-content">
Employee for an e-commerce fashion oriented platform for the italian company OVS, in its recent move to Spain.
In my work here I have been doing customer support, ser iving an intermediary role between clients in Spain and warehouse and management in Italy, as well as support on various topics regarding the web page.
</p>
</div>
</section>
<section class="about" id="education">
<h2 class="section-title">Education </h2>
<div class="experience-n">
<h4 class="time-period">2016 - 2020</h4>
<h3 class="paragraph-title">Bachelor's degree in Sound Engineering</h3>
<h4 class="entity-name">
Conservatorio C. Pollini
<span class="location"><span style="padding:5px;"><i class="fa fa-map-marker"></i></span>Padova, Italy</span>
</h4>
<h5 class="score">Final Score: 104/110</h5>
<p class="experience-content">
Main focus of the studies included acoustics, music production, digital signal processing and programming oriented to audio and multimedia. I graduated with a thesis on localization of sound sources in a virtual acoustic space, part of which can be seen on <a href="https://github.com/alfredcargar/Acoustics">my repository on reverb algorithms</a>. <br /><br />
During my studies here I had the occasion to work in the auditorium of the Conservatory for various recordings, mixings and masterings of groups and orchestras along engineers and artists such as: Marco Lincetto, Alvise Vidolin, Nicola Bernardini and Claudio Ambrosini.<br />
</p>
</div>
<div class="experience-n-last">
<h4 class="time-period">2007 - 2013</h4>
<h3 class="paragraph-title">High school diploma</h3>
<h4 class="entity-name">
ITC G. Parini
<span class="location"><span style="padding:5px;"><i class="fa fa-map-marker"></i></span>Mestre, Italy</span>
</h4>
<h5 class="score">Final Score: 86/100</h5>
<p class="experience-content">
Business oriented high school course, with main subjects being economics and business administration.
</p>
</div>
</section>
<section class="about" id="languages">
<h2 class="section-title">Languages</h2>
<div class="experience-n-last">
<table id="languages" style="width: 100%;">
<tr>
<th></th>
<th>Listening Comprehension</th>
<th>Reading Comprehension</th>
<th>Oral Expression</th>
<th>Written Expression</th>
</tr>
<tr>
<td style="width:20%">Italian</td>
<td>native</td>
<td>native</td>
<td>native</td>
<td>native</td>
</tr>
<tr>
<td>Spanish</td>
<td>native</td>
<td>native</td>
<td>native</td>
<td>native</td>
</tr>
<tr>
<td>English</td>
<td>C2</td>
<td>C2</td>
<td>C2</td>
<td>C2</td>
</tr>
</table>
</div>
</section>
<section class="about" id="technologies">
<h2 class="section-title">Technologies</h2>
<div class="experience-n">
<p class="experience-content">
Competent user in Windows and Linux systems, as I've gained experience over the years for both server and client usage. Experienced with FTP and SSH protocols.<br />
Good knowledge of the backend side of software development, especially with Java and RDBMS databases with knowledge of both JDBC and JPA. I have professional experience in J2EE for development of REST services and am familiar with Spring Boot too, being it my framework of choice for personal projects.<br />
Experience working with unit testing and mocks using JUnit and Mockito.
From my experience at Crida I have learned the fundamentals and applications of Machine Learning, the most popular data science Python libraries and how to create trained models with thems, as well as implementing them with Java.
I have experience in Git having used both BitBucket and GitHub, but I've also came across other control version tools such as SVN.
Competent user with Matlab/Octave, having used it for my thesis on <a href="https://github.com/alfredcargar/Acoustics">virtual acoustics</a>. <br />
I have a general understanding of the main technologies used for the frontend, HTML CSS and Javascript, I have used them briefly in professional projects involving web services and mostly for personal projects.
</p>
</div>
<div class="experience-n-last">
<h3 class="paragraph-title-others">Other digital skills</h3>
<p class="experience-content">
Competent user of the sound/multimedia programming languages Max/MSP, SuperCollider and Csound.
I am competent with various software for the audio and multimedia production, including: Avid Pro Tools, Avid Sibelius, Finale, Ableton Live, Audacity, Adobe Premiere, Adobe After Effects, Adobe Photoshop.
</p>
</div>
</section>
<section class="about" id="others">
<h2 class="section-title">Other Experiences and hobbies</h2>
<div class="experience-n-last">
<p class="experience-content">
I am very passionate about music , I have been studying classical piano since primary school and I do compose and produce as a hobby. Thanks to my Conservatory studies I am not limited to compose and orchestrate for instruments I personally play. I have experience in (private) teaching theory and practice, as well as teaching spanish and english.
</p>
</div>
</section>
</div>
</div>
</body>
</html>