-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
194 lines (186 loc) · 6.37 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Haroun Al Mounayar</title>
<link rel="stylesheet" href="style.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<link
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css"
/>
<script
src="https://code.jquery.com/jquery-2.2.0.min.js"
type="text/javascript"
></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<link
href="https://fonts.googleapis.com/css?family=Calligraffitti"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css?family=Gloria+Hallelujah"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css?family=Indie+Flower"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Fuzzy+Bubbles&display=swap"
rel="stylesheet"
/>
<script type="text/javascript" src="slideshow.js"></script>
</head>
<body id="body">
<section class="hero">
<h1>Become the sword, Cut despair</h1>
</section>
<section class="content">
<img id="me" src="me.png" />
<br />
<ul class="navbar">
<li><a class="active_button" href="">Home</a></li>
<li>
<a href=""> CV <i class="fa fa-download" aria-hidden="true"></i> </a>
</li>
<li><a href="project/project_index.htm">Projects</a></li>
<li><a href="social/social.htm">Social</a></li>
</ul>
<div>
<div class="presentation">
<!-- <img src="myself.jpg" class="img_intro" /> -->
<p class="text_intro">
Hi, I am Haroun, this is my website where I keep all of my thoughts
and links to everything I do on the internet.
</p>
</div>
</div>
<div class="slideshow">
<img class="mySlides fade" src="Interests.jpg" />
<img class="mySlides fade" src="story.jpg" />
<img class="mySlides fade" src="hobbies.jpg" />
<img class="mySlides fade" src="other.jpg" />
<a class="prev" onclick="plusSlides(-1)">❮</a>
<a class="next" onclick="plusSlides(1)">❯</a>
<div style="text-align: center">
<span class="dot" onclick="currentSlide(1)"></span>
<span class="dot" onclick="currentSlide(2)"></span>
<span class="dot" onclick="currentSlide(3)"></span>
<span class="dot" onclick="currentSlide(4)"></span>
</div>
</div>
<div class="Blog">
<p class="blog_title">
Recently Published
<i class="fa fa-hourglass-half" aria-hidden="true"></i>
</p>
<! –– A post beginning ––>
<div class="blog_post">
<div class="left">
<img src="wireshark.png" class="post_image" />
</div>
<div class="right">
<p class="post_date">March 2022</p>
<p class="post_title">Wireshark sometimes hides the truth</p>
<p class="post_description">
Wireshark is the best tool to capture traffic (after tcpdump of
course) on a network. However the traffic show by wireshark is not
always the real one circulating physically. In this article we
will see how Wireshark hides the escaping mechanism on HDLC-like
protocols and we show a way to actually see the real frame.
</p>
<br />
<div class="post_more">
<a
href="project/network/wireshark_hdlc/wirshark_hdlc.html"
class="post_more"
>Read More
<i class="fa fa-long-arrow-right" aria-hidden="true"></i>
</a>
</div>
</div>
</div>
<br />
<! -- A post ending -->
<! –– A post beginning ––>
<div class="blog_post">
<div class="left">
<img src="connex.jpg" class="post_image" />
</div>
<div class="right">
<p class="post_date">January 2021</p>
<p class="post_title">Fastest way to connect points</p>
<p class="post_description">
Given a number of points in a plane and a distance d, we seek the
most optimal way to connect the points located at a distance at
most d. The final goal is to calculate the size of strongly
connected components.
</p>
<br />
<div class="post_more">
<a href="project/algo/cfc_delaunay/rapport.html" class="post_more"
>Read More
<i class="fa fa-long-arrow-right" aria-hidden="true"></i>
</a>
</div>
</div>
</div>
<br />
<! -- A post ending -->
<br />
<div class="all_projects">
<a href="project/project_index.htm" class="all_projects_text"
>See all published projects
<i class="fa fa-long-arrow-right" aria-hidden="true"></i>
</a>
</div>
</div>
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<footer>
<br />
<p>
Made with Neovim and Love on kali from scratch by Haroun Al Mounayar
</p>
<p style="color: #90ddf0">
Copyright © 2022, All Right Reserved almounah
</p>
</footer>
<script>
// Parallax
$(document).ready(function () {
$(window).scroll(function (e) {
parallax();
});
function parallax() {
var scrolled = $(window).scrollTop();
$(".hero").css("top", -(scrolled * 0.0315) + "rem");
$(".hero > h1").css("top", -(scrolled * -0.005) + "rem");
$(".hero > h1").css("opacity", 1 - scrolled * 0.00175);
}
});
</script>
<script>
showSlides(slideIndex);
</script>
</section>
</body>
</html>