-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1943 lines (1881 loc) · 78.5 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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"
/>
<title>Efim Shliamin</title>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/uikit@3.6.22/dist/css/uikit.min.css"
/>
<link
href="https://assets.calendly.com/assets/external/widget.css"
rel="stylesheet"
/>
<script src="https://cdn.jsdelivr.net/npm/uikit@3.6.22/dist/js/uikit.min.js"></script>
<!-- Font Awesome CSS -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"
/>
<link rel="stylesheet" href="styles.css" />
<!-- Google tag (gtag.js) -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-1G2N3K97HJ"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-1G2N3K97HJ");
</script>
<!-- Google Tag Manager -->
<script>
(function (w, d, s, l, i) {
w[l] = w[l] || [];
w[l].push({ "gtm.start": new Date().getTime(), event: "gtm.js" });
var f = d.getElementsByTagName(s)[0],
j = d.createElement(s),
dl = l != "dataLayer" ? "&l=" + l : "";
j.async = true;
j.src = "https://www.googletagmanager.com/gtm.js?id=" + i + dl;
f.parentNode.insertBefore(j, f);
})(window, document, "script", "dataLayer", "GTM-NFHPZNCC");
</script>
<!-- End Google Tag Manager -->
<script
async
src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-9260340933763892"
crossorigin="anonymous"
></script>
</head>
<body>
<!-- Google Tag Manager (noscript) -->
<noscript
><iframe
src="https://www.googletagmanager.com/ns.html?id=GTM-NFHPZNCC"
height="0"
width="0"
style="display: none; visibility: hidden"
></iframe
></noscript>
<!-- End Google Tag Manager (noscript) -->
<div class="sidebar-ad"></div>
<div id="overlay"></div>
<div class="container">
<aside class="sidebar">
<div class="profile-container">
<img
src="images/Efim1.png"
alt="Profile Picture"
class="profile-picture"
/>
<h4 class="uk-comment-title">Efim Shliamin</h4>
<div class="uk-comment-body">
<p id="degree-title-en">Computer Scientist, B.Sc.</p>
<p id="degree-title-de" style="display: none">
Informatiker, B.Sc.
</p>
<!--<p id="profession-title">Fullstack & Data Science</p>-->
</div>
<div class="mobile-icons">
<div class="icon-row">
<a href="https://medium.com/@efimshliamin"
><img
src="images/medium-3.svg"
alt="Medium Icon"
class="status-icon-mobile"
/></a>
<a href="https://www.linkedin.com/in/efimshliamin/"
><img
src="images/linkedin-3.svg"
alt="LinkedIn Icon"
class="status-icon-mobile"
/></a>
<a href="https://github.com/shliamin"
><img
src="images/square-github-2.svg"
alt="GitHub Icon"
class="status-icon-mobile"
/></a>
<a href="https://x.com/EfimShliamin"
><img
src="images/square-x-twitter.svg"
alt="X Icon"
class="status-icon-mobile"
/></a>
<a href="https://www.hackerrank.com/profile/efimshliamin"
><img
src="images/hackerrank-brands-solid.svg"
alt="HR Icon"
class="status-icon-mobile"
/></a>
<a href="https://www.udemy.com/user/efim-shliamin/"
><img
src="images/udemy-seeklogo.svg"
alt="Udemy Icon"
class="status-icon-mobile"
/></a>
</div>
</div>
</div>
<nav>
<ul>
<li>
<button
id="about-me-btn-en"
class="uk-button uk-button-default small-button"
onclick="showSection('about-me')"
>
About me
</button>
</li>
<li id="job-match-button">
<button
id="our-match-btn-en"
class="uk-button uk-button-default small-button"
onclick="showSection('our-fit')"
>
Our match (<span class="colorful-ai">AI</span>)
</button>
</li>
<li>
<button
id="my-work-btn-en"
class="uk-button uk-button-default small-button"
onclick="showSection('my-work')"
>
Projects
</button>
</li>
<li>
<button
id="contact-btn-en"
class="uk-button uk-button-default small-button"
onclick="showSection('contact')"
>
Contact
</button>
</li>
<li>
<button
id="news-btn-en"
class="uk-button uk-button-default small-button"
onclick="showSection('news')"
>
News
</button>
</li>
</ul>
</nav>
<div class="divider"></div>
<div class="status">
<div class="status-item">
<a href="https://medium.com/@efimshliamin">
<img
src="images/medium-3.svg"
alt="Medium Icon"
class="status-icon"
/>
<p id="p-title-medium-en">Read me on Medium</p>
<p id="p-title-medium-de" style="display: none">
Auf Medium lesen
</p>
</a>
</div>
<div class="status-item">
<a href="https://www.linkedin.com/in/efimshliamin/">
<img
src="images/linkedin-3.svg"
alt="LinkedIn Icon"
class="status-icon"
/>
<p id="p-title-linkedin-en">Follow me on LinkedIn</p>
<p id="p-title-linkedin-de" style="display: none">
Auf LinkedIn folgen
</p>
</a>
</div>
<div class="status-item">
<a href="https://github.com/shliamin">
<img
src="images/square-github-2.svg"
alt="GitHub Icon"
class="status-icon"
/>
<p id="p-title-github-en">Check out my GitHub</p>
<p id="p-title-github-de" style="display: none">Mein GitHub</p>
</a>
</div>
<div class="status-item">
<a href="https://x.com/EfimShliamin">
<img
src="images/square-x-twitter.svg"
alt="X Icon"
class="status-icon"
/>
<p id="p-title-x-en">Follow me on X</p>
<p id="p-title-x-de" style="display: none">Auf X folgen</p>
</a>
</div>
<div class="status-item">
<a href="https://www.hackerrank.com/profile/efimshliamin">
<img
src="images/hackerrank-brands-solid.svg"
alt="HR Icon"
class="status-icon"
/>
<p id="p-title-hr-en">Explore my HackerRank</p>
<p id="p-title-hr-de" style="display: none">Mein HackerRank</p>
</a>
</div>
<div class="status-item">
<a href="https://www.udemy.com/user/efim-shliamin/">
<img
src="images/udemy-seeklogo.svg"
alt="Udemy Icon"
class="status-icon"
/>
<p id="p-title-udemy-en">Udemy (log in required)</p>
<p id="p-title-udemy-de" style="display: none">
Udemy (Bitte anmelden)
</p>
</a>
</div>
<div class="articles-section desktop-only">
<h3 id="notion-en">Latest articles on Notion:</h3>
<h3 id="notion-de" style="display: none">
Neueste Artikel auf Notion:
</h3>
<div class="articles-list">
<div class="article-item">
<a
href="https://familiar-surf-4ec.notion.site/Python-f-r-Data-Science-Wichtige-Bibliotheken-und-praktische-Anwendungsf-lle-auf-dem-deutschen-Mark-12c6da6efd4080368bbdc4dc9edcb8b9"
target="_blank"
>🇩🇪 Python für Data Science</a
>
</div>
<div class="article-item">
<a
href="https://familiar-surf-4ec.notion.site/Migration-zu-Microservices-11a6da6efd40805ea4e6f452206b36e6"
target="_blank"
>🇩🇪 Migration zu Microservices</a
>
</div>
<div class="article-item">
<a
href="https://familiar-surf-4ec.notion.site/Java-Grundlagen-und-OOP-8c5cf3e361564b5580319c88c7e35ac2"
target="_blank"
>🇩🇪 Java Grundlagen</a
>
</div>
<div class="article-item">
<a
href="https://familiar-surf-4ec.notion.site/Spring-Boot-11cc1a5bfe1f4f56a71db9505cdc63c7"
target="_blank"
>🇩🇪 Spring Boot</a
>
</div>
<div class="article-item">
<a
href="https://familiar-surf-4ec.notion.site/Jenkins-88ec7d611b754853be5f586281ac37e9"
target="_blank"
>🇩🇪 Jenkins</a
>
</div>
<div class="article-item">
<a
href="https://familiar-surf-4ec.notion.site/React-c4a058765a0c4b4cbded6296786c43e3"
target="_blank"
>🇩🇪 React</a
>
</div>
</div>
</div>
</div>
<div id="ad-info" style="padding-top: 20px">
<p
id="ad-info-en"
style="
font-size: 12px;
font-weight: bold;
color: #777;
text-align: center;
padding-left: 10%;
padding-right: 10%;
background-color: #f2f2f2;
border-radius: 5px;
padding: 10px;
"
>
This ad helps support the functioning of this website:
</p>
<p
id="ad-info-de"
style="
font-size: 12px;
font-weight: bold;
color: #777;
text-align: center;
padding-left: 10%;
padding-right: 10%;
background-color: #f2f2f2;
border-radius: 5px;
padding: 10px;
display: none;
"
>
Diese Anzeige unterstützt den Betrieb dieser Website:
</p>
</div>
<div id="ads-1">
<script
async
src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-9260340933763892"
crossorigin="anonymous"
></script>
<ins
class="adsbygoogle"
style="display: block; background-color: transparent"
data-ad-client="ca-pub-9260340933763892"
data-ad-slot="9788072404"
data-ad-format="auto"
data-full-width-responsive="true"
></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
</div>
<!--<div style="padding-top: 10px;">
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-9260340933763892"
crossorigin="anonymous"></script>
<ins class="adsbygoogle"
style="display:block"
data-ad-format="autorelaxed"
data-ad-client="ca-pub-9260340933763892"
data-ad-slot="3349392184"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-9260340933763892"
crossorigin="anonymous"></script>
<ins class="adsbygoogle"
style="display:block"
data-ad-format="autorelaxed"
data-ad-client="ca-pub-9260340933763892"
data-ad-slot="3349392184"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
</div>-->
</aside>
<main class="content">
<div class="language-switcher btn-group">
<button
class="btn btn-secondary active"
onclick="switchLanguage('en')"
id="btn-en"
>
EN
</button>
<button
class="btn btn-secondary"
onclick="switchLanguage('de')"
id="btn-de"
>
DE
</button>
</div>
<section id="about-me" class="section">
<div id="content-en">
<p><strong>About me:</strong></p>
<p>
Hello, I am a Computer Scientist with a B.Sc. in Computer Science from the University of Applied Sciences Berlin and previous studies in Electrical Engineering and IT Security at Ruhr University Bochum. Currently working as a Software Engineer at Finanz Informatik, where I contribute to the digital transformation of Germany's savings banks (Sparkassen). Since 2019, I have been engaged in software, data, cloud, DevOps, and machine learning engineering, completing internships at Rhenus Logistics, the Data Centre of the University of Applied Sciences Berlin, participating in the Mercedes-Benz Innovation Challenge, and working for the Institute of Geographic Information Technology, alongside freelancing for various clients. I focus on solving business, scientific, and social problems through scalable and efficient IT solutions, contributing to the community through open-source projects and technical writing.
</p>
</div>
<div id="content-de" style="display: none">
<p><strong>Über mich:</strong></p>
<p>
Hallo, ich bin Informatiker mit einem B.Sc. in Angewandter Informatik von der HTW-Berlin und habe zuvor Elektrotechnik und IT-Sicherheit an der Ruhr-Universität Bochum studiert. Derzeit arbeite ich als Software-Ingenieur bei der Finanz Informatik, wo ich zur digitalen Transformation der deutschen Sparkassen beitrage. Seit 2019 bin ich im Bereich des Software-, Daten-, Cloud-, DevOps- und maschinellen Lernens Engineering tätig. Ich habe Praktika bei Rhenus Logistics, im Rechenzentrum der HTW-Berlin absolviert, am Mercedes-Benz Innovation Challenge teilgenommen und für das Institut für Geographische Informationstechnologie gearbeitet. Parallel dazu war ich als Freelancer tätig. Mein Fokus liegt auf der Lösung von geschäftlichen, wissenschaftlichen und sozialen Problemen durch IT-Lösungen. Außerdem unterstütze ich die Community durch Open-Source-Projekte und technische Beiträge.
</p>
</div>
<div style="display: flex; align-items: center">
<p
id="certificates-title-en"
style="padding-right: 20px !important; margin-bottom: 0px"
>
<strong>Certificates:</strong>
</p>
<p
id="certificates-title-de"
style="
padding-right: 20px !important;
margin-bottom: 0px;
display: none;
"
>
<strong>Zeugnisse:</strong>
</p>
<div style="display: flex; flex-wrap: wrap; gap: 5px">
<select
id="category-filter-certificates"
style="padding: 5px 10px; font-size: 16px"
>
<option value="All Categories">All Categories</option>
<option value="Udemy">Udemy</option>
<option value="HackerRank">HackerRank</option>
<option value="Testdome">Testdome</option>
<option value="Work">Work</option>
<option value="Education">Education</option>
</select>
<select
id="technology-filter-certificates"
style="padding: 5px 10px; font-size: 16px; margin-left: 0px"
>
<option value="All Technologies">All Technologies</option>
<option value="Python">Python</option>
<option value="JavaScript">JavaScript</option>
<option value="Machine Learning">Machine Learning</option>
<option value="Data Science">Data Science</option>
<option value="Java">Java</option>
<option value="Spring Boot">Spring Boot</option>
<option value="NLP">NLP</option>
<option value="Deep Learning">Deep Learning</option>
<option value="SQL">SQL</option>
<option value="React">React</option>
<option value="Node.js">Node.js</option>
</select>
</div>
</div>
<div
id="achievement-container"
style="
overflow: hidden;
padding-bottom: 20px;
padding-left: 80px;
padding-right: 10%;
"
>
<div
class="achievement-carousel"
style="
display: flex;
overflow-x: auto;
gap: 20px;
padding: 10px 10px;
scroll-behavior: smooth;
"
></div>
</div>
<p>
<strong id="prof-exp-en">Professional experience:</strong
><strong id="prof-exp-de" style="display: none"
>Berufserfahrung:</strong
>
<strong
id="prof-exp-auto-en"
style="display: none; font-size: 12px; color: #999"
>auto</strong
>
<strong
id="prof-exp-auto-de"
style="display: none; font-size: 12px; color: #999"
>auto</strong
>
</p>
<div class="timeline">
<!-- New Finanz Informatik entry -->
<div class="entry">
<span class="date" id="fi_months-en">
Today —<br/>Jan 2025<br/><span class="time_summary_2">auto</span>
</span>
<span class="date" id="fi_months-de" style="display: none">
Heute —<br/>Jan 2025<br/><span class="time_summary_2">auto</span>
</span>
<div class="entry-info">
<p style="padding-left: 40px !important" id="fi-en">
<span id="position">Software Engineer</span>
<span class="company">at Finanz Informatik</span>
</p>
<p style="padding-left: 40px !important; display: none" id="fi-de">
<span id="position">Software-Ingenieur</span>
<span class="company">bei Finanz Informatik</span>
</p>
<p style="padding-left: 40px !important; font-weight: 300; color: #777;" id="fi-desc-en">
As a Software Engineer at Finanz Informatik, I am responsible for developing and maintaining critical banking software systems. Working with Java, Spring Boot, and microservices architecture, I contribute to the digital transformation of Germany's savings banks (Sparkassen), ensuring secure and efficient financial services for millions of customers.
</p>
<p style="padding-left: 40px !important; font-weight: 300; color: #777; display: none;" id="fi-desc-de">
Als Software-Ingenieur bei der Finanz Informatik bin ich für die Entwicklung und Wartung kritischer Bankensoftwaresysteme verantwortlich. Mit Java, Spring Boot und Microservices-Architektur trage ich zur digitalen Transformation der deutschen Sparkassen bei und stelle sichere und effiziente Finanzdienstleistungen für Millionen von Kunden sicher.
</p>
</div>
</div>
<div class="entry">
<span class="date" id="today_months-en">
Today —<br />Jul 2024<br /><span class="time_summary"
>auto</span
>
</span>
<span class="date" id="today_months-de" style="display: none">
Heute —<br />Jul 2024<br /><span class="time_summary"
>auto</span
>
</span>
<div class="entry-info">
<p style="padding-left: 40px !important" id="tendex-en">
<span id="position">CTO</span>
<span class="company">at TendeX</span>
</p>
<p
style="padding-left: 40px !important; display: none"
id="tendex-de"
>
<span id="position">CTO</span>
<span class="company">bei TendeX</span>
</p>
<p
style="
padding-left: 40px !important;
font-weight: 300;
color: #777;
"
id="cto-en"
>
As CTO at TendeX, I am responsible for shaping the technical
strategy and ensuring that our SaaS platform for tender,
supply chain, and contract management aligns with our business
objectives. I design and oversee a scalable, secure
architecture, selecting technologies for front-end, back-end,
and cloud infrastructure to support the platform's growth. In
close collaboration with the CEO, I focus on data security,
regulatory compliance, and cost optimization while driving
continuous innovation to meet the evolving needs of our
clients.
</p>
<p
style="
padding-left: 40px !important;
font-weight: 300;
color: #777;
display: none;
"
id="cto-de"
>
Als CTO bei TendeX bin ich verantwortlich für die technische
Strategie und dafür, dass unsere SaaS-Plattform für
Ausschreibungs-, Lieferketten- und Vertragsmanagement mit
unseren Geschäftszielen harmoniert. Ich entwerfe und überwache
eine skalierbare, sichere Architektur und wähle die
Technologien für Frontend, Backend und Cloud-Infrastruktur, um
das Wachstum der Plattform zu unterstützen. In enger
Zusammenarbeit mit dem CEO sorge ich für Datensicherheit,
Einhaltung von Vorschriften und Kostenoptimierung und treibe
kontinuierliche Innovationen voran, um den sich ändernden
Anforderungen unserer Kunden gerecht zu werden.
</p>
</div>
</div>
<div class="entry">
<span class="date" id="three_months-en"
>Jun 2024 —<br />Mar 2024<br /><span class="time_summary"
>3 months</span
></span
>
<span class="date" id="three_months-de" style="display: none"
>Jun 2024 —<br />Mär 2024<br /><span class="time_summary"
>3 Monate</span
></span
>
<div class="entry-info">
<p style="padding-left: 40px !important" id="mercedes-en">
<span id="position">Tech Expert</span>
<span class="company">
in the Mercedes-Benz Innovation Challenge</span
>
<span id="type_of_activity">Competition</span>
</p>
<p
style="padding-left: 40px !important; display: none"
id="mercedes-de"
>
<span id="position">Tech Expert</span>
<span class="company">
im Mercedes-Benz Innovation Challenge</span
>
<span id="type_of_activity">Wettbewerb</span>
</p>
<p
style="
padding-left: 40px !important;
font-weight: 300;
color: #777;
"
id="sole-tech-exp-en"
>
As the sole technical expert in a multidisciplinary team of
five, I was selected from over 14,000 students. We developed a
solution to attract younger clients, which I managed and
explained technically, presenting it to Mercedes-Benz top
management and earning a certificate and prize.
</p>
<p
style="
padding-left: 40px !important;
font-weight: 300;
color: #777;
display: none;
"
id="sole-tech-exp-de"
>
Als einziger technischer Experte in einem interdisziplinären
Team von fünf Personen wurde ich aus über 14.000 Studierenden
ausgewählt. Wir entwickelten eine Lösung, um jüngere Kunden
anzusprechen, die ich technisch leitete und präsentierte. Die
finale Lösung wurde dem Top-Management von Mercedes-Benz
vorgestellt und brachte uns ein Zertifikat und einen Preis
ein.
</p>
</div>
</div>
<div class="entry">
<span class="date" id="two_years-en"
>Dec 2022 —<br />Oct 2020<br /><span class="time_summary">
>2 years</span
></span
>
<span class="date" id="two_years-de" style="display: none"
>Dez 2022 —<br />Okt 2020<br /><span class="time_summary"
>>2 Jahre</span
></span
>
<div class="entry-info">
<p style="padding-left: 40px !important" id="HTW-HIWI-en">
<span id="position">Software Engineer</span>
<span class="company"
>at the University of Applied Sciences Berlin</span
>
<span id="type_of_activity">Student Assistent</span>
</p>
<p
style="padding-left: 40px !important; display: none"
id="HTW-HIWI-de"
>
<span id="position">Software-Ingenieur</span>
<span class="company"
>an der Hochschule für Technik und Wirtschaft Berlin</span
>
<span id="type_of_activity">SHK</span>
</p>
<p
style="
padding-left: 40px !important;
font-weight: 300;
color: #777;
"
id="software-htw-en"
>
Worked as a software engineer at HTW Berlin, helping develop
and maintain a university portal for 14,000 students and
contributing to health informatics projects. This role
enhanced my software skills and deepened my data science
knowledge, culminating in a bachelor's thesis on the topic.
</p>
<p
style="
padding-left: 40px !important;
font-weight: 300;
color: #777;
display: none;
"
id="software-htw-de"
>
Arbeitete als Softwareentwickler an der HTW Berlin und half
beim Entwickeln und Warten eines Universitätsportals für
14.000 Studierende sowie bei Gesundheitsinformatik-Projekten.
Diese Rolle verbesserte meine Softwarekenntnisse und vertiefte
mein Wissen in Data Science, was in einer Bachelorarbeit zu
diesem Thema gipfelte.
</p>
</div>
</div>
<div class="entry">
<span class="date" id="three_months-2-en"
>May 2021 —<br />Mar 2021<br /><span class="time_summary"
>3 months</span
></span
>
<span class="date" id="three_months-2-de" style="display: none"
>Mai 2021 —<br />Mär 2021<br /><span class="time_summary"
>3 Monate</span
></span
>
<div class="entry-info">
<p id="htw-internship-en" style="padding-left: 40px !important">
<span id="position"> Fullstack Engineer</span>
<span class="company">
at the University of Applied Sciences Berlin Data
Centre</span
>
<span id="type_of_activity">Internship</span>
</p>
<p
id="htw-internship-de"
style="padding-left: 40px !important; display: none"
>
<span id="position">Fullstack-Entwickler</span>
<span class="company">am Rechenzentrum der HTW Berlin</span>
<span id="type_of_activity">Praktikum</span>
</p>
<p
style="
padding-left: 40px !important;
font-weight: 300;
color: #777;
"
id="htw-data-centre-fullstack-en"
>
Contributed as a Fullstack Developer in the development team
at the University of Applied Sciences Berlin Data Centre,
where we built a university web portal used by 14,000
students.
</p>
<p
style="
padding-left: 40px !important;
font-weight: 300;
color: #777;
display: none;
"
id="htw-data-centre-fullstack-de"
>
Mitgewirkt als Fullstack-Entwickler im Entwicklungsteam des
Rechenzentrums der Hochschule für Technik und Wirtschaft
Berlin, wo wir ein Webportal für 14.000 Studierende
entwickelten.
</p>
</div>
</div>
<div class="entry">
<span class="date" id="six_months-en"
>Dec 2019 —<br />Jul 2019<br /><span class="time_summary"
>6 months</span
></span
>
<span class="date" id="six_months-de" style="display: none"
>Dez 2019 —<br />Jul 2019<br /><span class="time_summary"
>6 Monate</span
></span
>
<div class="entry-info">
<p id="IGIT-1-en" style="padding-left: 40px !important">
<span id="position">Fullstack Engineer</span>
<span class="company">
at the Institute of Geographic Information Technology in
St.Pet.</span
>
<span id="type_of_activity">Internship</span>
</p>
<p
id="IGIT-1-de"
style="padding-left: 40px !important; display: none"
>
<span id="position">Fullstack-Entwickler</span>
<span class="company"
>am Institute of Geographic Information Technology in St.
Pet.</span
>
<span id="type_of_activity">Praktikum</span>
</p>
<p
style="
padding-left: 40px !important;
font-weight: 300;
color: #777;
"
id="IGIT-en"
>
Supported the development of proprietary technologies as a
Fullstack Developer, reducing dependency on foreign software
licenses by handling both frontend and backend integration.
</p>
<p
style="
padding-left: 40px !important;
font-weight: 300;
color: #777;
display: none;
"
id="IGIT-de"
>
Unterstützte die Entwicklung proprietärer Technologien als
Fullstack-Entwickler, reduzierte die Abhängigkeit von
ausländischen Softwarelizenzen durch die Integration von
Frontend und Backend.
</p>
</div>
</div>
<div class="entry">
<span class="date" id="six_months-2-en"
>Mar 2019 —<br />Sep 2018<br /><span class="time_summary"
>6 months</span
></span
>
<span class="date" id="six_months-2-de" style="display: none"
>Mär 2019 —<br />Sep 2018<br /><span class="time_summary"
>6 Monate</span
></span
>
<div class="entry-info">
<p id="rhenus-en" style="padding-left: 40px !important">
<span id="position">IT-Specialist</span>
<span class="company"> at Rhenus Logistics in Duisburg</span>
<span id="type_of_activity">Internship</span>
</p>
<p
id="rhenus-de"
style="padding-left: 40px !important; display: none"
>
<span id="position">IT-Spezialist</span>
<span class="company">bei Rhenus Logistics in Duisburg</span>
<span id="type_of_activity">Praktikum</span>
</p>
<p
style="
padding-left: 40px !important;
font-weight: 300;
color: #777;
"
id="RMS-en"
>
Assisted Rhenus Logistics in passing an audit by creating
technical documentation on Data Protection Policies and Data
Security Management, earning a recommendation letter from
Managing Director Ralf Uebachs.
</p>
<p
style="
padding-left: 40px !important;
font-weight: 300;
color: #777;
display: none;
"
id="RMS-de"
>
Unterstützte Rhenus Logistics bei der bestandenen Prüfung
eines Audits durch die Erstellung technischer Dokumentationen
zu Datenschutzrichtlinien und
Datenmanagement-Sicherheitsverfahren und erhielt ein
Empfehlungsschreiben vom Geschäftsführer Ralf Uebachs.
</p>
</div>
</div>
</div>
<p>
<strong id="edu-en">Education:</strong
><strong id="edu-de" style="display: none">Ausbildung:</strong>
</p>
<div class="timeline">
<div class="entry">
<span class="date" id="four_years-en"
>Mar 2024 —<br />Mar 2020<br /><span class="time_summary"
>4 years</span
></span
>
<span class="date" id="four_years-de" style="display: none"
>Mär 2024 —<br />Mär 2020<br /><span class="time_summary"
>4 Jahre</span
></span
>
<div class="entry-info">
<p
id="cs-en"
style="padding-left: 40px !important; padding-bottom: 5px"
>
<span id="position">Applied Computer Science</span>
<span id="role">
at the University of Applied Sciences Berlin</span
><span id="degree_type">Bachelor of Science</span>
</p>
<p
id="cs-de"
style="
padding-left: 40px !important;
padding-bottom: 5px;
display: none;
"
>
<span id="position">Angewandte Informatik</span>
<span id="role">an der HTW Berlin</span>
<span id="degree_type">Bachelor of Science</span>
</p>
<p
style="
padding-left: 40px !important;
font-weight: 300;
color: #777;
"
id="htw-edu-en"
>
Bachelor's thesis graded at 90%, recognized as top work and
archived in the university library. The software developed for
the thesis is used by other students for their dissertations.
</p>
<p
style="
padding-left: 40px !important;
font-weight: 300;
color: #777;
display: none;
"
id="htw-edu-de"
>
Bachelorarbeit mit 1.7 bewertet, als herausragende Arbeit
anerkannt und in der Universitätsbibliothek archiviert. Die
für die Arbeit entwickelte Software wird von anderen
Studierenden für ihre Abschlussarbeiten verwendet.
</p>
</div>
</div>
<div class="entry">
<span class="date" id="three_months_3-en"
>Jun 2019 —<br />Apr 2019<br /><span class="time_summary"
>3 months</span
></span
>
<span class="date" id="three_months_3-de" style="display: none"
>Jun 2019 —<br />Apr 2019<br /><span class="time_summary"
>3 Monate</span
></span
>
<div class="entry-info">
<p id="lewagon-en" style="padding-left: 40px !important">
<span id="role">Coding Boot Camp Le Wagon Berlin</span
><span id="degree_type">Certificate of Completion</span>
</p>
<p
id="lewagon-de"
style="padding-left: 40px !important; display: none"
>
<span id="role">Coding Bootcamp Le Wagon Berlin</span>
<span id="degree_type">Abschlusszertifikat</span>
</p>
<p
style="
padding-left: 40px !important;
font-weight: 300;
color: #777;