-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathengineer.html
More file actions
100 lines (83 loc) · 3.07 KB
/
engineer.html
File metadata and controls
100 lines (83 loc) · 3.07 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
<html lang ="en">
<header>
<link rel="stylesheet" type="text/css" href="./style.css">
<div class="topnav">
<a href="https://samkibe.github.io/Kibe/">|Home|</a>
<a href="science.html">|Data Science|</a>
<a href="analytics.html">|Data Analytics|</a>
<a href="engineer.html">|Data Engineering|</a>
<a href="posts.html">|Write ups|</a>
<!-- <a href="#cv.html">|CV|</a> -->
</div>
<style>
body {
background: url(assets/s.png);
}
.left-section {
width: 50%;
float: left;
padding: 20px;
}
.right-section {
width: 50%;
float: right;
padding: 20px;
}
a:hover {
color: red;
background-color: transparent;
text-decoration: underline;
}
li a {
color: blue;
line-height: 1.5;
}
</style>
</header>
<body>
<div class="left-section">
<h1>Data Engineering Projects</h1>
<ul>
<li> <a href="https://drive.google.com/file/d/1SCE1PQtU4vT5Hgc9ics2pXWK3B3O1IBr/view?usp=drive_link">| Basic Data Engineering Infrastructure Setup on Windows 10 |
Reading & Writing CSV and Json files | Apache Nifi | Apache Airflow | Elasticsearch | Kibana | PostgreSQL | pgAdmin 4 ||</a></li>
<li> <a href="https://drive.google.com/file/d/1Yg3uVTi3fio4S-eVfMvP_BW2vsPwFISQ/view?usp=drive_link">|| Data Pipelines on Google Cloud Platform | Google Console |
Basic Data Engineering Infrastructure Setup on GCP | Cloud Composer | Apache AirFlow | Cloud Data Fusion |
BigQuery |</a></li>
<li> <a href="https://github.com/samkibe/Data-Engineering/blob/main/writing_and_reading_files_in_python.py">|Writing and Reading CSV files in Python|</a></li>
<li> <a href="#">|Coming soon|</a></li>
<li> <a href="#">|Coming soon|</a></li>
<li> <a href="#">|Coming soon|</a></li>
<!-- Add more projects as needed -->
</ul>
</div>
<div class="right-section">
<h1>More Data Engineering Projects</h1>
<ul>
<li> <a href="https://github.com/samkibe/Data-Engineering/blob/main/writing_json_with_python.py">|Writing JSON files in Python|</a></li>
<li> <a href="#">|Coming soon|</a></li>
<li> <a href="#">|Coming soon|</a></li>
<!-- Add more projects as needed -->
</ul>
</div>
</body>
<footer>
<section class="container">
<h2 class="h2 mb-5">Most Importantly,</h2>
<div class="me text-center flex">
<div class="w-full text-end">Its all about </div>
<div id="hobbies_text" class="w-full text-start">Data</div>
</div>
<!-- Todo: Create an array of hobbies and cycle through them -->
</section>
<script>
const hobbies = ["|AI|","|Data Science|", "|Python|","|R|","|Machine Learning|", "|FAMILY|", "|Data Analytics|", "|SQL|","|Tableau|", "|Microsoft Excel|","|NLP|", "Merci"]; // Add your hobbies to this array
const hobbiesText = document.getElementById("hobbies_text");
let currentIndex = 0;
function cycleHobbies() {
hobbiesText.textContent = hobbies[currentIndex];
currentIndex = (currentIndex + 1) % hobbies.length;
}
// Call the cycleHobbies function every 3 seconds (you can adjust the time)
setInterval(cycleHobbies, 500);
</script>
</section>