-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
123 lines (122 loc) · 4.49 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
<link rel="manifest" href="/manifest.webmanifest" />
<link rel="stylesheet" href="/styles.css" />
<title>My Resume</title>
<link rel="apple-touch-icon" href="/assets/icon-192.png" />
<meta name="theme-color" content="#fafafa" />
<meta
name="description"
content="Rob Denman is a Software Engineer located in Minneapolis."
/>
</head>
<body>
<div class="content">
<article class="resume container">
<section class="name">
<h1>Rob Denman</h1>
<p>Software Engineer</p>
</section>
<section class="photo">
<img src="/assets/me.jpg" alt="Rob Denman" />
</section>
<section class="about">
<header class="section-header">
About Me
</header>
<p>
Experienced full-stack software engineer adept in producing quality,
custom software solutions. Proficient in an array of programming
languages, frameworks, and libraries, in addition to being equipped
with a desire to continually enrich my skillset. Able to self-manage
during independent projects, as well as collaborate and lead a
productive, agile team. Detail-oriented and a stickler for
delivering clean, maintainable, and highly performant code.
</p>
</section>
<section class="work">
<header class="section-header">
Work Experience
</header>
<div>
<b class="block"
>Software Engineer II & Team Lead at Infinite Campus</b
>
<i>May 2019 – Present</i>
<p>In addition to the responsibilites in my previous role:</p>
<ul>
<li>
Managed, developed, and delivered a variety of projects,
including integrated applications in the main SIS and a
standalone website
</li>
<li>Created automated pipelines for each project</li>
<li>
Maintained team’s agile scrum board, ensuring tasks were
prioritized for maximum visibility into the team’s current work
and priorities
</li>
<li>
Presented sprint work at bi-weekly meetings to the department’s
key stakeholders
</li>
<li>
Collaborated with other verticals and contributed to several
repositories outside projects the team worked on
</li>
</ul>
</div>
<div class="work-container">
<b class="block">Software Engineer I at Infinite Campus</b>
<i>May 2017 – May 2019</i>
<ul>
<li>
Prototyped several applications, many of which were promoted to
production
</li>
<li>
Created applications spanning many technology stacks, including:
<ul>
<li>Angular (2+) & Jersey/Hibernate-based REST API</li>
<li>AngularJS & Custom REST API Framework</li>
<li>XSLT/Vanilla JS & Custom Non-RESTFUL API Framework</li>
</ul>
</li>
<li>
Developed highly-performant SQL queries for a number of
data-intensive operations & batch jobs
</li>
</ul>
</div>
</section>
<section class="education">
<header class="section-header">
Education
</header>
<p>
Bachelor of Computer Science, Metropolitan State University
</p>
<p>
Graduated May 2017
</p>
</section>
<section class="skills">
<header class="section-header">
Skills
</header>
<p>Web Development • Project Management • Automation</p>
<p>JavaScript • Java • Groovy • SQL</p>
<p>
Angular • AngularJS • React • Typescript • Node
• Express • Spring • Hibernate • XSLT • FOP
• Docker • Git • Jenkins
</p>
</section>
</article>
</div>
<script src="/main.js"></script>
</body>
</html>