-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
420 lines (336 loc) · 12.4 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
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
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
<!DOCTYPE html>
<html lang="en-us" class="m-auto dark"><head>
<title>naseem's portfolio</title>
<meta name="theme-color" content="" />
<meta charset="utf-8" />
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<meta name="description" content="naseem's portfolio" />
<meta name="author" content="Naseem Chettah" />
<meta name="generator" content="aafu theme by Darshan in Hugo 0.135.0-DEV" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"> <link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png"> <link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"> <link rel="manifest" href="/site.webmanifest"> <link rel="mask-icon" href="/safari-pinned-tab.svg" color="#252627"> <link rel="shortcut icon" href="/favicon.ico">
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.15.2/css/all.css"
integrity="sha384-vSIIfh2YWi9wW0r9iZe7RJPrKwp6bG+s9QZMoITbCckVJqGCCRhc+ccxNcdpHuYu"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://cdn.rawgit.com/jpswalsh/academicons/master/css/academicons.min.css"
/>
<link
rel="stylesheet"
href="//fonts.googleapis.com/css?family=Didact+Gothic%7CRoboto:400%7CRoboto+Mono"
/>
<link rel="stylesheet" href="/css/aafu.css" />
<link href="/main.min.2ef91a79957cd163214d8fe253f6177d1aa60db4ed5a6289b97b0b8e827fbd6f.css" rel="stylesheet" />
<script>
let html = document.querySelector("html");
let theme = window.localStorage.getItem("theme");
if (theme) {
theme === "dark"
? html.classList.add("dark")
: html.classList.remove("dark");
} else if (html.classList.contains("dark")) {
window.localStorage.setItem("theme", "dark");
} else {
html.classList.remove("dark");
window.localStorage.setItem("theme", "light");
}
window.onload = () => {
let themeToggle = document.querySelector(".theme-toggle");
if (window.localStorage.getItem("theme") === "dark") {
themeToggle.classList.remove("bi-moon-fill");
themeToggle.classList.add("bi-brightness-high");
} else {
themeToggle.classList.add("bi-moon-fill");
themeToggle.classList.remove("bi-brightness-high");
}
let defaultActivePanel = document.querySelector(".accordion.active");
if (defaultActivePanel) {
defaultActivePanel.nextElementSibling.style.maxHeight =
defaultActivePanel.nextElementSibling.scrollHeight + "px";
}
};
window.onresize = () => {
let defaultActivePanel = document.querySelector(".accordion.active");
if (defaultActivePanel) {
defaultActivePanel.nextElementSibling.style.maxHeight =
defaultActivePanel.nextElementSibling.scrollHeight + "px";
}
};
</script>
</head>
<body class="h-screen p-2 m-auto max-w-4xl flex flex-col">
<header
class="nav flex flex-row row py-2 mb-6 w-full border-b border-gray-300 dark:border-gray-700 justify-between"
>
<div>
<a class="no-underline p-2 rounded hover:bg-gray-200 dark:hover:bg-gray-800" href="https://ch-naseem.com/">Home</a>
<a class="no-underline p-2 rounded hover:bg-gray-200 dark:hover:bg-gray-800" href="/blog">Blog</a>
</div>
<i
class="fas fa-sun theme-toggle text-blue-500 hover:text-blue-700 dark:text-yellow-300 dark:hover:text-yellow-500 cursor-pointer text-lg mr-9 sm:mr-0"
onclick="lightDark(this)"
></i>
</header>
<script>
const lightDark = (el) => {
let html = document.querySelector("html");
if (html.classList.contains("dark")) {
html.classList.remove("dark");
el.classList.add("fa-moon");
el.classList.remove("fa-sun");
window.localStorage.setItem("theme", "light");
} else {
html.classList.add("dark");
el.classList.add("fa-sun");
el.classList.remove("fa-moon");
window.localStorage.setItem("theme", "dark");
}
};
</script>
<main class="grow">
<div class="grid grid-cols-1 md:grid-cols-5 gap-2 sm py-2">
<div class="col-span-2">
<div class="bg-gray-300 dark:bg-darker rounded drop-shadow-md p-2">
<div class="flex flex-col justify-center">
<div class=""><div class="w-100 h-100 flex justify-center p-4">
<img
class="rounded rounded-full cursor-pointer"
src="/images/profile.jpg"
data-alternate="/images/profile2.jpg"
alt="Naseem Chettah"
style="max-width: 250px"
onclick="toggleImage(this)"
/>
</div>
<script>
function toggleImage(imgElement) {
const currentSrc = imgElement.src;
const alternateSrc = imgElement.dataset.alternate;
imgElement.src = alternateSrc;
imgElement.dataset.alternate = currentSrc;
}
</script>
</div>
<div class="p-2 text-center">
<h1 class="mb-0">Naseem Chettah</h1>
<h2 class="mb-0">IT Student</h2>
<h3 class="mb-4">M'sila, Algeria</h3>
<div class="mb-4 flex flex-wrap justify-center">
<div class="mx-2">
<a class="text-2xl" href="mailto:[email protected]">
<i class="mt-1 fa fa-envelope"></i>
</a>
</div>
<div class="mx-2">
<a class="text-2xl" href="https://linkedin.ch-naseem.com">
<i class="mt-1 fab fa-linkedin"></i>
</a>
</div>
<div class="mx-2">
<a class="text-2xl" href="https://telegram.ch-naseem.com">
<i class="mt-1 fab fa-telegram"></i>
</a>
</div>
<div class="mx-2">
<a class="text-2xl" href="https://fb.ch-naseem.com">
<i class="mt-1 fab fa-facebook"></i>
</a>
</div>
<div class="mx-2">
<a class="text-2xl" href="https://github.ch-naseem.com">
<i class="mt-1 fab fa-github"></i>
</a>
</div>
<div class="mx-2">
<a class="text-2xl" href="images/monero.png">
<i class="mt-1 fab fa-monero"></i>
</a>
</div>
</div>
<footer class="text-sm text-center border-t border-gray-300 dark:border-gray-700 pt-2 ">
<p class="markdownify">powered by <a href="https://gohugo.io/">hugo</a></p>
</footer>
</div>
</div>
</div>
</div>
<div class="col-span-3 relative">
<div class="px-2">
<h2 class="my-0 accordion active">
<p
class="hover:bg-gray-300 rounded dark:hover:bg-darker m-0 p-2"
onclick="expandAccordion(this)"
style="cursor: pointer"
>
<i class="fas fa-user"></i>
About Me</p>
</h2>
<div
class="panel overflow-hidden px-2 ml-2"
>
<div class=""><p class="markdownify">
My name is Naseem, and I am from Algeria! Welcome to my personal web page.
</p>
</div>
</div>
</div>
<div class="px-2">
<h2 class="my-0 accordion">
<p
class="hover:bg-gray-300 rounded dark:hover:bg-darker m-0 p-2"
onclick="expandAccordion(this)"
style="cursor: pointer"
>
<i class="fas fa-briefcase"></i>
Experiences</p>
</h2>
<div
class="panel overflow-hidden px-2 ml-2"
>
<div class="">
<h4 style="text-decoration: underline;">Computer Repair</h4>
<p >
2019 - 2022 · KIM Tech
</p>
<p></p>
</div>
</div>
</div>
<div class="px-2">
<h2 class="my-0 accordion">
<p
class="hover:bg-gray-300 rounded dark:hover:bg-darker m-0 p-2"
onclick="expandAccordion(this)"
style="cursor: pointer"
>
<i class="fas fa-graduation-cap"></i>
Education</p>
</h2>
<div
class="panel overflow-hidden px-2 ml-2"
>
<div class="">
<h4 style="text-decoration: underline;">B.T.S. in Computer Science</h4>
<p class="mb-0" >2023 - 2025 · INSFP M'sila</p>
<p>
Thesis:
<a href="#"><i>on it...</i></a>
</p>
</div>
</div>
</div>
<div class="px-2">
<h2 class="my-0 accordion">
<p
class="hover:bg-gray-300 rounded dark:hover:bg-darker m-0 p-2"
onclick="expandAccordion(this)"
style="cursor: pointer"
>
<i class="fas fa-project-diagram"></i>
Projects</p>
</h2>
<div
class="panel overflow-hidden px-2 ml-2"
>
<div class="">
<h4>
<a href="https://github.com/naseem-chettah/oxidized-airport">The Oxidized Airport</a>
</h4>
<p class="markdownify indent-8">a school project where I’ll be using Tauri and <del>SurrealDB</del> PostgreSQL to create a nice application to book flights and airport stuff.</p>
<h4>
<a href="https://github.com/naseem-chettah/Al-Kindi">Al Kindi</a>
</h4>
<p class="markdownify indent-8">Al-Kindi Convertor is a simple app I wrote to help my classmates convert values in the numeric bases BIN, OCT, DEC and HEX.</p>
</div>
</div>
</div>
<div class="px-2">
<h2 class="my-0 accordion">
<p
class="hover:bg-gray-300 rounded dark:hover:bg-darker m-0 p-2"
onclick="expandAccordion(this)"
style="cursor: pointer"
>
<i class="fas fa-cogs"></i>
Skills</p>
</h2>
<div
class="panel overflow-hidden px-2 ml-2"
id="skill-panel"
>
<div class=""><script>
let skillPanel = document.querySelector("#skill-panel")
.previousElementSibling;
skillPanel.addEventListener("click", function() {
let skillBars = document.querySelectorAll("#skill-percent");
skillBars.forEach(elem => {
elem.style.width = elem.classList[0];
});
});
</script>
<code>Oracle DBMS</code>
<div class="w-100 mt-1 mb-3 border border-black dark:border-gray-300 rounded" style="height: 1.25rem;">
<div id="skill-percent" class="80% bg-blue-500 dark:bg-yellow-700 h-full rounded" style="width: 0; transition: all 0.5s;"></div>
</div>
<code>Desktop Applications (Tauri, C#, Delphi)</code>
<div class="w-100 mt-1 mb-3 border border-black dark:border-gray-300 rounded" style="height: 1.25rem;">
<div id="skill-percent" class="85% bg-blue-500 dark:bg-yellow-700 h-full rounded" style="width: 0; transition: all 0.5s;"></div>
</div>
<code>Backend Development (LAMP, Golang)</code>
<div class="w-100 mt-1 mb-3 border border-black dark:border-gray-300 rounded" style="height: 1.25rem;">
<div id="skill-percent" class="60% bg-blue-500 dark:bg-yellow-700 h-full rounded" style="width: 0; transition: all 0.5s;"></div>
</div>
<code>Prompt Engineering</code>
<div class="w-100 mt-1 mb-3 border border-black dark:border-gray-300 rounded" style="height: 1.25rem;">
<div id="skill-percent" class="90% bg-blue-500 dark:bg-yellow-700 h-full rounded" style="width: 0; transition: all 0.5s;"></div>
</div>
<code>GNU/Linux Administration</code>
<div class="w-100 mt-1 mb-3 border border-black dark:border-gray-300 rounded" style="height: 1.25rem;">
<div id="skill-percent" class="70% bg-blue-500 dark:bg-yellow-700 h-full rounded" style="width: 0; transition: all 0.5s;"></div>
</div>
<code>Data Entry and Management</code>
<div class="w-100 mt-1 mb-3 border border-black dark:border-gray-300 rounded" style="height: 1.25rem;">
<div id="skill-percent" class="90% bg-blue-500 dark:bg-yellow-700 h-full rounded" style="width: 0; transition: all 0.5s;"></div>
</div>
<code>Document Formatting and Markup</code>
<div class="w-100 mt-1 mb-3 border border-black dark:border-gray-300 rounded" style="height: 1.25rem;">
<div id="skill-percent" class="70% bg-blue-500 dark:bg-yellow-700 h-full rounded" style="width: 0; transition: all 0.5s;"></div>
</div>
<code>Scripting (Rust, BASH)</code>
<div class="w-100 mt-1 mb-3 border border-black dark:border-gray-300 rounded" style="height: 1.25rem;">
<div id="skill-percent" class="90% bg-blue-500 dark:bg-yellow-700 h-full rounded" style="width: 0; transition: all 0.5s;"></div>
</div>
</div>
</div>
</div>
<div class="px-2">
<h2 class="my-0 accordion">
<p
class="hover:bg-gray-300 rounded dark:hover:bg-darker m-0 p-2"
onclick="expandAccordion(this)"
style="cursor: pointer"
>
<i class="fas fa-gamepad"></i>
Hobbies</p>
</h2>
<div
class="panel overflow-hidden px-2 ml-2"
>
<div class=""><ul class="pl-0">
<li class="list-unstyled mb-2">Coding</li>
<li class="list-unstyled mb-2">GNU/Linux</li>
<li class="list-unstyled mb-2">Tribal Art & Tattoo Design</li>
<li class="list-unstyled mb-2">Writing/Reading</li>
</ul>
</div>
</div>
</div>
<script src="/js/accordion.js"></script>
</div>
</div>
</main>
</body>
</html>