Skip to content

Commit 30ca52c

Browse files
committed
Merge branch 'develop'
2 parents e57f466 + afb29eb commit 30ca52c

File tree

5 files changed

+25
-23
lines changed

5 files changed

+25
-23
lines changed

src/assets/data/employment_history.js

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,12 @@ export default {
4646
end: "2024-11-01",
4747
},
4848
responsibilities: [
49-
"Definition, development, and deployment of event-driven architectures for interactive healthcare products, running on in-room SmartTVs, integrated with IOT devices connected to an AWS cloud platform built using Python, Typescript, and Serverless (StepFunctions, DynamoDB).",
49+
"Led a cross-functional team of 20+ engineers, serving as an information radiator and trusted decision-maker.",
50+
"Designed a serverless HL7/FHIR ingestion pipeline, ensuring HIPAA-compliant patient awareness from real-time ADT/ORM data.",
51+
"Designed a REST API for telehealth integration with a POC React app for secure OAuth2 credentialing, accelerating go-to-market and unlocking significant business growth.",
5052
],
51-
software: "AWS-CDK, Python, Docker, Celery, Typescript",
53+
software:
54+
"AWS-CDK, Python, PostgreSQL, ReactJS, DynamoDB, OpenAPI, Docker, Django, Celery, Typescript, SAML",
5255
},
5356
{
5457
title: "Software Systems Engineer II",
@@ -62,9 +65,12 @@ export default {
6265
end: "2022-06-01",
6366
},
6467
responsibilities: [
65-
"Built the flagship Cloud Configuration product on an AWS platform, using React and Python, allowing hotel staff to manage guest-aware in-room television devices, integrated with on-site PMS.",
68+
"Built the flagship Cloud Configuration product, using React and Python, allowing hotel staff to manage in-room television devices.",
69+
"Developed a lightweight, configuration-driven integration engine linking on-site and cloud PMS, enabling real-time guest awareness and seamless in-room purchase billing.",
70+
"Enhanced quality assurance by creating automated and manual simulation tools to validate functionality and prevent regressions during pre-release smoke testing.",
6671
],
67-
software: "Python, React, Docker, Gitlab-CI",
72+
software:
73+
"Python, AWS-Lambda, ReactJS, AWS-Cognito, OAuth2-JWT, Docker, Gitlab-CI, Postman",
6874
},
6975
{
7076
title: "Application Developer",
@@ -124,9 +130,9 @@ export default {
124130
},
125131
responsibilities: [
126132
// "Supported the Hydrospheric & Biospheric Sciences Support Services (HBSSS) Contract for the NASA Goddard Space Flight Center.",
133+
"Independently created data visualization web-application used for telemetry anomaly investigation",
127134
"Implemented and tested algorithm enhancements for operational calibrated product delivery ",
128135
"Developed report generation software utility allowing for PDF assimilation (Reduced time spent by >95%)",
129-
"Independently created data visualization web-application used for telemetry anomaly investigation",
130136
"Following on-orbit fault-hold, designed the successful recovery command sequence for a NASA instrument ",
131137
],
132138
software: "Python, Git, IDL, GDAL, PostgreSQL, HTML/CSS/JS, Apache",
@@ -143,9 +149,9 @@ export default {
143149
end: "2014-04-01",
144150
},
145151
responsibilities: [
152+
"Used spatial data aggregation to demonstrate auto-correlated thermal stray light image artifacts",
146153
"Created pre-launch Landsat-8 (LDCM) algorithm prototype software using simulated datasets",
147154
"Developed new algorithms for on-orbit requirements testing of detector uniformity and spatial quality",
148-
"Used spatial data aggregation to demonstrate auto-correlated thermal stray light image artifacts",
149155
],
150156
software: "Python, MATLAB, SQLite, GDAL, SVN",
151157
},

src/components/Experience.vue

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,11 @@
2121
</div>
2222
<h2>Technical Skills</h2>
2323
<div class="skills">
24-
<div class="skill-item" v-for="skill in uniqueSkills" :key="skill">
24+
<div
25+
class="skill-item"
26+
v-for="skill in uniqueSkills.slice(0, 28)"
27+
:key="skill"
28+
>
2529
{{ skill }}
2630
</div>
2731
</div>
@@ -90,7 +94,7 @@ export default {
9094
color: #0077c0; /* Adjust color to match the section header */
9195
text-transform: uppercase;
9296
letter-spacing: 1px;
93-
margin-bottom: 10px;
97+
margin-bottom: 5px;
9498
}
9599
96100
.job {
@@ -100,7 +104,7 @@ export default {
100104
}
101105
102106
.job > *:first-child {
103-
margin-top: 5px;
107+
margin-top: 0px;
104108
}
105109
106110
.job-position {
@@ -131,7 +135,7 @@ export default {
131135
}
132136
133137
.job-description li {
134-
margin-bottom: 5px;
138+
margin-bottom: 1px;
135139
}
136140
137141
/* TODO: Skills could maybe be it's own component */

src/components/FootFoot.vue

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
‹/› with <span class="heart">♥</span>
55
from South Dakota © Jake Brinkmann
66
</p>
7-
<p id="BuildTime">{{ $data.buildTime }}</p>
87
<p>
98
Except where otherwise noted, content on this site is released under
109
<a href="https://creativecommons.org/licenses/by/4.0/">CC-BY-4.0</a>
@@ -15,9 +14,6 @@
1514
<script>
1615
const FootFoot = {
1716
name: "FootFoot",
18-
data() {
19-
return { buildTime: new Date().toISOString() };
20-
},
2117
};
2218
export default FootFoot;
2319
</script>
@@ -57,12 +53,6 @@ export default FootFoot;
5753
float: left;
5854
margin: 0 0.5em;
5955
}
60-
61-
#BuildTime {
62-
font-family: "Courier New", Courier, monospace;
63-
color: #333333; /* Dark grey color */
64-
padding: 5px;
65-
}
6656
}
6757
6858
@media print {

src/components/SubHeading.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ span.sub {
5656
span.sub {
5757
position: absolute;
5858
top: 0;
59-
left: 6in;
59+
left: 5in;
6060
width: 250px;
6161
line-height: 1.3;
6262
}

src/components/Viewport.vue

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,11 @@ div.bin {
1717
border: 2px solid #ccc;
1818
border-radius: 10px;
1919
padding: 5px;
20+
margin: 0 auto;
21+
box-sizing: border-box; /* Include padding and border in dimensions */
2022
21-
width: 8.3in;
22-
height: 10.8in;
23+
width: 8.5in; /* US Letter width */
24+
height: 11in; /* US Letter height */
2325
2426
overflow-y: hidden;
2527
overflow-x: hidden;

0 commit comments

Comments
 (0)