jsonresume-theme-engineering 0.1.7 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/dependabot.yml +11 -0
- package/.nvmrc +1 -0
- package/Makefile +12 -0
- package/README.md +5 -1
- package/index.js +6 -15
- package/package.json +14 -4
- package/resume.2024-04-2110:16:53.png +0 -0
- package/resume.2024-04-2110:19:18.png +0 -0
- package/resume.2024-04-2111:22:03.png +0 -0
- package/resume.hbs +2 -1
- package/resume.old.png +0 -0
- package/resume.png +0 -0
- package/views/basics.hbs +2 -2
- package/views/volunteer.hbs +22 -0
- package/README.md.backup +0 -69
- package/public/index.html +0 -309
- package/resume.letter.pdf +0 -0
- /package/views/{languages-skills-interests.hbs → skills.hbs} +0 -0
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# To get started with Dependabot version updates, you'll need to specify which
|
|
2
|
+
# package ecosystems to update and where the package manifests are located.
|
|
3
|
+
# Please see the documentation for all configuration options:
|
|
4
|
+
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
|
|
5
|
+
|
|
6
|
+
version: 2
|
|
7
|
+
updates:
|
|
8
|
+
- package-ecosystem: "npm"
|
|
9
|
+
directory: "/" # Location of package manifests
|
|
10
|
+
schedule:
|
|
11
|
+
interval: "weekly"
|
package/.nvmrc
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
v20.12.1
|
package/Makefile
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
HBS_TEMPLATES = $(sort $(wildcard partials/** views/** resume.hbs ))
|
|
2
|
+
|
|
3
|
+
all: resume.png
|
|
4
|
+
|
|
5
|
+
resume.json:
|
|
6
|
+
cp sample-resume.json resume.json
|
|
7
|
+
|
|
8
|
+
resume.pdf: resume.json index.js $(HBS_TEMPLATES)
|
|
9
|
+
npm run export
|
|
10
|
+
|
|
11
|
+
resume.png: resume.pdf
|
|
12
|
+
pdftoppm -png resume.pdf > resume.png
|
package/README.md
CHANGED
|
@@ -2,7 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
This is the engineering theme for [JSON Resume](http://jsonresume.org/), based off of [jsonresume-theme-business-professional-compact](https://github.com/yechoorv/jsonresume-theme-business-professional-compact) and aims to implement the best practices for engineering resumes described in https://www.reddit.com/r/EngineeringResumes/wiki/index/. It is intended for [senior/staff level engineers](https://www.reddit.com/r/EngineeringResumes/wiki/index/#wiki_senior_engineers_and_above_.2810.2B_yoe.29).
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
<p align="center">
|
|
6
|
+
<kbd>
|
|
7
|
+
<img src="https://github.com/skoenig/jsonresume-theme-engineering/blob/main/resume.png?raw=true" alt="Richard Hendriks Resume"/>
|
|
8
|
+
</kbd>
|
|
9
|
+
</p>
|
|
6
10
|
|
|
7
11
|
## Getting started
|
|
8
12
|
|
package/index.js
CHANGED
|
@@ -20,18 +20,6 @@ handlebars.registerHelper({
|
|
|
20
20
|
return new handlebars.SafeString(wrappedAddress);
|
|
21
21
|
},
|
|
22
22
|
|
|
23
|
-
concat: function () {
|
|
24
|
-
let res = '';
|
|
25
|
-
|
|
26
|
-
for (let arg in arguments) {
|
|
27
|
-
if (typeof arguments[arg] !== 'object') {
|
|
28
|
-
res += arguments[arg];
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
return res;
|
|
33
|
-
},
|
|
34
|
-
|
|
35
23
|
formatAddress: function (address, city, region, postalCode, countryCode) {
|
|
36
24
|
let addressList = addressFormat({
|
|
37
25
|
address: address,
|
|
@@ -41,7 +29,6 @@ handlebars.registerHelper({
|
|
|
41
29
|
countryCode: countryCode
|
|
42
30
|
});
|
|
43
31
|
|
|
44
|
-
|
|
45
32
|
return addressList.join('<br/>');
|
|
46
33
|
},
|
|
47
34
|
|
|
@@ -50,7 +37,7 @@ handlebars.registerHelper({
|
|
|
50
37
|
},
|
|
51
38
|
|
|
52
39
|
getValueIfDiffFromPrevious: function (array, index, key) {
|
|
53
|
-
|
|
40
|
+
return (array[index - 1] && (array[index][key] === array[index - 1][key])) ? '' : array[index][key];
|
|
54
41
|
},
|
|
55
42
|
});
|
|
56
43
|
|
|
@@ -71,5 +58,9 @@ function render(resume) {
|
|
|
71
58
|
}
|
|
72
59
|
|
|
73
60
|
module.exports = {
|
|
74
|
-
render: render
|
|
61
|
+
render: render,
|
|
62
|
+
pdfRenderOptions: {
|
|
63
|
+
format: 'A4',
|
|
64
|
+
mediaType: 'print',
|
|
65
|
+
},
|
|
75
66
|
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jsonresume-theme-engineering",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "JSON Resume theme for engineers",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"jsonresume",
|
|
7
|
+
"jsonresume-theme",
|
|
8
|
+
"json",
|
|
9
|
+
"resume",
|
|
10
|
+
"theme",
|
|
11
|
+
"cv"
|
|
12
|
+
],
|
|
5
13
|
"author": "Sören König",
|
|
6
14
|
"repository": {
|
|
7
15
|
"type": "git",
|
|
@@ -14,10 +22,12 @@
|
|
|
14
22
|
},
|
|
15
23
|
"dependencies": {
|
|
16
24
|
"address-format": "0.0.3",
|
|
17
|
-
"handlebars": "^4.7.
|
|
25
|
+
"handlebars": "^4.7.8",
|
|
18
26
|
"handlebars-wax": "^6.1.0",
|
|
19
|
-
"moment": "^2.
|
|
20
|
-
"resume-cli": "^3.0.8",
|
|
27
|
+
"moment": "^2.30.1",
|
|
21
28
|
"swag": "^0.7.0"
|
|
29
|
+
},
|
|
30
|
+
"devDependencies": {
|
|
31
|
+
"resume-cli": "^3.1.2"
|
|
22
32
|
}
|
|
23
33
|
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/resume.hbs
CHANGED
package/resume.old.png
ADDED
|
Binary file
|
package/resume.png
CHANGED
|
Binary file
|
package/views/basics.hbs
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
<h1>{{name}}</h1>
|
|
4
4
|
<div class="contact centered">
|
|
5
5
|
{{#if email~}}
|
|
6
|
-
<span class="vertical-separator">{{email}}</span>
|
|
6
|
+
<span class="vertical-separator">{{wrapMail email}}</span>
|
|
7
7
|
{{~/if}}
|
|
8
8
|
{{#if phone~}}
|
|
9
9
|
<span class="vertical-separator">{{phone}}</span>
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
<span class="vertical-separator">{{location.city}}, {{location.countryCode}}</span>
|
|
13
13
|
{{~/if}}
|
|
14
14
|
{{#if website~}}
|
|
15
|
-
<span class="vertical-separator">{{website}}</span>
|
|
15
|
+
<span class="vertical-separator">{{wrapURL website}}</span>
|
|
16
16
|
{{~/if}}
|
|
17
17
|
</div>
|
|
18
18
|
{{#if summary}}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
{{#if resume.volunteer.length}}
|
|
2
|
+
<section id="volunteer">
|
|
3
|
+
<h2>Volunteering</h2>
|
|
4
|
+
{{#each resume.volunteer}}
|
|
5
|
+
{{#> item title=organization subtitle=position location=location startDate=startDate endDate=endDate }}
|
|
6
|
+
{{#if summary}}
|
|
7
|
+
<div class="summary">
|
|
8
|
+
<p>{{summary}}</p>
|
|
9
|
+
</div>
|
|
10
|
+
{{/if}}
|
|
11
|
+
|
|
12
|
+
{{#if highlights.length}}
|
|
13
|
+
<ul class="highlights">
|
|
14
|
+
{{#each highlights}}
|
|
15
|
+
<li>{{.}}</li>
|
|
16
|
+
{{/each}}
|
|
17
|
+
</ul>
|
|
18
|
+
{{/if}}
|
|
19
|
+
{{/item}}
|
|
20
|
+
{{/each}}
|
|
21
|
+
</section>
|
|
22
|
+
{{/if}}
|
package/README.md.backup
DELETED
|
@@ -1,69 +0,0 @@
|
|
|
1
|
-
# jsonresume-theme-engineering [](https://www.npmjs.org/package/jsonresume-theme-engineering)
|
|
2
|
-
|
|
3
|
-
This is the engineering theme for [JSON Resume](http://jsonresume.org/), based off of [jsonresume-theme-business-professional-compact](https://github.com/yechoorv/jsonresume-theme-business-professional-compact) and aims to implement the best practices for engineering resumes described in https://www.reddit.com/r/EngineeringResumes/wiki/index/. It is intended for [senior/staff level engineers](https://www.reddit.com/r/EngineeringResumes/wiki/index/#wiki_senior_engineers_and_above_.2810.2B_yoe.29).
|
|
4
|
-
|
|
5
|
-

|
|
6
|
-
|
|
7
|
-
## Getting started
|
|
8
|
-
|
|
9
|
-
To get started with theme development, this is what you'll need:
|
|
10
|
-
|
|
11
|
-
- [node.js](http://howtonode.org/how-to-install-nodejs)
|
|
12
|
-
- [npm](http://howtonode.org/introduction-to-npm)
|
|
13
|
-
|
|
14
|
-
If you're on Linux, you can simply run:
|
|
15
|
-
|
|
16
|
-
```
|
|
17
|
-
sudo apt-get install nodejs-legacy npm
|
|
18
|
-
```
|
|
19
|
-
|
|
20
|
-
Or if you're on OSX and got [Homebrew](http://brew.sh/) installed:
|
|
21
|
-
|
|
22
|
-
```
|
|
23
|
-
brew install node
|
|
24
|
-
```
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
### Install npm packages
|
|
28
|
-
|
|
29
|
-
We need to install the dependencies:
|
|
30
|
-
|
|
31
|
-
```bash
|
|
32
|
-
npm install
|
|
33
|
-
```
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
### Serve theme
|
|
37
|
-
|
|
38
|
-
If you do not provide a resume.json at the root directory level, copy the sample resume and run the development server:
|
|
39
|
-
|
|
40
|
-
```
|
|
41
|
-
cp sample-resume.json resume.json
|
|
42
|
-
npm start
|
|
43
|
-
```
|
|
44
|
-
|
|
45
|
-
You should now see this message:
|
|
46
|
-
|
|
47
|
-
```
|
|
48
|
-
Preview: http://localhost:4000
|
|
49
|
-
Press ctrl-c to stop
|
|
50
|
-
```
|
|
51
|
-
|
|
52
|
-
Congratulations, you've made it! You can now start to modify this theme (see Development section below).
|
|
53
|
-
|
|
54
|
-
## PDF Export
|
|
55
|
-
To export your resume, you can run the following command below. This will automatically create a `resume.pdf` file within your current directory:
|
|
56
|
-
|
|
57
|
-
```
|
|
58
|
-
npm run export
|
|
59
|
-
```
|
|
60
|
-
|
|
61
|
-
Alternatively, you can also do a **print page** on the browser and save it as as PDF (by setting margins to none and removing header/footers.)
|
|
62
|
-
|
|
63
|
-
## Development
|
|
64
|
-
|
|
65
|
-
Currently, this theme is still based on the old [jsonresume-theme-boilerplate](https://github.com/jsonresume/jsonresume-theme-boilerplate), so a look at the README will give you an overview of the files involved in theme modification.
|
|
66
|
-
|
|
67
|
-
## License
|
|
68
|
-
|
|
69
|
-
Available under [the MIT license](http://mths.be/mit).
|
package/public/index.html
DELETED
|
@@ -1,309 +0,0 @@
|
|
|
1
|
-
<!doctype html>
|
|
2
|
-
<html>
|
|
3
|
-
<head>
|
|
4
|
-
|
|
5
|
-
<meta charset="utf-8">
|
|
6
|
-
<meta name="viewport" content="width=device-width, user-scalable=no, minimal-ui">
|
|
7
|
-
|
|
8
|
-
<title>Sören König</title>
|
|
9
|
-
|
|
10
|
-
<style>
|
|
11
|
-
/* Template level */
|
|
12
|
-
body {
|
|
13
|
-
font-family: Georgia, serif;
|
|
14
|
-
font-size: 11px;
|
|
15
|
-
margin: 24px 48px;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
h1 {
|
|
19
|
-
font-size: 26px;
|
|
20
|
-
text-align: center;
|
|
21
|
-
margin: 5px;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
h2 {
|
|
25
|
-
border-width: 1px;
|
|
26
|
-
border-style: none none solid none;
|
|
27
|
-
margin: 10px 0 2.5px 0;
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
section {
|
|
31
|
-
margin: 3px 0;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
ul {
|
|
35
|
-
margin: 0;
|
|
36
|
-
padding-left: 20px;
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
a {
|
|
40
|
-
text-decoration: none;
|
|
41
|
-
color: black;
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
.item {
|
|
45
|
-
margin-top: 8px;
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
.item>.item-header {
|
|
49
|
-
float: left;
|
|
50
|
-
display: block;
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
.item>.item-header>.item-header-title {
|
|
54
|
-
font-weight: bold;
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
.item>.item-header>.item-header-subtitle {
|
|
58
|
-
font-style: italic;
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
.item>.item-details {
|
|
62
|
-
float: right;
|
|
63
|
-
text-align: right;
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
.item>.item-details>.item-details-title {
|
|
67
|
-
font-weight: bold;
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
.clearfix {
|
|
71
|
-
clear: both;
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
.centered {
|
|
75
|
-
text-align: center;
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
/* Section specific */
|
|
79
|
-
/* basics */
|
|
80
|
-
.vertical-separator {
|
|
81
|
-
text-align: center;
|
|
82
|
-
padding: 0 10px;
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
.vertical-separator:not(:first-child) {
|
|
86
|
-
border-left: 1px solid #000;
|
|
87
|
-
text-align: center;
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
/* Set some print settings. */
|
|
91
|
-
@media print {
|
|
92
|
-
@page {
|
|
93
|
-
size: portrait;
|
|
94
|
-
margin: 10mm 25mm;
|
|
95
|
-
}
|
|
96
|
-
.resume {
|
|
97
|
-
max-width: 100%;
|
|
98
|
-
border: 0px;
|
|
99
|
-
background: #fff;
|
|
100
|
-
box-shadow: none;
|
|
101
|
-
-webkit-box-shadow: none;
|
|
102
|
-
}
|
|
103
|
-
body,
|
|
104
|
-
html,
|
|
105
|
-
.resume {
|
|
106
|
-
margin: 0px;
|
|
107
|
-
padding: 0px;
|
|
108
|
-
}
|
|
109
|
-
.controls {
|
|
110
|
-
display: none;
|
|
111
|
-
}
|
|
112
|
-
}
|
|
113
|
-
|
|
114
|
-
</style>
|
|
115
|
-
|
|
116
|
-
</head>
|
|
117
|
-
<body>
|
|
118
|
-
|
|
119
|
-
<div id="resume">
|
|
120
|
-
<section id="basics">
|
|
121
|
-
<h1>Sören König</h1>
|
|
122
|
-
<div class="contact centered">
|
|
123
|
-
<span class="vertical-separator">soeren.koenig@mailbox.org</span>
|
|
124
|
-
<span class="vertical-separator">+49151-41613201</span>
|
|
125
|
-
<span class="vertical-separator">Berlin, DE</span>
|
|
126
|
-
<span class="vertical-separator">https://github.com/skoenig</span>
|
|
127
|
-
</div>
|
|
128
|
-
<div class="summary">
|
|
129
|
-
<h2>Summary</h2>
|
|
130
|
-
<p>Senior Site Reliability Engineer with 15 years of experience, showcasing expertise in Observability, Infrastructure as Code, Automation, and CI/CD. Proficient in systems monitoring, configuration management, and back-end development, contributing to the design, implementation, and operation of distributed and scalable systems. Prioritizes inter-team collaboration, adherence to DevOps best practices, and pragmatic solutions. Currently engaged in a team effort to establish infrastructure for an online retail sustainability solution with a 20% year-on-year traffic increase, resulting in keeping up the 99.95% SLO for over 260 merchants.</p>
|
|
131
|
-
</div>
|
|
132
|
-
</section>
|
|
133
|
-
<section id="skills">
|
|
134
|
-
<h2>Skills</h2>
|
|
135
|
-
<ul class="item">
|
|
136
|
-
<li>
|
|
137
|
-
<strong>DevOps</strong>: Agile Methodologies, Cross-functional Communication, Git, Kubernetes, Terraform, Helm, Docker, HashiCorp Packer, GCP Cloudbuild, GitHub Actions, Jenkins, Prometheus, Grafana, SaltStack, Ansible, Puppet, Maven, Linux
|
|
138
|
-
</li>
|
|
139
|
-
<li>
|
|
140
|
-
<strong>Cloud Technologies</strong>: Google Cloud Platform (GCP), Amazon Web Services (AWS), Heroku, DigitalOcean, Cloudflare
|
|
141
|
-
</li>
|
|
142
|
-
<li>
|
|
143
|
-
<strong>Backend Development</strong>: Python, Bash, Go, Node.js
|
|
144
|
-
</li>
|
|
145
|
-
<li>
|
|
146
|
-
<strong>Datastores</strong>: PostgreSQL, MySQL / MariaDB, Redis, Memcached, Kafka
|
|
147
|
-
</li>
|
|
148
|
-
</ul>
|
|
149
|
-
</section>
|
|
150
|
-
<section id="work">
|
|
151
|
-
<h2>Work Experience</h2>
|
|
152
|
-
<div class="item">
|
|
153
|
-
<div class="item-header">
|
|
154
|
-
<div class="item-header-title">
|
|
155
|
-
Fit Analytics GmbH
|
|
156
|
-
</div>
|
|
157
|
-
<div class="item-header-subtitle">
|
|
158
|
-
Senior DevOps Engineer
|
|
159
|
-
</div>
|
|
160
|
-
</div>
|
|
161
|
-
<div class="item-details">
|
|
162
|
-
<div class="date">
|
|
163
|
-
Oct 2020 — Present
|
|
164
|
-
</div>
|
|
165
|
-
</div>
|
|
166
|
-
<div class="clearfix"></div>
|
|
167
|
-
|
|
168
|
-
<ul class="highlights">
|
|
169
|
-
<li>Accelerated Dataflow pipeline performance, processing 570k items from over 24 hours to 20 minutes.</li>
|
|
170
|
-
<li>Overhauled CI/CD to increase deployment speed by 56%, reduce pipeline complexity from 37 to 5 steps, and enhancing stability for higher code change frequency.</li>
|
|
171
|
-
<li>Pioneered incident management process including on-call rotation across three teams and blameless Post Mortems to ensure reliability and service quality of critical production systems.</li>
|
|
172
|
-
<li>Enhanced provisioning speed, operatability, and query latency by 66% of MySQL read-replicas.</li>
|
|
173
|
-
<li>Collaborated with cross-functional teams to define production readiness standards for 5 core services.</li>
|
|
174
|
-
<li>Orchestrated infrastructure reproducibility for three environments using Terraform and Helm, resulting in streamlined deployments and enhanced scalability.</li>
|
|
175
|
-
<li>Collaborated on game days and load tests, identifying and resolving performance bottlenecks.</li>
|
|
176
|
-
</ul>
|
|
177
|
-
</div>
|
|
178
|
-
<div class="item">
|
|
179
|
-
<div class="item-header">
|
|
180
|
-
<div class="item-header-title">
|
|
181
|
-
Zalando SE
|
|
182
|
-
</div>
|
|
183
|
-
<div class="item-header-subtitle">
|
|
184
|
-
DevOps Engineer
|
|
185
|
-
</div>
|
|
186
|
-
</div>
|
|
187
|
-
<div class="item-details">
|
|
188
|
-
<div class="date">
|
|
189
|
-
May 2014 — Oct 2020
|
|
190
|
-
</div>
|
|
191
|
-
</div>
|
|
192
|
-
<div class="clearfix"></div>
|
|
193
|
-
|
|
194
|
-
<ul class="highlights">
|
|
195
|
-
<li>Collaborated on migrating 120 production microservices to AWS with feature teams and stakeholders.</li>
|
|
196
|
-
<li>Cut build time by 32% for migration of legacy Java stack to Docker by creating tools for automation.</li>
|
|
197
|
-
<li>Build, configure, maintain and operate a heterogeneous infrastructure of ~2,000 Linux VMs running on ~750 servers in three data centers with Puppet and SaltStack.</li>
|
|
198
|
-
<li>Integrated a customized CMDB with provisioning, monitoring and auditing systems to achieve near 100% infrastructure coverage.</li>
|
|
199
|
-
<li>Initiated the adoption of team runbooks to standardize documentation for incident response.</li>
|
|
200
|
-
<li>Mentoring and guidance of three trainees throughout the apprenticeship in different teams.</li>
|
|
201
|
-
</ul>
|
|
202
|
-
</div>
|
|
203
|
-
<div class="item">
|
|
204
|
-
<div class="item-header">
|
|
205
|
-
<div class="item-header-subtitle">
|
|
206
|
-
Software Developer
|
|
207
|
-
</div>
|
|
208
|
-
</div>
|
|
209
|
-
<div class="item-details">
|
|
210
|
-
<div class="date">
|
|
211
|
-
Dec 2013 — May 2014
|
|
212
|
-
</div>
|
|
213
|
-
</div>
|
|
214
|
-
<div class="clearfix"></div>
|
|
215
|
-
|
|
216
|
-
<ul class="highlights">
|
|
217
|
-
<li>Transformed processes as interim PO for team of 6 system engineers using Lean Management methods.</li>
|
|
218
|
-
<li>Contributed to a CI/CD project, reducing the deployment time per developer per week by 40 minutes.</li>
|
|
219
|
-
<li>Migrated a huge codebase (biggest repository: ~200,000 commits, ~5 years of history) from SVN to Git to transform developer workflow.</li>
|
|
220
|
-
<li>Automated provisioning of servers to shorten time-to-production from 4 hours to around one hour.</li>
|
|
221
|
-
<li>Optimized system provisioning and patching with a package cache, achieving 96% data reduction.</li>
|
|
222
|
-
</ul>
|
|
223
|
-
</div>
|
|
224
|
-
<div class="item">
|
|
225
|
-
<div class="item-header">
|
|
226
|
-
<div class="item-header-subtitle">
|
|
227
|
-
Systems Engineer
|
|
228
|
-
</div>
|
|
229
|
-
</div>
|
|
230
|
-
<div class="item-details">
|
|
231
|
-
<div class="date">
|
|
232
|
-
Aug 2011 — Dec 2013
|
|
233
|
-
</div>
|
|
234
|
-
</div>
|
|
235
|
-
<div class="clearfix"></div>
|
|
236
|
-
|
|
237
|
-
<ul class="highlights">
|
|
238
|
-
<li>Operated Zalando's fast growing infrastructure of 90 on-premise servers, swiftly resolving issues, minimizing downtime, and ensuring high availability.</li>
|
|
239
|
-
<li>Improved the Nagios/Icinga monitoring setup, achieving 100% alerting coverage and reducing MTTD.</li>
|
|
240
|
-
<li>Implemented tools for automating system administration, significantly boosting operational efficiency.</li>
|
|
241
|
-
</ul>
|
|
242
|
-
</div>
|
|
243
|
-
<div class="item">
|
|
244
|
-
<div class="item-header">
|
|
245
|
-
<div class="item-header-title">
|
|
246
|
-
WinRAR GmbH
|
|
247
|
-
</div>
|
|
248
|
-
<div class="item-header-subtitle">
|
|
249
|
-
Software Developer
|
|
250
|
-
</div>
|
|
251
|
-
</div>
|
|
252
|
-
<div class="item-details">
|
|
253
|
-
<div class="date">
|
|
254
|
-
Jul 2010 — Aug 2011
|
|
255
|
-
</div>
|
|
256
|
-
</div>
|
|
257
|
-
<div class="clearfix"></div>
|
|
258
|
-
|
|
259
|
-
<ul class="highlights">
|
|
260
|
-
<li>Designed and developed tools encompassing contract and partner management, marketing campaign tracking, and traffic analytics, resulting in increased efficiency and streamlined processes.</li>
|
|
261
|
-
<li>Supported automated installation, configuration, monitoring and maintenance of the data center servers, ensuring optimal performance and minimizing downtime for critical applications.</li>
|
|
262
|
-
<li>Revamped the company website, significantly enhancing user experience and maintainability.</li>
|
|
263
|
-
</ul>
|
|
264
|
-
</div>
|
|
265
|
-
</section>
|
|
266
|
-
<section id="education">
|
|
267
|
-
<h2>Education</h2>
|
|
268
|
-
<div class="item">
|
|
269
|
-
<div class="item-header">
|
|
270
|
-
<div class="item-header-title">
|
|
271
|
-
IHK Berlin
|
|
272
|
-
</div>
|
|
273
|
-
<div class="item-header-subtitle">
|
|
274
|
-
Certified Instructor
|
|
275
|
-
</div>
|
|
276
|
-
</div>
|
|
277
|
-
<div class="item-details">
|
|
278
|
-
</div>
|
|
279
|
-
<div class="clearfix"></div>
|
|
280
|
-
</div>
|
|
281
|
-
<div class="item">
|
|
282
|
-
<div class="item-header">
|
|
283
|
-
<div class="item-header-title">
|
|
284
|
-
OSZIMT
|
|
285
|
-
</div>
|
|
286
|
-
<div class="item-header-subtitle">
|
|
287
|
-
Associate of Applied Science
|
|
288
|
-
</div>
|
|
289
|
-
</div>
|
|
290
|
-
<div class="item-details">
|
|
291
|
-
</div>
|
|
292
|
-
<div class="clearfix"></div>
|
|
293
|
-
</div>
|
|
294
|
-
<div class="item">
|
|
295
|
-
<div class="item-header">
|
|
296
|
-
<div class="item-header-title">
|
|
297
|
-
Humboldt University Berlin
|
|
298
|
-
</div>
|
|
299
|
-
<div class="item-header-subtitle">
|
|
300
|
-
Diploma (incomplete)
|
|
301
|
-
</div>
|
|
302
|
-
</div>
|
|
303
|
-
<div class="item-details">
|
|
304
|
-
</div>
|
|
305
|
-
<div class="clearfix"></div>
|
|
306
|
-
</div>
|
|
307
|
-
</section>
|
|
308
|
-
</body>
|
|
309
|
-
</html>
|
package/resume.letter.pdf
DELETED
|
Binary file
|
|
File without changes
|