-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
142 lines (142 loc) · 6.54 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Andres Torres CV</title>
<link href="https://fonts.googleapis.com/css2?family=Times+New+Roman&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Times New Roman', serif;
margin: 0;
padding: 0;
background-color: #129395;
color: #fdf6e3; /* Changed text color */
line-height: 1.6;
}
.container {
width: 80%;
margin: auto;
overflow: hidden;
padding: 20px;
border: 5px solid #268bd2;
border-radius: 10px;
background-color: #002b36; /* Changed container background color */
}
.header, .section {
background-color: #073642;
padding: 20px;
margin-bottom: 20px;
border-radius: 10px;
}
.header {
text-align: center;
}
.title {
font-size: 2em; /* Adjusted title font size */
color: #268bd2;
margin-bottom: 10px; /* Added margin */
}
.contact-info {
text-align: center;
margin-bottom: 20px;
}
.contact-info a {
color: #2aa198;
}
.section-title {
background-color: #586e75;
color: #fdf6e3;
padding: 10px;
border-radius: 10px;
font-size: 1.2em; /* Adjusted section title font size */
margin-bottom: 10px;
}
.skills, .certifications {
display: flex;
flex-wrap: wrap;
}
.skills div, .certifications div {
background-color: #073642;
color: #fdf6e3;
margin: 5px;
padding: 10px;
border-radius: 10px;
flex: 1 1 45%;
}
.section-content {
background-color: #073642;
color: #fdf6e3;
padding: 20px;
border-radius: 10px;
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<h1 class="title">Andres Torres</h1>
<p class="title" style="font-size: 0.8em;">Economist & Data Scientist, El Salvador</p> <!-- Adjusted subtitle font size -->
</div>
<div class="contact-info">
<p>LinkedIn: <a href="https://www.linkedin.com/in/andres-torres-2b310521a">www.linkedin.com/in/andres-torres-2b310521a</a></p>
</div>
<div class="section">
<div class="section-title">Summary</div>
<div class="section-content">
<p>An economist grounded in programming and Data Science, currently a reporter and editor for Latin America and Spain at BeInCrypto. Before dedicating himself to Blockchain Research and Data Journalism, Andrés worked for over two years in financial and data analysis in the international development sector. As a mirror of his passion for technology and constant learning, he has contributed to Data Science and Open Source projects for more than three years in his free time. He holds a Master's Degree in Project Management and has completed postgraduate studies in Blockchain Technology at the Frankfurt School of Finance & Management.</p>
</div>
</div>
<div class="section">
<div class="section-title">Experience</div>
<div class="section-content">
<p><strong>BeInCrypto</strong></p>
<p>Technical Editor (December 2023 - Present)<br>Data Journalist (January 2022 - Present)</p>
<p><strong>freeCodeCamp</strong> - Data Science Contributor (July 2021 - Present)</p>
<p><strong>IEBS</strong> - Data Science and Blockchain lecturer (December 2022 - December 2023)</p>
<p><strong>United Nations Volunteers</strong> - Data Analyst (August 2021 - November 2021)</p>
<p><strong>Ministerio de Hacienda de El Salvador</strong> - Financial Analyst (Public Budget Division) (March 2020 - December 2020)</p>
<p><strong>Gobierno Municipal de Guadalupe, San Vicente</strong> - Data Analyst (August 2019 - March 2020)</p>
<p><strong>Universidad de El Salvador</strong> - Assistant Lecturer (Economics) (July 2019 - March 2020)</p>
<p><strong>Ministry of Foreign Affairs, El Salvador</strong> - Junior Economist (October 2018 - December 2018)</p>
</div>
</div>
<div class="section">
<div class="section-title">Education</div>
<div class="section-content">
<p><strong>Frankfurt School of Finance & Management</strong> - Postgraduate Studies, Blockchain Technology (June 2023 - December 2023)</p>
<p><strong>Universidad Isabel I</strong> - Master's Degree in Project Management (August 2021 - June 2023)</p>
<p><strong>Universidad de El Salvador</strong> - Bachelor's Degree in Economics (January 2015 - January 2021)</p>
</div>
</div>
<div class="section">
<div class="section-title">Certifications</div>
<div class="certifications">
<div>Machine Learning Nanodegree (AWS Machine Learning Scholarship)</div>
<div>Data Science Summer School (Hertie School Data Science Lab)</div>
<div>Data Science Bootcamp (Hasso Plattner Institute)</div>
<div>Data Mining (University of Milano-Bicocca)</div>
<div>Google Project Management Professional Certificate</div>
<div>Scientific Computing with Python (WorldQuant University)</div>
<div>Agile Development Specialization (University of Virginia Darden School of Business)</div>
</div>
</div>
<div class="section">
<div class="section-title">Skills</div>
<div class="skills">
<div>Data Science</div>
<div>Data Storytelling</div>
<div>Project Management</div>
<div>SQL</div>
<div>Data Analysis</div>
<div>Quantitative Analysis</div>
<div>Python Programming</div>
<div>Software Development</div>
<div>C-Suite Reporting</div>
<div>Stakeholder Management</div>
</div>
</div>
</div>
</body>
</html>