-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
399 lines (351 loc) · 13.5 KB
/
index.html
File metadata and controls
399 lines (351 loc) · 13.5 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
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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
<!DOCTYPE html>
<head>
<title>isame mario</title>
<script>
function hydra_onclick(){
}
</script>
<style>
body {
margin: auto;
font-family: -apple-system, BlinkMacSystemFont, sans-serif;
overflow: auto;
background: linear-gradient(315deg, rgba(101,0,94,1) 3%, rgba(60,132,206,1) 38%, rgba(48,238,226,1) 68%, rgba(255,25,25,1) 98%);
animation: gradient 15s ease infinite;
background-size: 400% 400%;
background-attachment: fixed;
}
.card {
max-width: 1980px;
width: 90%;
margin: 50px auto;
border-radius: var(--border-radius);
}
.card .inner {
padding: 25px;
background: #222;
color: #fff;
border-radius: var(--border-radius);
}
@keyframes gradient {
0% {
background-position: 0% 0%;
}
50% {
background-position: 100% 100%;
}
100% {
background-position: 0% 0%;
}
}
.wave {
background: rgb(255 255 255 / 25%);
border-radius: 1000% 1000% 0 0;
position: fixed;
width: 200%;
height: 12em;
animation: wave 10s -3s linear infinite;
transform: translate3d(0, 0, 0);
opacity: 0.8;
bottom: 0;
left: 0;
z-index: -1;
}
.wave:nth-of-type(2) {
bottom: -1.25em;
animation: wave 18s linear reverse infinite;
opacity: 0.8;
}
.wave:nth-of-type(3) {
bottom: -2.5em;
animation: wave 20s -1s reverse infinite;
opacity: 0.9;
}
@keyframes wave {
2% {
transform: translateX(1);
}
25% {
transform: translateX(-25%);
}
50% {
transform: translateX(-50%);
}
75% {
transform: translateX(-25%);
}
100% {
transform: translateX(1);
}
}
.container:hover{
animation: container-alteration 0.5s ease-in forwards;
}
@keyframes container-alteration{
100%{
background-color: white;
}
}
.container:hover .container_additional{
animation: ca-alteration 0.5s ease-in-out forwards;
}
@keyframes ca-alteration{
100%{
color:red;
}
}
.project_container{
height: 150px;
width: 30%;
background-size: 100% 100%;
}
.hydra-arc{
background-image: url("https://www.hydra-arc.com/ImageArchive/logos/Hydra-Arc_Group_of_Companies.png");
}
.seritonex{
background-image: url("https://seritonex.com/img/Icon/Seritonex_Color_Clear.png");
}
.heading{
position: relative;
left: 5%;
width: 80%;
height: auto;
margin-top:0;
padding-top:0;
text-align: left;
font-weight: bold;
}
.introduction{
position: relative;
left: 5%;
right: 10%;
width: 85%;
height: auto;
margin-top: 20px;
padding-top: 0;
text-align: left;
}
.project-tag{
font-size: 25px;
font-weight: bold;
margin-bottom: 50px;
color:#FC2E20;
}
.container{
position: relative;
border-radius: var(--border-radius);
padding: 4px;
}
.container .inner {
border-radius: 4px;
}
.container::before,
.container::after {
content: "";
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
background: linear-gradient(
45deg,
#ff595e,
#ffca3a,
#8ac926,
#1982c4,
#6a4c93,
#ff6700
);
background-size: 400%;
z-index: -1;
animation: glow 20s linear infinite;
width: 100%;
border-radius: var(--border-radius);
}
.container::after {
filter: blur(25px);
transform: translate3d(0, 0, 0); /* For Safari */
}
@keyframes glow {
0% {
background-position: 0 0;
}
50% {
background-position: 100% 0;
}
100% {
background-position: 0 0;
}
}
.container_header{
font-size: 50px;
font-weight: bold;
color:white;
}
.container_additional{
font-size: 30px;
color: white;
margin-bottom: 10px;
margin-top: 10px;
}
.body_font_color{
color: white;
}
.body_font_size{
font-size: 20px;
}
li{
font-size: 20px;
color: white;
font-family: "Eras ITC", "Eras Light ITC", sans-serif ;
}
.center_align_text{
text-align:center;
}
.header_text{
position: relative;
left: 10px;
font-size: 5rem;
color: black;
}
p{
margin: 0;
padding: top 0, left 0, right 0, bottom 0;
font-family: "Eras ITC", "Eras Light ITC", sans-serif ;
}
#mantag{
position: relative;
left: 10px;
font-size: 5rem;
color: black;
}
</style>
</head>
<body class="main">
<div>
<div class="wave"></div>
<div class="wave"></div>
<div class="wave"></div>
</div>
<div class="heading">
<p class="header_text">Jaques Janse van Rensburg</p>
<p id="mantag">IT Manager</p>
</div>
<div class="card container">
<div class="inner">
<p class="body_font_size body_font_color">Dynamic IT Manager with 6+ years at Hydra-Arc, BSc in IT & Computer Science ’24. Expert in solutions Architecture, C#/C++, Leadership, Project Management & Linux Administration. Avid on leveraging my skills in SQL, Virtualization, Firewall/VPN’S & MySQL to drive innovation. Eager to contribute to you team’s success through robust system integration, strategic decision making and effective problem solving.</p>
</div>
</div>
<div class="card container">
<div class="inner">
<p class="container_header">Projects</p>
<a href="https://jaques941102.github.io/StoreGuard" class="project-tag"><p>StoreGuard Information System<br>C# with Visual Studio<br>Confidential</p></a>
<br>
<a href="https://jaques941102.github.io/Accomodation" class="project-tag"><p>Ark-Lodge Accomodation<br>C# with Visual Studio<br>Confidential</p></a>
<br>
<a href="https://www.hydra-arc.com" class="project-tag"><p>Hydra-Arc Webpage<br>HTLM | CSS | JavaScript with Visual Studio Code<br>Public</p></a>
<br>
<a href="https://www.seritonex.com" class="project-tag"><p>Seritonex Webpage<br>HTLM | CSS | JavaScript with Visual Studio Code<br>Public</p></a>
</div>
</div>
<div class="card container">
<div class="inner">
<p class="container_header">Work Experience</p>
<p class="container_additional">IT Manager, Hydra-Arc, Secunda - July 2022 onwards</p>
<ul>
<li>Achieved a 98% customer satisfaction rate through the provision of round-the-clock IT support services</li>
<li>Implemented a robust private cloud infrastructure utilizing ESXi VMWare, enhancing system reliability</li>
<li>Fortified network security by integrating cutting-edge technologies to safeguard against cyber threats</li>
<li>Expertly installed and maintained local, wireless, and WAN networks to ensure optimal connectivity</li>
<li>Provided comprehensive managed IT services, including meticulous invoicing and cost-efficiency evaluations</li>
</ul>
<p class="container_additional">Reference:</p>
<ul>
<li>Name: Sanet Nobrega</li>
<li>Cell: +27 (0) 82 828 3436</li>
<li>Email: sanet.nobrega@hydra-arc.com</li>
</ul>
<br>
<p class="container_additional">Software Engineer | DBD | DBA, Hydra-Arc, Secunda - June 2021 onwards</p>
<ul>
<li>Designed, developed and successfully deployed a simple yet effective application to facilitate the encryption and distribution of employee payslips</li>
<li>Developed a custom Transaction Processing and Management Information System with CRM capabilities to optimize business processes which incorporates biometric security to identify personnel, currently deployed at over 14 locations inside Sasol Secunda for Hydra-Arc where the TPS offers a best in class synchronization algorithm that ensures every endpoint can continue working even if communication is interrupted</li>
</ul>
<p class="container_additional">Reference:</p>
<ul>
<li>Name: Lee Jordaan</li>
<li>Tel: +27 (0) 17 620 4321</li>
<li>Email: lee.jordaan@seritonex.com</li>
</ul>
<br>
<p class="container_additional">IT Technician, Hydra-Arc, Secunda - May 2018 till June 2022</p>
<ul>
<li>Facilitated the migration from web hosted emails to Microsoft Business 365 with Active Directory Domain Controller</li>
<li>Maintained endpoints with a high regard for customer satisfaction and turnaround time</li>
<li>Upgraded and maintained network infrastructure spanning across multiple sites encompassing LAN, PTP Wireless, PTMP Wireless, and Site-to-Site SSL Tunnels</li>
</ul>
<p class="container_additional">Reference:</p>
<ul>
<li>Name: Gert Labuschagne</li>
<li>Cell: +27 (0) 72 595 1708</li>
<li>Email: support@hydra-arc.com</li>
</ul>
</div>
</div>
<div class="card container">
<div class="inner">
<p class="container_header">Education</p>
<p class="container_additional">BSc Information Technology & Computer Science, North-West University, Potchefstroom - 2024</p>
<ul>
<li>Object-Oriented Programming, Data Structures, and Algorithms.</li>
<li>Designed, developed, and deployed a custom asset management system to streamline operations</li>
<li>Implemented a robust private cloud infrastructure utilizing ESXi VMWare, enhancing system reliability</li>
<li>Fortified network security by integrating cutting-edge technologies to safeguard against cyber threats</li>
<li>Expertly installed and maintained local, wireless, and WAN networks to ensure optimal connectivity</li>
<li>Provided comprehensive managed IT services, including meticulous invoicing and cost-efficiency evaluations</li>
</ul>
<br>
<p class="container_additional">National Senior Certificate, Hoërskool Hoogenhout, Bethal - 2012</p>
<ul>
<li>Mathematics</li>
<li>Information Technology</li>
<li>Science and Chemistry</li>
<li>Geography</li>
<li>Afrikaans</li>
<li>English</li>
<li>Life Oriëntation</li>
</ul>
</div>
</div>
<div class="card container">
<div class="inner">
<p class="container_header">Skills</p>
<ul>
<li>Software Engineering</li>
<li>Solutions Architecture</li>
<li>C# (Programming Language)</li>
<li>C++ (Programming Language)</li>
<li>MySQL Database Administration & Database Development</li>
<li>Project Management</li>
<li>Leadership</li>
<li>Network Configuration</li>
<li>Systems Integration</li>
<li>Linux Administration</li>
<li>Virtualization Technologies</li>
<li>Firewalls Configuration and VPNs</li>
<li>Problem Solving</li>
</ul>
</div>
</div>
<div class="card container">
<div class="inner">
<p class="container_header">Personal Information</p>
<p class="container_additional">License</p>
<p class="body_font_size body_font_color">Code B Drivers License | MEWP Operator</p>
<p class="container_additional">Contact Information</p>
<p class="body_font_size body_font_color">Cell: +27 (0) 078 377 9690</p>
<p class="body_font_size body_font_color">Email: jaques.jvr94@gmail.com</p>
<p class="body_font_size body_font_color">Address: 22 Duiker Street, Secunda, 2302, South Africa</p>
</div>
</div>
</body>