-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
163 lines (163 loc) · 5.96 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Festus Nzuma's Portfolio</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
background-color: #fff;
}
header {
background: #FF7F00; /* Orange theme */
color: #fff;
padding: 1rem 0;
text-align: center;
}
.container {
display: flex;
flex-wrap: wrap;
width: 90%;
margin: auto;
padding: 20px;
box-sizing: border-box;
}
.main-content, .sidebar {
padding: 20px;
box-sizing: border-box;
}
.main-content {
flex: 3;
min-width: 300px;
}
.sidebar {
flex: 1;
background: #f4f4f4;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
min-width: 250px;
}
.contact-info, .skills, .experience, .certifications {
margin-bottom: 20px;
}
h2 {
color: #333;
border-bottom: 2px solid #FF7F00; /* Orange theme */
padding-bottom: 5px;
}
ul {
list-style: none;
padding: 0;
}
ul li {
margin-bottom: 10px;
}
footer {
background: #333;
color: #fff;
text-align: center;
padding: 10px 0;
width: 100%;
margin-top: 20px;
}
a {
color: #FF7F00; /* Orange theme */
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
@media (max-width: 768px) {
.container {
flex-direction: column;
}
footer {
position: static;
}
}
@media (max-width: 400px) {
h1 {
font-size: 1.5rem;
}
.container {
padding: 10px;
}
.sidebar, .main-content {
padding: 10px;
}
}
</style>
</head>
<body>
<header>
<h1>Festus Nzuma</h1>
<p>Experienced Data Analyst and Software Developer</p>
</header>
<div class="container">
<div class="main-content">
<section class="summary">
<h2>Summary</h2>
<p>Experienced and highly motivated data analyst with a background in statistics. Proficient in various statistical data analysis processes, including research design, data collection, statistical visualization, modeling, reporting, and presentation. Seeking opportunities to apply expertise and contribute to data-driven decision-making processes.</p>
</section>
<section class="experience">
<h2>Experience</h2>
<ul>
<li>
<h3>Freelance Data Analyst at Fesnic Research Solutions</h3>
<p>Jan 2017 - Present | Machakos, Kenya</p>
<ul>
<li>Performed thematic analysis on various datasets.</li>
<li>Implemented machine learning and statistical models for various applications.</li>
<li>Developed software using Python (Django, Streamlit, Shiny), R (Shiny), React.js, HTML, CSS, and Javascript.</li>
</ul>
</li>
</ul>
</section>
</div>
<aside class="sidebar">
<section class="contact-info">
<h2>Contact Info</h2>
<ul>
<li><i class="fas fa-envelope"></i> <a href="mailto:[email protected]">[email protected]</a></li>
<li><i class="fab fa-github"></i> <a href="https://github.com/statisticsguru1">github.com/statisticsguru1</a></li>
<li><i class="fab fa-linkedin"></i> <a href="https://www.linkedin.com/in/festus-nzuma-26580163">LinkedIn</a></li>
<li><i class="fas fa-phone"></i> +254706815783</li>
</ul>
</section>
<section class="skills">
<h2>Skills</h2>
<ul>
<li>Machine Learning</li>
<li>Deep Learning</li>
<li>OCR and Text Recognition</li>
<li>Video and Image Processing</li>
<li>Object Detection</li>
<li>Software Development (Shiny, Django, Streamlit, React)</li>
<li>Statistical Data Analysis (R, Python, SPSS, Stata, JMP, Eviews, Minitab)</li>
</ul>
</section>
<section class="certifications">
<h2>Certifications</h2>
<ul>
<li>R (Intermediate) certificate - HackerRank</li>
<li>Problem Solving (Intermediate) Certificate - HackerRank</li>
<li>Problem Solving (Basic) Certificate - HackerRank</li>
<li>Python (Basic) Certificate - HackerRank</li>
<li>R (Basic) certificate - HackerRank</li>
<li>R Programming (Advanced) - StudySection</li>
<li>R Programming (Foundation) - StudySection</li>
<li>Certificate in Statistical Package for the Social Sciences (SPSS) - NIBS Technical College</li>
<li>Certificate in MS Computer Packages - Wincadd Computer College</li>
</ul>
</section>
</aside>
</div>
<footer>
<p>© 2024 Festus Nzuma. All rights reserved.</p>
</footer>
</body>
</html>