-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
114 lines (104 loc) · 7.55 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mateo Molina CV</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- Botón de modo oscuro fuera del contenedor -->
<button id="dark-mode-toggle" aria-label="Toggle dark mode">Toggle Dark Mode</button>
<div class="container">
<header>
<h1>Mateo Molina González</h1>
<p>Computer and Systems Engineering Student</p>
<p>Envigado, Antioquia | <a href="http://www.linkedin.com/in/mateomolinag">LinkedIn</a> | (+57) 305 326 0950 | mateo.moligon@gmail.com</p>
</header>
<section class="section">
<h2>Work Experience</h2>
<div class="job">
<h3>Crystal SAS - GEF and Punto Blanco, Sabaneta, Antioquia</h3>
<p><strong>November 2022 - January 2023</strong> | <strong> Sales Promoter and Warehouse Assistant </strong></p>
<ul>
<li>Contributed to sales demand management at Mayorca shopping center during the December season.</li>
<li>Supported sales operations, cashiering, and point-of-sale system operations.</li>
<li>Ensured optimal customer satisfaction by addressing inquiries and resolving purchase concerns.</li>
</ul>
</div>
<div class="job">
<h3>Antioquia Swimming League, Medellín, Antioquia</h3>
<p><strong>September 2023 - December 2023</strong> | <strong> Intern as Assistant in Application Development </strong></p>
<ul>
<li>Collaborated in the maintenance and enhancement of existing applications to improve performance and security.</li>
<li>Developed scripts and tools to automate repetitive tasks, enhancing efficiency within the systems department.</li>
<li>Managed timing systems for swimming competitions, including live data transmission and configuration.</li>
</ul>
</div>
</section>
<section class="section">
<h2>Academic Background</h2>
<div class="education">
<p><strong>University of Medellin, Faculty of Engineering</strong> | UDM Medellín, Antioquia <br> <em>July 2024 - Currently</em> | Engineer's degree, Computer and Systems Engineering</p><br>
<p><strong>Specialized Studies Center CESDE</strong> | Medellín, Antioquia <br> <em>February 2022 - December 2023</em> | Technical Assistant in Software Development | <strong>GPA: 4.92</strong></p><br>
<p><strong>Colombo Americano Center</strong> | Envigado, Antioquia <br> <em>February 2019 - November 2022</em> | English for Youth | B2 Level Training (CEFR)</p><br>
<p><strong>Talk English Schools</strong> | Boston, Massachusetts <br> <em>February 2024 - June 2024</em> | English as a Second Language (ESL) | Proficiency Advanced Level</p>
</div>
</section>
<section class="section">
<h2>Volunteer Experience</h2>
<div class="volunteer">
<p><strong>Antioquia Swimming League</strong> | Medellín, Antioquia <br> <em>June 2022 - July 2022</em> | English Translator and Camera Operator for Live Broadcast</p>
<ul>
<li><strong>Worked in the communications area of the main aquatic complex Cesar Zapata during the South American and Pan American Masters Swimming Championships.</strong></li>
</ul>
</div>
</section>
<section class="section">
<h2>Skills & Interests</h2>
<div class="skills">
<h3>Skills:</h3>
<ul>
<li><strong>Project Management:</strong> Experienced in coordinating projects from inception to completion, ensuring timely delivery and adherence to budgets.</li>
<li><strong>Programming Analysis:</strong> Proficient in analyzing code for optimization and debugging, with experience in various programming languages.</li>
<li><strong>Teamwork:</strong> Strong collaborator who works effectively in diverse teams to achieve common goals.</li>
<li><strong>Adaptability & Flexibility:</strong> Quick to adjust to changing environments and able to handle multiple tasks efficiently.</li>
<li><strong>Planning & Organization:</strong> Skilled in organizing tasks and projects to maximize productivity and efficiency.</li>
<li><strong>Problem-Solving:</strong> Effective at identifying issues and developing strategic solutions to overcome obstacles.</li>
<li><strong>Responsibility & Punctuality:</strong> Reliable and committed to meeting deadlines and responsibilities.</li>
<li><strong>Communication:</strong> Strong verbal and written communication skills, facilitating effective interactions with team members and stakeholders.</li>
<li><strong>Time Management:</strong> Adept at prioritizing tasks and managing time effectively to meet deadlines.</li>
</ul>
</div>
<div class="interests">
<h3>Interests:</h3>
<ul>
<li><strong>Continuous Self-Learning:</strong> Committed to lifelong learning and professional development through various resources.</li>
<li><strong>Improving Skills:</strong> Passionate about refining technical and interpersonal skills to enhance personal and professional growth.</li>
<li><strong>Computer Science:</strong> Enthusiastic about emerging technologies and their applications in solving real-world problems.</li>
<li><strong>Cybersecurity:</strong> Interested in understanding and addressing security challenges in the digital landscape.</li>
<li><strong>Investments & Business:</strong> Engaged in exploring investment strategies and business models for growth.</li>
<li><strong>Strategies & Negotiations:</strong> Keen on developing effective strategies and negotiation techniques to achieve win-win outcomes.</li>
<li><strong>Family Activities:</strong> Values quality time spent with family, fostering strong relationships.</li>
<li><strong>Swimming:</strong> An avid swimmer, enjoying both leisure and competitive swimming as a lifelong activity.</li>
</ul>
</div>
</section>
</div>
<script>
const toggleButton = document.getElementById('dark-mode-toggle');
const currentTheme = localStorage.getItem('theme');
if (currentTheme === 'dark') {
document.body.classList.add('dark-mode');
}
toggleButton.addEventListener('click', () => {
document.body.classList.toggle('dark-mode');
let theme = 'light';
if (document.body.classList.contains('dark-mode')) {
theme = 'dark';
}
localStorage.setItem('theme', theme);
});
</script>
</body>
</html>