-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcv.html
More file actions
91 lines (82 loc) · 3.26 KB
/
Copy pathcv.html
File metadata and controls
91 lines (82 loc) · 3.26 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Jacky Mpoka - CV</title>
<link rel="stylesheet" href="cv.css">
</head>
<body>
<main class="cv-page">
<header class="cv-header">
<div>
<h1>Jacky Mpoka</h1>
<p>Software Engineering and Data Science Student</p>
<p>Pretoria, South Africa</p>
</div>
<div class="cv-actions">
<button id="download-pdf" class="cv-btn">Download PDF</button>
<a class="cv-btn secondary" href="index.html">Back to Portfolio</a>
</div>
</header>
<section class="cv-contact">
<p><strong>Email:</strong> <a href="mailto:[email protected]">[email protected]</a></p>
<p><strong>LinkedIn:</strong> <a href="https://www.linkedin.com/in/jacky-mpoka-860423354/" target="_blank" rel="noopener noreferrer">linkedin.com/in/jacky-mpoka-860423354</a></p>
<p><strong>GitHub:</strong> <a href="https://github.com/jackyphuti" target="_blank" rel="noopener noreferrer">github.com/jackyphuti</a></p>
</section>
<section>
<h2>Profile</h2>
<p>Motivated IT student focused on software engineering and data science. Strong foundation in Python and C++, with practical project experience in computer vision, web applications, and systems programming.</p>
</section>
<section>
<h2>Career Goals</h2>
<p>Build impactful software products, grow into advanced software engineering and applied AI roles, and contribute to data-driven systems with social impact.</p>
</section>
<section>
<h2>Education</h2>
<p><strong>BSc Information Technology</strong> - University of Pretoria</p>
<p>Major: Data Science and Computer Science</p>
</section>
<section>
<h2>Experience and Training</h2>
<ul>
<li>WeThinkCode bootcamp training</li>
<li>FNB App Academy participant</li>
</ul>
</section>
<section>
<h2>Core Skills</h2>
<ul class="cv-skills">
<li>Python</li>
<li>C++</li>
<li>JavaScript</li>
<li>TypeScript</li>
<li>Flask</li>
<li>SQLite</li>
<li>Git</li>
<li>Computer Vision</li>
</ul>
</section>
<section>
<h2>Featured Projects</h2>
<ul>
<li>Web-Server-Ray-Tracer</li>
<li>SpeedPoint-AI</li>
<li>konnekt-my-city</li>
<li>Face-Eye-blink-unlock-demo</li>
<li>Terminal_Rogue_98</li>
<li>Municipal-Fault-Reporter</li>
</ul>
</section>
<section>
<h2>Availability</h2>
<p>Open to internships, junior software engineering roles, and collaborative projects.</p>
</section>
</main>
<script>
document.getElementById('download-pdf').addEventListener('click', () => {
window.print();
});
</script>
</body>
</html>