-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
228 lines (222 loc) · 9.31 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Marcos Sanson - Personal Website</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
line-height: 1.6;
background-color: #f4f4f9;
color: #333;
}
header {
background-color: #333;
color: #fff;
padding: 1rem 0;
text-align: center;
}
header h1 {
margin: 0;
font-size: 2.5rem;
}
header p {
margin: 0.5rem 0 0;
font-size: 1.2rem;
}
main {
max-width: 800px;
margin: 2rem auto;
padding: 1rem;
background: #fff;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
section {
margin-bottom: 2rem;
}
h2 {
color: #444;
border-bottom: 2px solid #ddd;
padding-bottom: 0.3rem;
}
ul {
padding-left: 1.5rem;
}
.contact-section {
text-align: center;
margin: 2rem auto;
padding: 1.5rem;
background: #fff;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
width: 60%;
}
.contact-links {
display: flex;
justify-content: center;
gap: 20px;
}
.contact-links a {
color: #4caf50;
text-decoration: none;
font-size: 1.2rem;
font-weight: bold;
padding: 10px 15px;
border: 2px solid #4caf50;
border-radius: 5px;
transition: all 0.3s ease-in-out;
}
.contact-links a:hover {
background-color: #4caf50;
color: #fff;
}
footer {
text-align: center;
padding: 1rem 0;
background-color: #333;
color: #fff;
margin-top: 2rem;
}
footer a {
color: #4caf50;
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}
.articles-section {
text-align: left;
margin: 2rem auto;
padding: 1rem;
background: #fff;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
width: 70%;
}
.articles-section ul {
list-style: none;
padding: 0;
}
.articles-section li {
margin-bottom: 1.5rem;
}
.articles-section a {
color: #4caf50;
text-decoration: none;
font-weight: bold;
}
.articles-section a:hover {
text-decoration: underline;
}
.articles-section .article-title {
display: block;
margin-bottom: 0.5rem;
}
.articles-section .article-content {
text-align: left;
margin-bottom: 0.5rem;
}
</style>
</head>
<body>
<header>
<h1>Marcos Sanson</h1>
<p>Undergraduate Computer Science Student</p>
</header>
<main>
<section>
<h2>About Me</h2>
<p>
I am a 3rd-year undergraduate computer science student at Grand Valley State University.
I am passionate about learning, applying new technologies, and solving complex problems.
My academic and professional journey has taken me across the United States and internationally, including an enriching study abroad experience and internship in Spain.
</p>
<p>
In addition to my studies as a computer science student at Grand Valley State University, I also work part-time as an undergraduate researcher in artificial intelligence (AI), machine learning (ML), and evolutionary computation (EC) research.
My current research involves improving evolutionary algorithms through innovative computational techniques.
</p>
</section>
<section>
<h2>Education</h2>
<p><strong>Grand Valley State University</strong><br>
Bachelor of Science (B.S.) in Computer Science, Minors in Mathematics and Cybersecurity (expected May 2026)<br>
Allendale, Michigan, United States<br>
</p>
<p><strong>Universidad Carlos III de Madrid</strong><br>
Study Abroad Program (September 2024 – December 2024)<br>
Madrid, Spain
</p>
</section>
<section>
<h2>Projects</h2>
<ul>
<li><strong>Identifying Evolvability-Enhancing Mutations via Computational Models</strong><br>
<em>October 2024 – Present (expected: April 2025)</em><br>
I am researching how certain mutations improve evolvability using NK landscapes. Under the guidance of Dr. Austin Ferguson, I will design computational experiments to analyze fitness data and test evolvability metrics in simulated landscapes. This project leverages high-performance computing to scale simulations and explore long-term evolutionary dynamics.
</li>
<li><strong>Automatic Atrium Segmentation</strong><br>
<em>September 2024 – December 2024</em><br>
GitHub Repository: <a href="https://github.com/officialconfuzius/cardiologyml" target="_blank">cardiologyml</a><br>
As part of my study abroad program at Universidad Carlos III de Madrid, I developed a machine learning model for 3D atrium segmentation in cardiology. My role involved preprocessing 3D medical imaging data, creating data pipelines, and optimizing mesh alignment using neural networks.
</li>
<li><strong>Exploiting Phylogenetic Analysis to Improve Evolutionary Search Algorithms</strong><br>
<em>September 2023 – July 2024</em><br>
GitHub Repository: <a href="https://github.com/amlalejini/phylogeny-informed-subsampling" target="_blank">phylogeny-informed-subsampling</a><br>
I worked with Dr. Alexander Lalejini on using phylogenetic analysis to improve evolutionary search algorithms. My responsibilities included designing and running experiments on a high-performance computing cluster and developing novel subsampling methods for optimization problems. This work resulted in a peer-reviewed paper, which I presented at the 2024 Genetic and Evolutionary Computation Conference (GECCO).
</li>
<li><strong>Procedurally-generated 2D Role-playing Game</strong><br>
<em>January 2024 – April 2024</em><br>
GitHub Repository: <a href="https://github.com/Marcos-Sanson/Procedural-RPG" target="_blank">Procedural-RPG</a><br>
As part of a software engineering course, I worked with a team to create a procedurally-generated 2D role-playing game. My contributions included designing game mechanics, implementing procedural content generation, and integrating core game features.
</li>
<li><strong>Meteorological Software Application</strong><br>
<em>May 2023 – November 2023</em><br>
During an internship at Parque Náutico de Castrelo in Spain, I developed a Python-based application to automate weather database creation and real-time data visualization. The project improved sensor data processing speeds by over 200,000% and supported environmental efforts like erosion management. I collaborated with a cross-cultural team and worked with multilingual datasets.
</li>
<li><strong>Spot Micro Agile Robot Dog Project</strong><br>
<em>October 2021 – May 2022</em><br>
GitHub Repository: <a href="https://sites.google.com/view/senior-tech-project" target="_blank">senior-tech-project</a><br>
I built a fully operational robot inspired by the Boston Dynamics Spot agile mobile robot. Partnering with another student, I developed Python-based software that allows for remote control via Bluetooth. The robot uses a Raspberry Pi, 3D-printed components, servo motors, ultrasonic sensors, and an LCD display. We extensively tested and debugged the robot to ensure its functionality across various environments. I also published project documentation and contributed open-source code.
</li>
</ul>
</section>
</main>
<section class="articles-section">
<h2>Featured Articles</h2>
<ul>
<li>
<strong class="article-title">Student Spotlight: Marcos Sanson</strong>
<div class="article-content">
In December 2024, I was interviewed and highlighted by the GVSU College of Computing. This article discusses my journey, including my robotic dog project, study abroad experiences, and contributions to research.
</div>
<a href="https://www.gvsu.edu/computing/module-news-view.htm?storyId=8A466C68-FDA2-0B5B-201E0E2A15F9EFCC&siteModuleId=313814A9-D6D9-8FAC-FFD1FBE83D65E08C" target="_blank">Read More</a>
</li>
<li>
<strong class="article-title">GV Computing Club Focuses on Networking, Growing Careers</strong>
<div class="article-content">
In March 2024, I was interviewed and featured in an article highlighting my involvement in the Grand Valley Computing Club, where I focus on networking and advancing career opportunities.
</div>
<a href="https://lanthorn.com/104123/laker_life/gv-computing-club-focuses-on-networking-growing-careers/" target="_blank">Read More</a>
</li>
</ul>
</section>
<section class="contact-section">
<h2>Connect with Me!</h2>
<div class="contact-links">
<a href="https://www.linkedin.com/in/marcos-sanson/" target="_blank">
<strong>LinkedIn</strong>
</a>
<a href="https://github.com/Marcos-Sanson" target="_blank">
<strong>GitHub</strong>
</a>
</div>
</section>
<footer>
<p>© 2024 Marcos Sanson | <a href="https://github.com/Marcos-Sanson">GitHub</a></p>
</footer>
</body>
</html>