-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
118 lines (88 loc) · 4.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Main Web</title>
<link rel="stylesheet" href="main.css">
</head>
</html>
<body>
<div class="container">
<section id="content">
<!-- Avatar image -->
<img src="image.jpg" alt="Legasse Remon" class="avatar" />
<div id="additional-content">
<!-- Text -->
<h1>Hi, I'm Legasse Remon!</h1>
<p> I create content on <a href="https://www.beacons.ai/legasset">social media</a> about my interests. I'm 20 and grew up in Tampa, Florida. I am a 3rd year Computer Science student at the <a href="https://www.ufl.edu" target="_blank" title="University of Florida">University of Florida.</a>
I study machine learning and cybersecurity. I focus on ethical hacking.</p>
<p> I work under <a href="https://people.clas.ufl.edu/natalieebner/" target="_blank" title="Dr. Natalie Ebner">Dr. Natalie Ebner</a> in <a href="https://ebnerlab.psych.ufl.edu/" target="_blank" title="Ebner Lab">Ebner Lab</a> at the University of Florida and <a href="https://pni.princeton.edu/people/jonathan-cohen" target="_blank" title="Dr. Jonathan Cohen">Dr. Jonathan Cohen</a> in the <a href="https://ncclab.princeton.edu/" target="_blank" title="Neuroscience of Cognitive Control Lab">Neuroscience of Cognitive Control Lab</a>
at Princeton University. My research interests are in cybersecurity, cognitive control, and AI.</a></p>
<p>
I am currently studying at <a href="https://www.kyoto-u.ac.jp/en" target="_blank" title="Kyoto University" > Kyoto University </a> from March to August 2025.
</p>
<p>
Message me <a href="mailto:[email protected]" target="_blank" title="[email protected]">[email protected] </a> for business/professional or <a href="mailto:[email protected]" target="_blank" title="[email protected]">[email protected]</a> for research inquirie(s).
</p>
<h2>Interests</h2>
<ul>
<li><a href="travel.html">Travel</a></li>
<li><a href="books.html">Books</a></li>
<li><a href="business.html">Business</a></li>
</ul>
<h2>Education</h2>
<ul>
<li> Visiting Student, Kyoto University | 2025
</li>
<li> BS Computer Science, University of Florida | 2022 - Present
</li>
</ul>
<h2>Experience</h2>
<ul>
<li>ML Engineering Intern, IBM | August 2024</li>
<li>Security Engineering Intern, Mastercard | May 2024</li>
<li>AI Research Intern, Princeton University | May 2024</li>
<li>Cyber Threat Intern, Raymond James Financial | May 2023</li>
</ul>
<h2>Teaching</h2>
<ul>
<li>Programming Fundamentals II (COP3503C) (Spring 2024 - Fall 2024) | <strong> Dr. Joshua Fox</strong></li>
</ul>
<h2>Research</h2>
<ul>
<li>Research Assistant, Princeton University | May 2024</li>
<li>Research Assistant, University of Florida | May 2022</li>
</ul>
<h2>Notable Awards</h2>
<ul>
<li>Benjamin A. Gilman Award (2024)</li>
<li>Barry Goldwaters Scholarship Nominee (2024)</li>
<li>Fullbright Scholarship Award (2024)</li>
<li>Cambridge International Merit Award (2022)</li>
</ul>
<h2>Professional Associations</h2>
<ul>
<li>Society of Hispanic Professional Engineers</li>
<li>Hispanic Scholarship Fund</li>
<li>Management Leadership for Tomorrow</li>
</ul>
</div>
<!-- Icons -->
<ul class="icons">
<li>
<a href="" title="https://ufl.edu"><i class="fas fa-university"></i></a>
</li>
<li>
<a href="mailto:[email protected]" title="E-Mail"><i class="fas fa-envelope"></i></a>
</li>
<li>
<a href="https://github.com/cslegasse" title="GitHub"><i class="fab fa-github"></i></a>
</li>
<li>
<a href="" title="https://linkedin.com/in/legasse-remon"><i class="fab fa-linkedin"></i></a>
</li>
</ul>
</section>
</body>
</html>