-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresume.html
75 lines (72 loc) · 3.78 KB
/
resume.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Resume</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="resume.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
<link href="https://unpkg.com/nes.css@latest/css/nes.min.css" rel="stylesheet" />
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1" crossorigin="anonymous">
<style>
body {
font-family: 'Press Start 2P', cursive;
}
</style>
</head>
<body>
<div class="page-header">
<h1>Resume</h1>
<h4>A history of important career related things I've done</h4>
</div>
<div class="topnav container-fluid" id="topnav">
<a href="index.html">Home</a>
<a class="active" href="resume.html">Resume</a>
<a href="projects.html">Projects</a>
<a href="distractions.html">Distractions</a>
<a href="contact.html">Contact</a>
</div>
<div id="resume">
<h1>Jamieson Walker</h1>
<h2>[email protected]</h2>
<h3>(708)927-0430</h3>
<hr />
<br>
<p class="head">Work History</p>
<p class="item">Software Engineer Broadcom Inc.</p>
<p class="dates">June 2018 -> Present</p>
<ul class="body">
<li>Developed modern REST API for mainframe break glass software</li>
<li>Developed and maintained stateless "login with z/OS" product</li>
<li>Provided education on digital certificates and encryption internally and at peer conventions</li>
<li>Maintained and enhanced time proven enterprise security products</li>
</ul>
<p class="item">Research Assistant Northern Illinois University</p>
<p class="dates">September 2016 -> June 2017</p>
<ul class="body">
<li>Created database to ingest, structure and serve data in support of altmetric Research</li>
<li>Worked with Dr. Hamed Alhooris' research team to plan and execute altmetric research</li>
<li>Wrote, edited and published scholarly research papers on altmetrics</li>
<li>Leveraged machine learning to cluster, classify and describe large altmetric dataset trends</li>
</ul>
<p class="head">Skills Overview</p>
<ul class="body">
<li>Languages: Java, C, C++, Python, HLASM, REXX, </li>
<li>Frameworks: Spring boot, Spring, Agile, AKKA </li>
<li>Technologies: JWT, GIT, OAUTH, REST APIs, Jenkins(CI/CD), </li>
<li>Maintained and enhanced time proven enterprise security products</li>
</ul>
<p class="head">Education and Acomplishments</p>
<p class="item">Eagle Scout, Boy Scouts of America</p>
<p class="dates">March 2014</p>
<p class="item">Bachelor of Science in Computer Science</p>
<p class="dates">May 2018</p>
<div class="body">
<p>Northern Illinois University, DeKalb, Illinois</p>
<p>Emphasis in Enterprise Software</p>
<p>GPA: 3.987/4.000</p>
</div>
</div>
</body>
</html>