-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.html
More file actions
231 lines (217 loc) · 10 KB
/
project.html
File metadata and controls
231 lines (217 loc) · 10 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- basic -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- mobile metas -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="viewport" content="initial-scale=1, maximum-scale=1">
<!-- site metas -->
<title>Project</title>
<meta name="keywords" content="">
<meta name="description" content="">
<meta name="author" content="">
<!-- bootstrap css -->
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<!-- style css -->
<link rel="stylesheet" type="text/css" href="css/style.css">
<!-- Responsive-->
<link rel="stylesheet" href="css/responsive.css">
<!-- fevicon -->
<link rel="icon" href="images/fevicon.png" type="image/gif" />
<!-- Scrollbar Custom CSS -->
<link rel="stylesheet" href="css/jquery.mCustomScrollbar.min.css">
<!-- Tweaks for older IEs-->
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
<!-- owl stylesheets -->
<link rel="stylesheet" href="css/owl.carousel.min.css">
<link rel="stylesheet" href="css/owl.theme.default.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/fancybox/2.1.5/jquery.fancybox.min.css" media="screen">
</head>
<body>
<!-- header section start -->
<div class="header_section">
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<div class="logo"><a href="index.html"><img src="images/logo.png"></a></div>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto">
<li class="nav-item">
<a class="nav-link" href="index.html">HOME</a>
</li>
<li class="nav-item">
<a class="nav-link" href="project.html">PROJECTS</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">CONTACT</a>
</li>
</ul>
</div>
<div class="Darkmode-container">
<button class="Darkmode" onclick="darkmode()">DARKMODE</button>
</div>
</nav>
</div>
<!-- header section end -->
<div class="banner_section layout_padding">
<div class="container">
<div id="my_slider" class="carousel slide" data-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<div class="row">
<div class="col-md-6">
<h1 class="video_text">Big-O notation</h1>
<h1 class="controller_text">Sorting and Efficency</h1>
<p class="banner_text">analyzing the efficiency of various sorting algorithms by comparing their runtimes under
different conditions. I evaluated how each algorithm performed based on the type and structure of the data being sorted,
with the goal of determining which algorithm was most efficient for specific information storage needs.
</p>
</div>
<div class="col-md-6">
<div class="image_1"><img src="images/sorting.png"></div>
</div>
</div>
</div>
<div class="carousel-item">
<div class="row">
<div class="col-md-6">
<h1 class="video_text">Data Structures</h1>
<h1 class="controller_text">WAR</h1>
<p class="banner_text">
Implemented the classic card game "WAR" using fundamental data structures. I designed a
personal deck that operated as a Queue to manage the order of cards drawn during gameplay,
and a side pile that functioned as a Stack to track dynamically accumulated cards.
This approach allowed me to effectively model real-time changes in game state using appropriate abstract data types.</p>
</div>
<div class="col-md-6">
<div class="image_1"><img src="images/WAR.jpg"></div>
</div>
</div>
</div>
<div class="carousel-item ">
<div class="row">
<div class="col-md-6">
<h1 class="video_text">Assembly</h1>
<h1 class="controller_text">Tower of Hanoi</h1>
<p class="banner_text">Developed a sorting program using Assembly Language for the LC-3 architecture.
The program accepted user input specifying the number of disks to be sorted and provided real-time textual
feedback throughout the sorting process. By implementing low-level control structures and memory operations,
I deepened my understanding of algorithmic design in assembly and strengthened my skills in direct hardware manipulation.
</p>
</div>
<div class="col-md-6">
<div class="image_1"><img src="images/Tower_of_Hanoi.gif"></div>
</div>
</div>
</div>
<div class="carousel-item">
<div class="row">
<div class="col-md-6">
<h1 class="video_text">Reverse Engineering</h1>
<h1 class="controller_text">Decode Bitbomb</h1>
<p class="banner_text">
Analyzed a binary file and uncovered a hidden password.
Decrypted encoded data and interpreted low-level machine instructions,
gaining practical experience with tools and methodologies commonly used by security researchers,
penetration testers, and software engineers</p>
</div>
<div class="col-md-6">
<div class="image_1"><i class="fa-solid fa-user-gear" style="font-size: 13rem; color:#5ca0e9"></i></div>
</div>
</div>
</div>
<div class="carousel-item">
<div class="row">
<div class="col-md-6">
<h1 class="video_text"></h1>
<h1 class="controller_text">LLM/ML</h1>
<p class="banner_text">
Trained a Large Language Model (LLM) using a dataset of 1000+ text files.
I effectivley analyzed and processed the data,
ensuring it was clean and well-structured for optimal model performance in a
LLM-Human Collaboration standard.
</div>
<div class="col-md-6">
<div class="image_1"><img src="Pics/LLM-Human.webp"></div>
</div>
</div>
</div>
</div>
<a class="carousel-control-prev" href="#my_slider" role="button" data-slide="prev">
<i class="fa fa-angle-left"></i>
</a>
<a class="carousel-control-next" href="#my_slider" role="button" data-slide="next">
<i class="fa fa-angle-right"></i>
</a>
</div>
</div>
</div>
<!-- banner section end -->
<!-- footer section start -->
<div class="section_footer ">
<div class="container">
<div class="footer_section_2">
<div class="row">
<div class="col-sm-6 col-md-6 col-lg-3">
<h2 class="account_text">About Website</h2>
<p class="ipsum_text_2">Webiste template from <a style="color:#5ca0e9" href="https://www.free-css.com/free-css-templates/page291/gamepad">Free CSS
</a></p>
</div>
<div class="col-sm-6 col-md-6 col-lg-3">
<h2 class="account_text">Useful Links</h2>
<div class="useful_link">
<ul>
<li><a href="#" >Back To the Top</a></li>
<li><a href="#" >Education</a></li>
<li><a href="#" >Skill</a></li>
<li><a href="#" >Project</a></li>
<li><a href="#" >Contact/Seeking</a></li>
</ul>
</div>
</div>
<div class="col-sm-6 col-md-6 col-lg-3">
<h2 class="account_text">Last Updated</h2>
<div class="useful_link">
<p class="ipsum_text_2" style="color: #f4f6f94c">June 3rd, 2024</p>
</div>
</div>
</div>
</div>
<div class="social_icon">
<ul>
<li><a href="https://app.joinhandshake.com/stu/users/31785768"><img src="images/handshake.webp" style="width: 1.5rem; filter: grayscale(100%);"></a></li>
<li><a href="https://www.linkedin.com/in/elmoataz-abdellah-468412233/"><i class="fa-brands fa-linkedin" style="font-size: 1.7rem; color:white;"></i></a></li>
<li style="font-size: 1.2rem; color:white;"><a href="mailto:mezoabdelah33@gmail.com"><i class="fa-regular fa-envelope" style="font-size: 1.7rem; color:white;"></i></a></li>
</ul>
</div>
</div>
</div>
<!--footer section end-->
<!-- Javascript files-->
<script src="js/jquery.min.js"></script>
<script src="js/popper.min.js"></script>
<script src="js/bootstrap.bundle.min.js"></script>
<script src="js/jquery-3.0.0.min.js"></script>
<script src="js/plugin.js"></script>
<!-- sidebar -->
<script src="js/jquery.mCustomScrollbar.concat.min.js"></script>
<script src="js/custom.js"></script>
<!-- javascript -->
<script src="js/owl.carousel.js"></script>
<script src="https:cdnjs.cloudflare.com/ajax/libs/fancybox/2.1.5/jquery.fancybox.min.js"></script>
<script>
$(document).ready(function(){
$(".fancybox").fancybox({
openEffect: "none",
closeEffect: "none"
});
});
</script>
<script src="https://kit.fontawesome.com/240bced736.js" crossorigin="anonymous"></script>
<script src="js/darkmode.js"> </script>
</body>
</html>