-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
102 lines (93 loc) · 4.65 KB
/
about.html
File metadata and controls
102 lines (93 loc) · 4.65 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
101
102
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/3/w3.css">
<link rel="stylesheet" href="./css/main.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.3/css/font-awesome.min.css">
<title>About</title>
</head>
<body>
<!-- Navigation -->
<nav class="w3-bar w3-black">
<a href="/index.html" class="w3-button w3-bar-item">Home</a>
<a href="/about.html" class="w3-button w3-bar-item">About</a>
<a href="/tour.html" class="w3-button w3-bar-item">Tour</a>
<a href="/contact.html" class="w3-button w3-bar-item">Contact</a>
</nav>
<!-- header -->
<section class="w3-container w3-row-padding w3-light-grey w3-padding-small">
<article>
<div class="w3-card w3-padding-16 w3-margin-top">
<div class="w3-container w3-left-align">
<strong>Letlhogonolo Theodore Obonye</strong>
<p><i class="fas fa-user-graduate"></i> BSc (Hons) Computer Science</p>
<p><i class="fas fa-map-marker-alt"></i> South Africa, Capetown</p>
<a class="w3-btn w3-ripple" href="mailto:ltobonye@gmail.com"><i class="fas fa-envelope"></i> Get in touch</a>
</div>
</div>
</article>
</section>
<!-- resume body -->
<section class="w3-row-padding w3-light-grey">
<h1 class="w3-margin">Experience</h1>
<div class="w3-container w3-panel w3-grey">
<h3 class="w3-wide">Software Engineer</h3>
<h4>ConnectUS ICT</h4>
<div class="w3-left-align"><span class="w3-small">SEP 2018 - FEB 2020</span></div>
<p>Develop a single SPA for a micro finace lending start up called eThebe. Develop business logic and
integrate to the client application. Design and implement the client application to REST API and Service
workers. Set up continous Integration and Continous Delivery with Gitlab</p>
</div>
<div class="w3-container w3-panel">
<h3 class="w3-wide">Systems Administration</h3>
<h4>UASF/BOCRA</h4>
<div class="w3-left-align"><span class="w3-small">FEB 2018 - AUG 2018</span></div>
<p>Involved in a Country wide project to bridge the gap between area with highly previlege tech and those
without. Set up a LAN and integrate it to WAN. Manage users' consumptions of services within the
Network.</p>
</div>
<div class="w3-container w3-panel w3-grey">
<h3 class="w3-wide">IP Services Engineer</h3>
<h4>BOFINET</h4>
<div class="w3-left-align"><span class="w3-small">MAY 2016 - JAN 2018</span></div>
<p>Involved in a Country wide project to bridge the gap between area with highly previlege tech and those
without. Set up a LAN and integrate it to WAN. Manage users' consumptions of services within the
Network.</p>
</div>
<div class="w3-container w3-panel">
<h3 class="w3-wide">Associate Researcher</h3>
<h4>BITRI</h4>
<div class="w3-left-align"><span class="w3-small">MAY 2015 - APR 2016</span></div>
<p>Gather data, design tests and help ensure that information is being properly recorded and assessed.
</p>
</div>
</section>
<footer class="w3-container w3-padding-64 w3-center w3-black w3-xlarge">
<a href="https://www.facebook.com/theo.obonye/" target="_blank" ><i class="fa fa-facebook-official"></i></a>
<a href="https://github.com/MrObonye"><i class="fa fa-github" target="_blank" ></i></a>
<a href="https://twitter.com/thatguycodes"><i class="fa fa-twitter" target="_blank" ></i></a>
<a href="https://www.linkedin.com/in/letlhogonolo-theodore-obonye-23727b171/"><i class="fa fa-linkedin" target="_blank" ></i></a>
<p class="w3-medium">
</p>
</footer>
</body>
<script>
// Automatic Slideshow - change image every 3 seconds
var myIndex = 0;
carousel();
function carousel() {
var i;
var x = document.getElementsByClassName("thumbnail");
for (i = 0; i < x.length; i++) {
x[i].style.display = "none";
}
myIndex++;
if (myIndex > x.length) { myIndex = 1 }
x[myIndex - 1].style.display = "block";
setTimeout(carousel, 3000);
}
</script>
</html>