-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
307 lines (264 loc) · 13 KB
/
index.html
File metadata and controls
307 lines (264 loc) · 13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rayane HACHEMI - Personal Page</title>
<!-- Load Tailwind CSS -->
<script src="https://cdn.tailwindcss.com"></script>
<!-- Load Inter font -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&family=Space+Mono:wght@400;700&display=swap" rel="stylesheet">
<!-- Custom CSS for Brutalist Design -->
<style>
/* Set base font */
body {
font-family: 'Inter', sans-serif;
background-color: #f3f4f6; /* Use a light gray for a slightly softer brutalist bg */
}
/* Use a mono font for tech-related text */
.font-mono {
font-family: 'Space Mono', monospace;
}
/* Ensure smooth scrolling for anchors */
html {
scroll-behavior: smooth;
}
/* Define the core brutalist card element */
.brutalist-card {
border: 3px solid #000;
background: #fff;
/* The signature hard shadow */
box-shadow: 6px 6px 0px #000;
transition: all 0.2s ease-in-out;
}
/* Interactive hover effect for cards */
.brutalist-card:hover {
box-shadow: 8px 8px 0px #000;
transform: translate(-2px, -2px);
}
/* Brutalist button style */
.brutalist-button {
border: 3px solid #000;
background-color: #fde047; /* Stark, vibrant yellow accent */
color: #000;
font-weight: 700; /* Bold */
padding: 10px 20px;
box-shadow: 4px 4px 0px #000;
transition: all 0.2s ease-in-out;
cursor: pointer;
}
.brutalist-button:hover {
box-shadow: 6px 6px 0px #000;
transform: translate(-2px, -2px);
background-color: #facc15; /* Slightly darker yellow on hover */
}
/* Brutalist tag style */
.tag {
display: inline-block;
background-color: #fde047;
padding: 2px 8px;
font-size: 0.75rem; /* 12px */
font-weight: 700;
border: 2px solid #000;
white-space: nowrap;
}
/* Custom border thickness */
.border-b-3 { border-bottom-width: 3px; }
.border-t-3 { border-top-width: 3px; }
/* Custom message box for copy feedback */
#copy-message {
opacity: 0;
transition: opacity 0.3s ease-in-out;
}
#copy-message.visible {
opacity: 1;
}
</style>
</head>
<body class="bg-gray-100 text-black">
<!-- Main Content Container -->
<div class="max-w-6xl mx-auto p-4 sm:p-8">
<!-- HEADER / NAV -->
<header class="flex justify-between items-center border-b-3 border-black pb-4 mb-16 sm:mb-24 font-mono">
<div class="text-2xl font-bold">
PERSONAL PAGE
</div>
<nav class="hidden sm:flex space-x-6 text-lg">
<a href="#about" class="hover:underline hover:decoration-yellow-300 hover:decoration-4">About</a>
<a href="#projects" class="hover:underline hover:decoration-yellow-300 hover:decoration-4">Projects</a>
<a href="#contact" class="hover:underline hover:decoration-yellow-300 hover:decoration-4">Contact</a>
</nav>
</header>
<!-- HERO SECTION -->
<section id="hero" class="mb-24 sm:mb-32">
<div class="inline-block">
<h1 class="text-6xl md:text-8xl font-black uppercase tracking-tighter" style="line-height: 0.9;">
Rayane<br>Hachemi
</h1>
</div>
<p class="text-2xl md:text-4xl font-bold text-gray-700 mt-2">
Machine Learning Engineer
</p>
<div class="flex flex-wrap gap-3 mt-6">
<span class="tag">AGENTIC AI</span>
<span class="tag">REINFORCEMENT LEARNING</span>
<span class="tag">LLM & RAG</span>
</div>
</section>
<!-- ABOUT SECTION -->
<section id="about" class="mb-24 sm:mb-32">
<h2 class="text-4xl md:text-5xl font-bold mb-8 font-mono">> ABOUT_ME.md</h2>
<div class="grid md:grid-cols-3 gap-8 items-start">
<div class="md:col-span-1">
<p class="text-3xl leading-snug font-bold">
"My favorite place to be is at the frontier of AI."
</p>
</div>
<div class="md:col-span-2 space-y-4 text-xl text-gray-800">
<p>I hold a Master's degree in Computer Science, specializing in Artificial Intelligence and Distributed Systems.</p>
<p>Currently, I'm an <strong>Agentic AI Tech Watcher</strong> at Euranova. My role involves building and deploying advanced AI agents, as well as conducting internal training to upskill my colleagues.</p>
<p>I also have experience as a Research Scientist and internship mentor in both Reinforcement Learning (RL) and Large Language Models (LLMs).</p>
</div>
</div>
</section>
<!-- PROJECTS SECTION -->
<section id="projects" class="mb-24 sm:mb-32">
<h2 class="text-4xl md:text-5xl font-bold mb-8 font-mono">> PROJECTS/</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<!-- Project Card: MineGPT -->
<div class="brutalist-card p-6">
<h3 class="text-2xl font-bold mb-2">MineGPT</h3>
<div class="flex flex-wrap gap-2 mb-3">
<span class="tag">AGENT</span>
<span class="tag">LLM</span>
<span class="tag">PERSONAL</span>
</div>
<p>A very early LLM agent that plays Minecraft by generating API code in real-time. It was so cool back then (2023) that OpenAI invited me to their Research Access Program.</p>
</div>
<!-- Project Card: LLMs for fuel prediction -->
<div class="brutalist-card p-6">
<h3 class="text-2xl font-bold mb-2">LLMs for fuel prediction</h3>
<div class="flex flex-wrap gap-2 mb-3">
<span class="tag">LLM</span>
<span class="tag">DSPY</span>
<span class="tag">COMPETITION</span>
</div>
<p>Competed in the PRC 2025 Data Challenge using an optimized DSPy LLM predictor instead of boring classic models. A world first to the best of my knowledge.</p>
</div>
<!-- Project Card: Quasimodo -->
<div class="brutalist-card p-6">
<h3 class="text-2xl font-bold mb-2">Quasimodo</h3>
<div class="flex flex-wrap gap-2 mb-3">
<span class="tag">NLP</span>
<span class="tag">AGENT</span>
<span class="tag">PERSONAL</span>
</div>
<p>An autonomous forum moderator able to delete harmful messages. Used both classic NLP and Generative AI. Decommissionned because it was replacing myself...</p>
</div>
<!-- Project Card: Antisèche -->
<div class="brutalist-card p-6">
<h3 class="text-2xl font-bold mb-2">Antisèche (Meeting Agent)</h3>
<div class="flex flex-wrap gap-2 mb-3">
<span class="tag">AGENT</span>
<span class="tag">GWS ADD-ON</span>
</div>
<p>A fully integrated Google Calendar Add-On that helps users prepare for meetings. The fact that it all runs on Google Cloud is more impressive to me than the multi-agent web-search workflow.</p>
</div>
<!-- Project Card: Agentic RAG Audit -->
<div class="brutalist-card p-6">
<h3 class="text-2xl font-bold mb-2">Agentic RAG Audit</h3>
<div class="flex flex-wrap gap-2 mb-3">
<span class="tag">CONSULTING</span>
<span class="tag">RAG</span>
<span class="tag">AGENT</span>
</div>
<p>Authored a 25-page expert report providing technical recommendations and strategic advice to a major telecom provider's development team for their RAG chatbot. I magically got an interview a few weeks later.</p>
</div>
<!-- Project Card: Public Sector LLM Support -->
<div class="brutalist-card p-6">
<h3 class="text-2xl font-bold mb-2">Public Sector AI Support</h3>
<div class="flex flex-wrap gap-2 mb-3">
<span class="tag">RAG</span>
<span class="tag">SOVEREIGN AI</span>
</div>
<p>Provided expert support and built a one-day full ColBERT RAG pipeline for a public sector partner. No pre-made Azure AI Search allowed in my house, we get our hands dirty here.</p>
</div>
</div>
</section>
<!-- CONTACT SECTION -->
<section id="contact" class="mb-16">
<h2 class="text-4xl md:text-5xl font-bold mb-8 font-mono">> CONNECT</h2>
<div class="flex flex-col md:flex-row gap-4">
<button id="copy-email-btn" class="brutalist-button text-lg">
EMAIL
</button>
<a href="https://www.linkedin.com/in/rhmi" target="_blank" rel="noopener noreferrer" class="brutalist-button text-lg text-center">
LINKEDIN
</a>
</div>
<!-- Feedback message for copy action -->
<div id="copy-message" class="font-mono mt-4 text-green-700 font-bold text-lg">
[COPIED TO CLIPBOARD]
</div>
</section>
<!-- FOOTER -->
<footer class="border-t-3 border-black pt-6 mt-24 text-center font-mono text-gray-600">
<p>// STATUS: EAGER TO LEARN. AT THE FRONTIER OF AI.</p>
<p class="mt-2">2025 Rayane Hachemi</p>
</footer>
</div> <!-- End of main container -->
<!-- JAVASCRIPT for Interactivity -->
<script>
document.addEventListener('DOMContentLoaded', () => {
// --- 1. Hero Name Scramble Effect (REMOVED) ---
// --- 2. Copy to Clipboard Functionality ---
const copyMessage = document.getElementById('copy-message');
let messageTimeout = null;
function copyToClipboard(text, message) {
// Use the clipboard fallback from the instructions
const textArea = document.createElement('textarea');
textArea.value = text;
textArea.style.position = 'fixed'; // Avoid scrolling to bottom
textArea.style.top = '0';
textArea.style.left = '0';
document.body.appendChild(textArea);
textArea.focus();
textArea.select();
try {
document.execCommand('copy');
// Show success message
if (copyMessage) {
copyMessage.textContent = message || '[COPIED TO CLIPBOARD]';
copyMessage.classList.add('visible');
// Clear previous timeout if one exists
if (messageTimeout) {
clearTimeout(messageTimeout);
}
// Hide message after 2 seconds
messageTimeout = setTimeout(() => {
copyMessage.classList.remove('visible');
}, 2000);
}
} catch (err) {
console.error('Failed to copy: ', err);
if (copyMessage) {
copyMessage.textContent = '[COPY FAILED]';
copyMessage.classList.add('visible');
// ... (hide timeout)
}
}
document.body.removeChild(textArea);
}
// --- 3. Attach Event Listeners to Buttons ---
const emailBtn = document.getElementById('copy-email-btn');
if (emailBtn) {
emailBtn.addEventListener('click', () => {
copyToClipboard('rhmi@outlook.fr', '[EMAIL COPIED]');
});
}
});
</script>
</body>
</html>