-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
99 lines (98 loc) · 3.55 KB
/
index.html
File metadata and controls
99 lines (98 loc) · 3.55 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/x-icon" href="/assets/img/favicon.png" />
<link rel="stylesheet" href="styles/main.css" />
<title>Bassem Ibrahim</title>
</head>
<body>
<main>
<div id="profile-pic">
<img
src="./assets/img/bassem.jpeg"
alt="Bassem on the beach"
tile="Bassem on the beach"
width="100%"
height="auto"
/>
</div>
<div id="social-bar">
<a
href="https://www.linkedin.com/in/bassem-mohamed/"
title="LinkedIn"
target="_blank"
><i class="fa-brands fa-linkedin"></i
></a>
<a href="https://github.com/bassem-i" title="GitHub" target="_blank"
><i class="fa-brands fa-square-github"></i
></a>
<a href="https://dev.to/bassemibrahim" title="Dev.to" target="_blank"
><i class="fa-brands fa-dev"></i
></a>
<a
href="https://adplist.org/mentors/bassem"
title="ADPList"
target="_blank"
><i class="fa-solid fa-square-arrow-up-right"></i
></a>
</div>
<div id="bio">
<p>
Hi, I am <b>Bassem</b>, a software engineer with <b>6+</b> years of
experience. I am originally from the land of the pyramids but I moved
to Berlin 3 years ago during the pandemic, You can read about that
story
<a
href="https://getbyrd.com/en/blog/relocating-to-germany-during-the-pandemic"
target="_blank"
>here</a
>
or
<a
href="https://www.joinimagine.com/advice-for-juniors-how-bassem-made-it"
target="_blank"
>here</a
>.
</p>
<p>
I spent the last 3 years working for a
<a href="https://getbyrd.com" target="_blank"
>3rd-party logistics company.</a
>
I jump started the design system, overhauled the UI components
library, launched new dashboards, owned complex projects, talked to
customers, showed off features, wrote documentation, hired developers
& mentored others. But <b>the big lesson</b> I learned is that there
often isn't a single flawless solution, and a skilled developer is
someone who can capably choose the most suitable approach based on
their present circumstances.
</p>
<p>
Couple of years ago, I was very much into writing. I wrote technical
and personal posts over at
<a href="https://dev.to/bassemmohamed" target="_blank">dev-to</a>. I
published <b>30+</b> articles that have <b>33,000+</b> total views.
</p>
<p>
Nowadays, I am more interested in mentoring. I do 1 on 1 mentoring
sessions over at
<a href="https://adplist.org/mentors/bassem" target="_blank"
>ADPlist</a
>. I try to do my part and give back to the community by helping devs
find their first jobs and prepare for interviews.
</p>
<p>
Outside of the tech world, I am a huge fan of hiking, cycling &
swimming. I learned german, I finished a triathlon twice. I also used
to organize nature walking trips around Berlin.
</p>
</div>
</main>
</body>
<script
src="https://kit.fontawesome.com/9accf144ba.js"
crossorigin="anonymous"
></script>
</html>