Skip to content

Commit ffb2db5

Browse files
authored
feat: adds Ezra's HTML README (#47)
1 parent be1523f commit ffb2db5

File tree

3 files changed

+102
-0
lines changed

3 files changed

+102
-0
lines changed

lesson_01/ezra002/ezra.html

Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Ezra Nyabuti - Profile</title>
7+
<link href="styles.css" rel="stylesheet">
8+
</head>
9+
<body>
10+
<h1>👋 <strong>Hello, I'm Ezra Nyabuti</strong></h1>
11+
<p>
12+
I’m an aspiring Software Engineer / Data Engineer passionate about data, automation, and building scalable solutions.
13+
With a background in IT Field Service Engineering, I have hands-on experience working in the medical technology sector,
14+
where I specialized in software upgrades, preventative maintenance, and troubleshooting complex systems.
15+
</p>
16+
<p>
17+
I am currently focused on refining my data engineering skills by building automated data pipelines and exploring cloud-based solutions.
18+
Additionally, I am developing a deeper understanding of big data technologies, database optimization, and cloud infrastructure to enhance my technical proficiency.
19+
</p>
20+
21+
<hr>
22+
<h2>🚀 Career Goals</h2>
23+
<p>
24+
I am seeking opportunities as a Data Engineer where I can contribute to data-driven solutions and grow in a collaborative environment.
25+
I am particularly interested in cloud technologies, real-time data processing, and AI-driven automation.
26+
My goal is to bridge the gap between software development and data engineering, creating efficient and scalable systems that drive business insights.
27+
</p>
28+
29+
<ul>
30+
<li>🎓 Education: Bachelor’s in Computer Science (Class of 2023)</li>
31+
<li>💡 Interests: Software Engineering, Data Engineering, Cloud Computing (AWS), ETL Pipelines, AI & Automation</li>
32+
<li>🔍 Currently Seeking: Software Engineering and Data Engineering roles</li>
33+
</ul>
34+
35+
<hr>
36+
<h2>🛠️ Technical Experience</h2>
37+
<p>
38+
I have minimal experience with Python, SQL, AWS, and ETL Pipelines, but I am actively learning and working on projects to strengthen my skills.
39+
</p>
40+
41+
<hr>
42+
<h2>🐂 Projects</h2>
43+
<ul>
44+
<li><strong>AI-Powered Job Board Scraper</strong> – Automated system that scrapes job listings and stores them in a SQL database</li>
45+
<li><strong>Data-Driven Newsletter (AI Pulse)</strong> – AI-researched newsletter on emerging AI trends</li>
46+
</ul>
47+
48+
<hr>
49+
<h2>🎵 Hobbies & Interests</h2>
50+
<ul>
51+
<li>🎤 Concerts: I love experiencing live music and attending concerts. (Afronation concert...)</li>
52+
<li>🎶 Music: Amapiano & slow Afrobeats are my go-to genres. (I like Rema.)</li>
53+
<li>✈️ Traveling: Exploring new places and cultures excites me. (Nairobi is my favourite travel destination)</li>
54+
<li>🌍 Fun Fact: I can speak three languages fluently! (English, Swahili, Kisii).</li>
55+
</ul>
56+
<p>I used to love playing video games but I grew out of it.</p>
57+
58+
<hr>
59+
<h2>📢 Connect with Me</h2>
60+
<ul>
61+
<li><strong>GitHub:</strong> <a href="https://github.com/EzraNyabuti" target="_blank">EzraNyabuti</a></li>
62+
<li><strong>LinkedIn:</strong> <a href="https://www.linkedin.com/in/ezranyabuti" target="_blank">Ezra Nyabuti</a></li>
63+
</ul>
64+
65+
<hr>
66+
<img src="images/B0922182-C99D-4D2B-A083-769FD187152A.jpeg" alt="Profile Image" width="100%">
67+
68+
<p><em>Note: I used ChatGPT to convert the markdown into html/css format.</em></p>
69+
</body>
70+
</html>
102 KB
Loading

lesson_01/ezra002/styles.css

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
body {
2+
font-family: Arial, sans-serif;
3+
line-height: 1.6;
4+
max-width: 800px;
5+
margin: auto;
6+
padding: 20px;
7+
}
8+
h1, h2 {
9+
color: #333;
10+
}
11+
hr {
12+
border: 1px solid #ccc;
13+
}
14+
ul {
15+
list-style: none;
16+
padding: 0;
17+
}
18+
li::before {
19+
content: "\2022";
20+
color: #007BFF;
21+
font-weight: bold;
22+
display: inline-block;
23+
width: 1em;
24+
margin-left: -1em;
25+
}
26+
a {
27+
color: #007BFF;
28+
text-decoration: none;
29+
}
30+
a:hover {
31+
text-decoration: underline;
32+
}

0 commit comments

Comments
 (0)