Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
MBCharaf committed Jul 23, 2024
1 parent 753728f commit 0d8d384
Show file tree
Hide file tree
Showing 2 changed files with 152 additions and 29 deletions.
63 changes: 61 additions & 2 deletions css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,9 @@ body {
}

.profile-pic {
max-width: 100%;
border-radius: 50%;
max-width: 70%;
border-top-left-radius: 15px;
border-top-right-radius: 15px;
}

.tagline {
Expand Down Expand Up @@ -127,3 +128,61 @@ body {
padding-right: 20px;
}
}

.skills-section {
padding: 10px 0;
color: #fff;
}

.skills-section h2 {
text-align: center;
margin-bottom: 40px;
font-size: 2.5em;
color: #fff;
}

.skills-list {
list-style: none;
padding: 0;
}

.skills-list li {
font-size: 1.2em;
margin-bottom: 20px;
display: flex;
flex-direction: column;
}

.skill-name {
font-weight: bold;
margin-bottom: 10px;
}

.progress-bar {
width: 100%;
background-color: #1c1c1c;
border-radius: 1px;
overflow: hidden;
}

.progress {
height: 15px;
background-color: #A5FFC9;
border-radius: 5px;
width: 0;
transition: width 1s ease-in-out;
}

.skills-list li:hover .progress {
width: 100%;
}

@media (max-width: 768px) {
.skills-list li {
font-size: 1em;

}
.navbar {
display: none;
}
}
118 changes: 91 additions & 27 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<a class="navbar-brand" href="#">MBCharaf</a>
<a class="navbar-brand" href="#">Jonas Charaf</a>
</div>
<ul class="nav navbar-nav navbar-right">
<li><a href="#home">HOME</a></li>
Expand Down Expand Up @@ -64,7 +64,7 @@ <h2>Work Experience</h2>
<div class="timeline-item">
<div class="timeline-date">02/2023 - 08/2024</div>
<div class="timeline-content">
<h3>Senior Open RAN Technical Lead @Capgemini Engineering</h3>
<h3>Senior Open RAN Technical Lead @ Capgemini Engineering</h3>
<p>-Project lead for i14y Lab project from Capgemini Engineering side.

<p> - Plan and design of the E2E test setups, configurations, tools and requirements concerning the i14y Lab</p>
Expand All @@ -81,29 +81,44 @@ <h3>Senior Open RAN Technical Lead @Capgemini Engineering</h3>
<div class="timeline-item">
<div class="timeline-date">01/2022 - 02/2023</div>
<div class="timeline-content">
<h3>5G Consultant @Capgemini Engineering</h3>
<p>Design and creation of E2E reference architecture of future 5G and beyond Testlabs. Integration and validation of test cases into the E2E 5G and beyond architecture. Working closely with project partners (Vendors, SMEs...).</p>
<h3>5G Consultant @ Capgemini Engineering</h3>
<p> - Design and creation of E2E reference architecture of future 5G and beyond Testlabs. </p>
<p> - Integration and validation of test cases into the E2E 5G and beyond architecture.</p>
<p> - Working closely with project partners (Vendors, SMEs...).</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-date">02/2019 - 12/2021</div>
<div class="timeline-content">
<h3>5G Researcher @HTWK Leipzig</h3>
<p>Working on several projects in cooperation with Deutsche Telekom. Working in an agile environment as a contributor to software projects. Parsing and evaluating 5G NR/LTE measurement results. Performing LTE and 5G drive tests and measurements. Deploying web servers in a cloud-based environment such as AWS. Deploying open-source EPC on EC2 instance in AWS cloud. Supervising students on their master thesis and project work.</p>
<h3>5G Researcher @ HTWK Leipzig</h3>
<p> - Working on several projects in cooperation with Deutsche Telekom. </p>
<p> - Working in an agile environment as a contributor to software projects.</p>
<p> - Parsing and evaluating 5G NR/LTE measurement results. </p>
<p> - Performing LTE and 5G drive tests and measurements. Deploying web servers in a cloud-based environment such as AWS. </p>
<p> - Deploying open-source EPC on EC2 instance in AWS cloud. </p>
<p> - Supervising students on their master thesis and project work.</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-date">09/2018 - 01/2019</div>
<div class="timeline-content">
<h3>Research Assistant @HfTL Leipzig</h3>
<p>Data Analytics of RAN KPIs. Interactive visualization of simulation and measurement data. Working alongside Telekom Innovation labs and other companies in Germany and Europe on 5G projects. Investigating and implementing NR-related features for the Next-Generation RAN. Building data models using LTE KPIs.</p>
<h3>Research Assistant @ HfTL Leipzig</h3>
<p> - Data Analytics of RAN KPIs. </p>
<p> - Interactive visualization of simulation and measurement data. </p>
<p> - Working alongside Telekom Innovation labs and other companies in Germany and Europe on 5G projects.</p>
<p> - Investigating and implementing NR-related features for the Next-Generation RAN. </p>
<p> - Building data models using LTE KPIs.</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-date">05/2017 - 08/2018</div>
<div class="timeline-content">
<h3>Research Assistant (Flexikant) @HfTL Leipzig</h3>
<p>Thesis: Extension and Evaluation of SD-RAN concepts based on OpenAirInterface. Working on Software Defined Radio equipment. Supporting students with their assigned projects and thesis. Analyzing measurement data. Performing LTE drive tests and measurement campaigns using the Accuver software tool.</p>
<h3>Research Assistant (Flexikant) @ HfTL Leipzig</h3>
<p> - Thesis: Extension and Evaluation of SD-RAN concepts based on OpenAirInterface.</p>
<p> - Working on Software Defined Radio equipment.</p>
<p> - Supporting students with their assigned projects and thesis.</p>
<p> - Analyzing measurement data. </p>
<p> - Performing LTE drive tests and measurement campaigns using the Accuver software tool.</p>
</div>
</div>
</div>
Expand All @@ -120,27 +135,76 @@ <h2>Publications</h2>
</ul>
</div>
</section>

