Compare commits

...

3 commits

Author SHA1 Message Date
515c3287b6 Merge pull request 'merge CV' (#2) from staging into main
All checks were successful
ci/woodpecker/push/deploy-rsync Pipeline was successful
Reviewed-on: #2
2024-07-15 11:08:44 +02:00
a5c449aa23
fix staging path
All checks were successful
ci/woodpecker/push/deploy-rsync Pipeline was successful
2024-07-15 11:05:19 +02:00
0becfc3931
host cv on my own site
All checks were successful
ci/woodpecker/push/deploy-rsync Pipeline was successful
2024-07-15 11:03:40 +02:00
10 changed files with 103 additions and 7 deletions

View file

@ -43,7 +43,7 @@ steps:
- RSYNC_TARGET_SERVER
- RSYNC_TARGET_USER
environment:
TARGET_PATH: /webroot/adora.codes
TARGET_PATH: /webroot/www-staging.adora.codes
RSYNC_TARGET_PORT: *SSH_PORT
commands:
- apk add --update --no-cache openssh rsync git

View file

@ -40,7 +40,7 @@ Some ways to contact me:
- [XING](https://www.xing.com/profile/Laura_Kalb3/)
## About this website
This website is [open source](https://code.lila.network/adoralaura/personal-website). It's an entirely static site generated with [{{< hugo-version >}}](https://gohugo.io/) and hosted with Cloudflare.
This website is [open source](https://code.lila.network/adoralaura/personal-website). It's an entirely static site generated with [{{< hugo-version >}}](https://gohugo.io/) and hosted on Debian 12 with Caddy.
This page makes due without any cookies, javascript frameworks and databases in the effort to make the web quick and usable again :)

View file

@ -0,0 +1,10 @@
---
weight: 1
params:
company: COI GmbH
position: Apprenticeship Fachinformatiker Anwendungsentwicklung
begin: Sep. 2012
end: Aug. 2015
type: experience
---
Apprenticeship Software Development

View file

@ -0,0 +1,10 @@
---
weight: 2
params:
company: BRZ Deutschland GmbH
position: Apprenticeship Fachinformatiker Systemintegration
begin: Aug. 2016
end: Feb. 2019
type: experience
---
Apprenticeship Systems Integration

View file

@ -0,0 +1,11 @@
---
weight: 3
params:
company: BRZ Deutschland GmbH
position: Administrator Communication and Security
begin: Feb. 2019
end: Oct. 2021
type: experience
---
Administrator and Specialist responsible for management of switching, routing and security infrastructure. I was primarily responsible for the design and deployment of 100G Datacenter Backbone-Infrastructure, deployment of a L3 campus design and the introduction of a hybrid cloud/on-prem datacenter.

View file

@ -0,0 +1,11 @@
---
weight: 4
params:
company: noris network AG
position: Network Engineer
begin: Nov. 2021
end: Apr. 2023
type: experience
---
I was responsible for design, deployment and maintenance of our datacenter network infrastructure. In addition to that, I was working on implementing and automating a new datacenter fabric. I primarily used Juniper, Arista and Fortigate hardware.

View file

@ -0,0 +1,10 @@
---
weight: 5
params:
company: "DATEV e.G."
position: IT Security Engineer
begin: May 2023
end:
type: experience
---
At DATEV I'm managing our firewall fleet, and I analyze IDPS Alerts and other IT Security incidents. In addition to that, I help automate internal processes and help with design implementations. In addition to that, I teach network and firewalling classes in the DATEV Azubi-LAB.

20
content/cv/_index.md Normal file
View file

@ -0,0 +1,20 @@
---
date: 2024-07-14 18:20:00+02:00
title: "Adoras CV"
description: "Adoras CV ^-^"
---
## About me
Im a network engineer with a lot of software development experience, currently embroiled in network security, and Ive managed mid-sized networks and Linux infrastructure aswell as Datacenter Networks and their automation.
Im interested in enterprise networks and software automation and Id love to combine those two!
In my spare time I do a lot of open source software development, usually in [Go](https://go.dev). You can find my [software portfolio here](/portfolio/).
## Skills
- **Networking**: Juniper, Arista, Arbor Peakflow, Cisco (ASA/FTD/Switching), Fortigate, Check Point
- **Software Development/Automation**: Go, Python, Ansible, C#, Docker/-Compose/PodMan, REST-APIs, Git, CI/CD
- **OSes & Web Technologies**: HTML/CSS/JS, Debian, RHEL, SLES
## Languages
- **German**: native language
- **English**: professional

View file

@ -4,7 +4,7 @@ title = "Adoras Website <3"
enableGitInfo = true
[params]
description = "Adoras personal website and portfolio 💖"
description = "Adoras personal website, cv and portfolio 💖"
author = "Adora Laura Kalb"
meta_title = "Adoras Website"
@ -12,12 +12,18 @@ meta_title = "Adoras Website"
readingTime = true
author = true
[[menu.main]]
name = "CV/Lebenslauf"
pageRef = "/cv/"
weight = 1
[[menu.main]]
name = "Portfolio"
pageRef = "/portfolio"
weight = 2
[[menu.main]]
name = "Projects"
pageRef = "/projects"
weight = 3
#[[menu.main]]
#name = "Projects"
#pageRef = "/projects"
#weight = 3
#

18
layouts/cv/section.html Normal file
View file

@ -0,0 +1,18 @@
{{ define "page" }}
<content>
<h1>{{ .Title }}</h1>
<p>{{ .Content }}</p>
<h2>Experience</h2>
{{ range .Pages.ByWeight.Reverse }}
<div class="section-page-item">
<h3>{{ .Params.position }} @ {{ .Params.company }}</h3>
<div class="details">
<time class="float-left">
{{ .Params.begin }} to {{ .Params.end | default "now" }}
</time>
</div>
{{ .Content }}
</div>
{{ end }}
</content>
{{ end }}