Skip to content

Commit

Permalink
feat(experience): Updating work experience
Browse files Browse the repository at this point in the history
  • Loading branch information
biehlerj committed Feb 12, 2024
1 parent d5e28c3 commit e10edf1
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/components/MultiDate.astro
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,14 @@ interface Props {
const { firstDate, secondDate } = Astro.props;
---

<time datetime={firstDate.toDateString()}>{format(firstDate, "LLLL yyyy")}</time
>
<time datetime={firstDate.toDateString()}>{format(firstDate, "LLLL yyyy")}</time>
<span class="split">to</span>
{
secondDate !== null ? (
<time datetime={firstDate.toDateString()}>
{format(secondDate, "LLLL yyyy")}
</time>
) : (
<p class="present-tie">"Present"</p>
<time datetime={Date.now().toString()}>Present</time>
)
}
18 changes: 18 additions & 0 deletions src/content/experience/epsilon-c5i.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
title: "Epsilon C5I"
beginDate: 2023-06-26
endDate: 2023-12-15
skills: [
"Docker",
"OpenShift",
"Jenkins",
"Visual Studio Code",
"Robot Framework",
]
---

[Epsilon C5I](https://www.epsilonsystems.com/c5i) provides Command, Control, Communications, Computers, Combat Systems,
and Intelligence products to government organizations.

While working for Epsilon C5I as a Software Engineer II I worked on automating tests and working with the infrastructure
team to maintain OpenShift deployments.
15 changes: 15 additions & 0 deletions src/content/experience/sentar-inc.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---
title: "Sentar Inc."
beginDate: 2024-01-02
endDate: null
skills: [
"C++",
"JavaScript",
"Python",
]
---

[Sentar Inc.](https://www.sentar.com/) is a cyber intelligence company that innovates, builds, and secures
mission-critical assets for national security.

At Sentar I work on building a web HMI for hardware to be deployed on customer devices that will allow for zeroization.

0 comments on commit e10edf1

Please sign in to comment.