<section id="skills" class="skills-section">
<div class="container">
<h2>Skills</h2>
<div class="row">
<div class="col-md-6">
<ul>
<li>LTE/5G NR: ⭐⭐⭐⭐⭐</li>
<li>Software Defined Radio: ⭐⭐⭐⭐⭐</li>
<li>Data Analytics: ⭐⭐⭐⭐⭐</li>
<li>REST API: ⭐⭐⭐⭐⭐</li>
<li>Web Development: ⭐⭐⭐⭐⭐</li>
<li>Machine Learning and Neural Networks: ⭐⭐⭐</li>
<ul class="skills-list">
<li>
<span class="skill-name">LTE/5G NR</span>
<div class="progress-bar">
<div class="progress" style="width: 100%;"></div>
</div>
</li>
<li>
<span class="skill-name">Software Defined Radio</span>
<div class="progress-bar">
<div class="progress" style="width: 100%;"></div>
</div>
</li>
<li>
<span class="skill-name">Data Analytics</span>
<div class="progress-bar">
<div class="progress" style="width: 100%;"></div>
</div>
</li>
<li>
<span class="skill-name">REST API</span>
<div class="progress-bar">
<div class="progress" style="width: 100%;"></div>
</div>
</li>
<li>
<span class="skill-name">Web Development</span>
<div class="progress-bar">
<div class="progress" style="width: 100%;"></div>
</div>
</li>
<li>
<span class="skill-name">Machine Learning and Neural Networks</span>
<div class="progress-bar">
<div class="progress" style="width: 60%;"></div>
</div>
</li>
</ul>
</div>
<div class="col-md-6">
<ul>
<li>Python: ⭐⭐⭐⭐⭐</li>
<li>React.JS: ⭐⭐⭐⭐</li>
<li>Go: ⭐⭐⭐⭐</li>
<li>C++/C: ⭐⭐⭐⭐</li>
<ul class="skills-list">
<li>
<span class="skill-name">Python</span>
<div class="progress-bar">
<div class="progress" style="width: 100%;"></div>
</div>
</li>
<li>
<span class="skill-name">React.JS</span>
<div class="progress-bar">
<div class="progress" style="width: 80%;"></div>
</div>
</li>
<li>
<span class="skill-name">Go</span>
<div class="progress-bar">
<div class="progress" style="width: 80%;"></div>
</div>
</li>
<li>
<span class="skill-name">C++/C</span>
<div class="progress-bar">
<div class="progress" style="width: 80%;"></div>
</div>
</li>
</ul>
</div>
</div>
Expand All @@ -161,10 +225,10 @@ <h2>Education</h2>
<div class="container">
<h2>Accomplishments</h2>
<ul>
<li><strong>04/2024 - OCP Regional Summit Lisbon</strong><a href="https://www.opencompute.org/blog/laying-the-groundwork-for-the-future-openran-open-hardware-radio-unit-platform-at-the-ocp-regional-summit-in-lisbon">Laying the groundwork for the future OpenRAN Open Hardware Radio Unit Platform</a></li>
<li><strong>02/2024 - MWC24 Detsche Telekom Main Stage</strong><a href="https://mwc.telekom.com/speaker/jonas-charaf-2024">Open RAN: Global MNO coalition to progress certification maturity for multivendor integration</a></li>
<li><strong>10/2023 - Fyuz23 Open RAN Summit</strong><a href="https://www.youtube.com/watch?v=KmJ0NH8uqKw">Breakouts - Open RAN Summit - Testing and Certification for Open RAN </a></li>
<li><strong>10/2019 - IEEE 2nd 5G World Forum Dresden:</strong> Provided a demonstration system for Axians. <a href="https://www.youtube.com/watch?v=79qnZN4NNzw&t=35s">Demo Video</a></li>
<li><strong>04/2024 - OCP Regional Summit Lisbon</strong><a href="https://www.opencompute.org/blog/laying-the-groundwork-for-the-future-openran-open-hardware-radio-unit-platform-at-the-ocp-regional-summit-in-lisbon"> Laying the groundwork for the future OpenRAN Open Hardware Radio Unit Platform</a></li>
<li><strong>02/2024 - MWC24 Detsche Telekom Main Stage</strong><a href="https://mwc.telekom.com/speaker/jonas-charaf-2024"> Open RAN: Global MNO coalition to progress certification maturity for multivendor integration</a></li>
<li><strong>10/2023 - Fyuz23 Open RAN Summit</strong><a href="https://www.youtube.com/watch?v=KmJ0NH8uqKw"> Breakout session: Open RAN Summit - Testing and Certification for Open RAN </a></li>
<li><strong>10/2019 - IEEE 2nd 5G World Forum Dresden:</strong> Provided a demonstration system for Axians. <a href="https://www.youtube.com/watch?v=79qnZN4NNzw&t=35s"> Demo Video</a></li>
<li><strong>02/2019 - MWC-19:</strong> HfTL Radio Lab Demonstration for 5G MoNArch. <a href="https://www.youtube.com/watch?v=lJs1aWvZu5U">5GMoNArch Video</a></li>
<li><strong>10/2018 - DAAD Preis 2018 for international students:</strong> For social activities and research work in the 5G area. <a href="https://www.hft-leipzig.de/de/hochschule/alumni/service/news/news-detailansicht/article/student-aus-syrien-erhaelt-daad-preis-2018.html">DAAD Prize 2018</a></li>
</ul>
Expand Down

0 comments on commit 0d8d384

Please sign in to comment.