-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
146 lines (146 loc) · 4.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0 minimum-scale=1"
/>
<meta name="author" content="Zino Onokpise" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./style.css" />
<script src="script.js" defer></script>
<title>Zino</title>
<meta name="description" content="A short personal site" />
</head>
<body>
<nav>
<a href="#">Zino</a>
<div id="nav_list">
<a href="#sticky_parent">JOURNEY</a>
<a href="#contact">CONTACT</a>
</div>
</nav>
<div id="home">
<h1>ZINO</h1>
<div id="board"></div>
<div id="result"></div>
</div>
<div id="sticky_parent">
<div class="sticky">
<div class="timeline_parent">
<div class="timeline">
<p>1999</p>
<p class="description">Born in Lagos, Nigeria.</p>
</div>
<div class="timeline">
<p>2018</p>
<p class="description">
Moved to Missouri to study Computer Science where I graduated Cum
Laude. <br />
<br />
<span>
Truman State University was ranked the number one public school
in the midwest and offered a great scholarship program for
internation students.
</span>
</p>
</div>
<div class="timeline">
<p>2021</p>
<p class="description">
Worked as a social media manager and web developer at Truman State
University's Center for Diversity and Inclusion.<br /><br /><span>
Initiated a support group by collaborating with leaders of
different student organizations to improve overall participation
and turnout at their individual events. I also created design
plans in collaboration with CDI director to revamp the CDI
website before graduating.
</span>
</p>
</div>
<div class="timeline">
<p>2022</p>
<p class="description">
Interned at <a href="">CSC Corptax</a> learning .Net & C#. <br />
<br />
<span>
Here I developed Microsoft applications used for the tax
assesment and evaluation processes and performed Quality
Assurance testing on Corptax's tax compliance software.
</span>
</p>
</div>
<div class="timeline">
<p>2022</p>
<p class="description">
Founded a volunteer organization called
<a href="">Coder Party</a>. <br /><br /><span>
Established a volunteer organization to guide students
post-college through tutoring and engaging top tech industry
recruiters, managers and senior software engineers from Google,
Adobe, and Snapchat to gain insights on securing entry-level
roles without a top-rated school background. Coder Party's
efforts helped 75% of participants to land their first
internships.
</span>
</p>
</div>
<div class="timeline">
<p>2022</p>
<p class="description">
Joined Genesys as a Software engineer.<br /><br /><span>
Majority of the work focuses on front end development using
React and Javascript but have also developed proficiency in Go
through working on some backend projects as well
</span>
</p>
</div>
<div class="timeline">
<p>2023</p>
<p class="description">
Developed a trading program using python.<br /><br /><span>
Using the robin stocks python package, I crafted a script
retrieving and organizing data for a Robinhood account. The
script includes functions enhancing options trading, such as
identifying the optimal hedge for an option position based on
criteria like the option delta.
</span>
</p>
</div>
</div>
</div>
</div>
<div id="contact">
<div id="contact_info">
<div class="info">
<p>EMAIL</p>
<p class="description">[email protected]</p>
</div>
<div class="info">
<p>LINKEDIN</p>
<a
class="description"
href="https://www.linkedin.com/in/zino-onokpise-207b84200/"
target="_blank"
>linkedin.com/in/zino-onokpise</a
>
</div>
<div class="info">
<p>GITHUB</p>
<a
class="description"
href="https://github.com/Zino-ctrlZ"
target="_blank"
>github.com/Zino-ctrlZ</a
>
</div>
</div>
</div>
</body>
</html>