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
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>nsrddyn — Portfolio</title>
<style>
* { margin:0; padding:0; box-sizing:border-box; color:#eaeaea; }
body { font-family: Inter, system-ui; background-color:#0f0f10; overflow-x:hidden; text-align:center; min-height:100%; }
h1, h2, h3, h4, h5, h6 { margin:20px; font-weight:600; }
p { line-height:1.6; margin:20px; }
a { color:#fdfdfd; text-decoration:none; }
a:hover { text-decoration:underline; }
li { list-style-type:none; padding:5px 0; margin:10px 0; }
.container { max-width:1000px; margin:0 auto; padding:24px; }
.site-header { background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)); border-bottom:1px solid rgba(255,255,255,0.03); }
.projects-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(240px, 1fr)); gap:18px; }
.card { background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)); padding:18px; }
.card-link { color:#fff; font-weight:600; }
footer { display:flex; justify-content:center; align-items:center; gap:10px; margin-top:40px; padding:20px 0; border-top:1px solid rgba(255,255,255,0.03); }
@media (max-width:700px) { }
header { display:flex; flex-direction:row; justify-content:center; align-items:center; background-color:#333; padding:10px 0; text-align:center; color:#fff; }
</style>
</head>
<body>
<header class="site-header">
<h3>Abdellah El Morabit</h3>
</header>
<main>
<section class="projects container">
<div class="projects-grid">
<article class="card">
<h3>Torque</h3>
<p>CPU and Ram Stress Testing</p>
<p><a href="#" class="card-link">View</a></p>
</article>
<article class="card">
<h3>SYNF</h3>
<p>System Resources Tool</p>
<p><a href="#" class="card-link">View</a></p>
</article>
<article class="card">
<h3>Unix Shell</h3>
<p>Attempt at a Unix shell implementation</p>
<p><a href="#" class="card-link">View</a></p>
</article>
<article class="card">
<h3>Paradigm - Agent</h3>
<p>DBus Agent Implementation</p>
<p><a href="#" class="card-link">View</a></p>
</article>
<article class="card">
<h3>Paradigm - Agent-c</h3>
<p>Resources gathering tool</p>
<p>
As a continuation of the Agent, Agent-c is a rewrite in c/cpp (cpp needed for using google grpc).
We attempted to do a complete map of a system and send that back to a native server managment UI.
</p>
<p><a href="#" class="card-link">View</a></p>
</article>
<article class="card">
<h3>Odootoor</h3>
<p>Hackathon Project</p>
<p><a href="#" class="card-link">View</a></p>
</article>
<article class="card">
<h3>I2C - Controller</h3>
<p>Python IoT Project</p>
<p><a href="#" class="card-link">View</a></p>
</article>
<article class="card">
<h3>Tetris</h3>
<p>Attempt at a Tetris game</p>
<p><a href="#" class="card-link">View</a></p>
</article>
<article class="card">
<h3>Reaction Time Tester</h3>
<p>Measuring Human Reaction Time</p>
<p><a href="#" class="card-link">View</a></p>
</article>
</div>
</section>
<footer>
<ul class="footer-links">
<li><a href="https://git.nsrddyn.com/nasr" target="_blank" rel="noopener">Git</a></li>
<li><a href="https://www.linkedin.com/in/abdellah-el-morabit/" target="_blank" rel="noopener">LinkedIn</a></li>
</ul>
</footer>
</main>
</body>
</html>
|