-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1005 lines (1001 loc) · 77.4 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, shrink-to-fit=no">
<!-- Main meta tags -->
<meta name="description" content="Curriculum-vitae of Sebastian Poetter">
<meta name="keywords" content="Curriculum-vitae, Sebastian Poetter, computer scientist, Homepage, Sebastian Pötter, programming, 3d, full stack developing">
<meta name="author" content="Sebastian Poetter">
<meta name="summary" content="Offering full stack developing for individuals or companies.">
<link rel="shortcut icon" type="image/webp" href="src/img/logo.webp">
<link rel="fluid-icon" type="image/webp" href="src/img/logo.webp" title="Curriculum-vitae of Sebastian Poetter">
<link rel="icon" type="image/webp" href="src/img/logo.webp" title="Curriculum-vitae of Sebastian Poetter">
<link rel="apple-touch-icon" type="image/webp" href="src/img/logo.webp" title="Curriculum-vitae of Sebastian Poetter">
<meta name="color-scheme" content="dark light">
<!-- PWA -->
<link rel="manifest" href="manifest.webmanifest">
<meta name="theme-color" content="#2e6d6a">
<!-- Schema.org -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebSite",
"url": "https://poetter-sebastian.github.io/",
"name": "Personal website",
"author": {
"@type": "Person",
"name": "Sebastian Pötter"
}
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Corporation",
"name": "Full stack developer Sebastian Poetter",
"description": "Offering full stack developing for individuals or companies.",
"email": "poetter-%73%65%62%61%73%74%69%61%6E%40%67%6D%78%2E%64%65"
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Person",
"name": "Sebastian Pötter",
"address": {
"@type": "PostalAddress",
"addressCountry": "DE",
"addressLocality": "Leipzig",
"addressRegion": "Saxony"
},
"email": "sebastian.poetter%2D%64%65%76%40%67%6D%78%2E%64%65%20",
"jobTitle": "Full stack developer",
"description": "I'm an master graduated Fullstack developer.",
"contactPoint": [
{
"@type": "ContactPoint",
"contactType": "LinkedIn",
"identifier": "sebastian-p-17a94721b",
"image": "https://media-exp1.licdn.com/dms/image/D5635AQEGj2-_6_3a-g/profile-framedphoto-shrink_200_200/0/1630495938299?e=1632859200&v=beta&t=8iQEcRj69BJ6ANimSo_uV4wUbd1eis8nzHh6W-ilcro",
"url": "https://www.linkedin.com/in/sebastian-p-17a94721b/"
},
{
"@type": "ContactPoint",
"contactType": "GitHub",
"identifier": "poetter-sebastian",
"image": "https://avatars.githubusercontent.com/u/32681913?v=4",
"url": "https://github.com/poetter-sebastian"
},
{
"@type": "ContactPoint",
"contactType": "ItchIO",
"identifier": "poetter-sebastian",
"image": "https://avatars.githubusercontent.com/u/32681913?v=4",
"url": "https://poetter-sebastian.itch.io/"
},
{
"@type": "ContactPoint",
"contactType": "GitHub",
"identifier": "poetter-sebastian",
"image": "https://avatars.githubusercontent.com/u/32681913?v=4",
"url": "https://github.com/poetter-sebastian"
}
],
"url": "https://poetter-sebastian.github.io/",
"hasCredential": [
{
"@type": "EducationalOccupationalCredential",
"credentialCategory": "Secondary school diploma",
"educationalLevel": "Secondary education",
"dateCreated": "2015",
"about": {
"@type": "EducationalOccupationalProgram",
"name": "Realschule - Realschulabschluss"
},
"recognizedBy": {
"@type": "MiddleSchool",
"name": "46. Oberschule Dresden",
"sameAs": "https://www.46-oberschule-dresden.de/"
}
},
{
"@type": "EducationalOccupationalCredential",
"credentialCategory": "Abitur",
"educationalLevel": "General matriculation standard",
"dateCreated": "2017",
"about": {
"@type": "EducationalOccupationalProgram",
"name": "Abitur"
},
"recognizedBy": {
"@type": "HighSchool",
"name": "Berufliches Schulzentrum für Technik und Wirtschaft Dresden",
"sameAs": "https://www.bszet.de/"
}
},
{
"@type": "EducationalOccupationalCredential",
"credentialCategory": "degree",
"educationalLevel": "Bachelors of Science",
"dateCreated": "2020-05",
"about": {
"@type": "EducationalOccupationalProgram",
"name": "Computer Engineering"
},
"recognizedBy": {
"@type": "CollegeOrUniversity",
"name": "HTWK Leipzig",
"sameAs": "https://www.htwk-leipzig.de/"
}
},
{
"@type": "EducationalOccupationalCredential",
"credentialCategory": "degree",
"educationalLevel": "Master of Science",
"dateCreated": "2023-07",
"about": {
"@type": "EducationalOccupationalProgram",
"name": "Computer Engineering"
},
"recognizedBy": {
"@type": "CollegeOrUniversity",
"name": "HTWK Leipzig",
"sameAs": "https://www.htwk-leipzig.de/"
}
}
],
"alumniOf": [
{
"@type": "Organization",
"name": "Profesco",
"sameAs": "https://www.profesco.de/",
"employee": {
"@type": "Person",
"hasOccupation": {
"@type": "EmployeeRole",
"roleName": "Web developer",
"startDate": "2019-01",
"endDate": "2021-08"
}
}
},
{
"@type": "Organization",
"name": "Profesco",
"sameAs": "https://www.profesco.de/",
"employee": {
"@type": "Person",
"hasOccupation": {
"@type": "EmployeeRole",
"roleName": "Process digitization manager / web developer",
"startDate": "2019-01",
"endDate": "2023-12"
}
}
},
{
"@type": "Organization",
"name": "LeFx",
"sameAs": "https://www.lefx.de/",
"employee": {
"@type": "Person",
"hasOccupation": {
"@type": "EmployeeRole",
"roleName": "Web developer",
"startDate": "2020-01",
"endDate": "2021-01"
}
}
},
{
"@type": "Organization",
"name": "EB Gesundheitsstudio GmbH",
"sameAs": "https://www.aktiv-oase.de/",
"employee": {
"@type": "Person",
"hasOccupation": {
"@type": "EmployeeRole",
"roleName": "Web developer",
"startDate": "2021-05",
"endDate": "2022-06"
}
}
},
{
"@type": "Organization",
"name": "Games & XR Mitteldeutschland e.V.",
"sameAs": "https://www.games-innovation-award-saxony.de",
"employee": {
"@type": "Person",
"hasOccupation": {
"@type": "EmployeeRole",
"roleName": "Web developer",
"startDate": "2021-01",
"endDate": "2022-01"
}
}
},
{
"@type": "Organization",
"name": "Sanitätshaus Rosenau GmbH",
"sameAs": "https://san-rosenau.de/Start.html",
"employee": {
"@type": "Person",
"hasOccupation": {
"@type": "EmployeeRole",
"roleName": "Web developer",
"startDate": "2021-01",
"endDate": "2021-12"
}
}
},
{
"@type": "Organization",
"name": "Ovrlab GmbH",
"sameAs": "https://ovrlab.de/",
"employee": {
"@type": "Person",
"hasOccupation": {
"@type": "EmployeeRole",
"roleName": "Web developer",
"startDate": "2022-01",
"endDate": "2023-07"
}
}
},
{
"@type": "Organization",
"name": "VrBits GmbH",
"sameAs": "https://www.vrbits.de/",
"employee": {
"@type": "Person",
"hasOccupation": {
"@type": "EmployeeRole",
"roleName": "Web developer",
"startDate": "2022-01",
"endDate": "2022-03"
}
}
},
{
"@type": "Organization",
"name": "LeFx GmbH",
"sameAs": "https://www.lefx.de/",
"employee": {
"@type": "Person",
"hasOccupation": {
"@type": "EmployeeRole",
"roleName": "Web developer",
"startDate": "2023-08",
"endDate": "2023-09"
}
}
},
{
"@type": "Organization",
"name": "HotwireVR",
"sameAs": "https://www.hotwirevr.com/",
"employee": {
"@type": "Person",
"hasOccupation": {
"@type": "EmployeeRole",
"roleName": "Web developer",
"startDate": "2024-01",
"endDate": "2024-03"
}
}
},
{
"@type": "Organization",
"name": "SaxonQ GmbH",
"sameAs": "https://www.saxonq.com/",
"employee": {
"@type": "Person",
"hasOccupation": {
"@type": "EmployeeRole",
"roleName": "Web developer",
"startDate": "2024-07",
"endDate": "2024-09"
}
}
},
{
"@type": "Organization",
"name": "Mindport GmbH",
"sameAs": "https://www.mindport.co/",
"employee": {
"@type": "Person",
"hasOccupation": {
"@type": "EmployeeRole",
"roleName": "Software developer",
"startDate": "2024-09",
"endDate": "2025-12"
}
}
}
]
}
</script>
<!-- Schema.org markup for Google+ -->
<meta itemscope itemprop="name" content="Sebastian Pötter">
<meta itemscope itemprop="description" content="Offering full stack developing for individuals or companies.">
<meta itemscope itemprop="image" content="https://poetter-sebastian.github.io/src/img/logo.webp">
<!-- Social media -->
<meta property="og:title" content="Curriculum-vitae of Sebastian Poetter">
<meta property="og:type" content="website">
<meta property="og:description" content="Sebastian Poetter - Offering full stack developing for individuals or companies.">
<meta property="og:image" content="https://poetter-sebastian.github.io/src/imgpai/logo.webp">
<meta property="og:url" content="https://poetter-sebastian.github.io/">
<meta property="og:site_name" content="Curriculum-vitae of Sebastian Poetter">
<meta property="og:locale" content="de_de">
<meta property="og:locale:alternate" content="en_US" />
<meta property="og:locale:alternate" content="en_GB" />
<meta property="og:locale:alternate" content="fr_FR" />
<meta property="article:published_time" content="2020-10-17T010:10:10+01:00">
<meta property="article:modified_time" content="2024-09-07T10:10:10+01:00">
<meta property="article:section" content="Article Section">
<meta property="article:tag" content="Homepage, Sebastian Pötter, programming, 3d, full stack developing">
<!-- Twitter NOT X -->
<meta name="twitter:title" content="Curriculum-vitae of Sebastian Poetter">
<meta name="twitter:description" content="Offering full stack developing for individuals or companies.">
<meta name="twitter:image" content="https://poetter-sebastian.github.io/src/img/logo.webp">
<meta name="twitter:card" content="summary_image">
<title data-i18n="page-title">Curriculum-vitae of Sebastian Poetter</title>
<!-- Mastodon -->
<meta name="fediverse:creator" content="@[email protected]" />
<!-- fast js -->
<script src="https://code.jquery.com/jquery-3.7.1.slim.min.js"
integrity="sha256-kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8=" crossorigin="anonymous"></script>
<script src="src/js/app.min.js"></script>
<!-- fast css -->
<link rel="stylesheet" href="src/css/style.min.css">
<script>
let bl = (typeof window.navigator.language === undefined) ? 'en' : window.navigator.language;
</script>
<!-- no js -->
<noscript>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
</noscript>
</head>
<body>
<div class="container-fluid">
<div class="row">
<div id="leftSide" class="col-md-4 primary-bg p-0 m-0">
<div class="lang-select d-flex align-items-center" role="navigation">
<a href="#" onclick="changeLang('de')"><img src="src/img/de.webp" alt="DE" title="Deutsch" role="link"></a>
<a href="#" onclick="changeLang('en')"><img src="src/img/en.webp" alt="EN" title="English" role="link"></a>
<a href="#" onclick="changeLang('fr')"><img src="src/img/fr.webp" alt="FR" title="Français" role="link"></a>
<i class="fas fa-sun ms-2"></i>
<div class="form-check form-check-inline form-switch ms-2 me-1">
<label class="form-check-label" for="darkMode">
<input class="form-check-input" type="checkbox" role="switch" id="darkMode" onchange="toggleMode()" aria-label='Dark/Light-mode input'>
<i class="fas fa-moon mt-1"></i>
</label>
</div>
</div>
<div class="mx-auto mt-5 primary-text text-center mb-md-0 mb-sm-4">
<img src="src/img/avatar.webp" title="Sebastian P. - FULL STACK DEVELOPER" alt="picture from www.w3schools.com " class="rounded-circle image">
<div class="mt-4">
<h1 data-i18n="owner-name" class="text-uppercase">Sebastian Poetter</h1>
</div>
<div class="mt-4 primary-dark-bg p-2 d-flex align-items-center justify-content-center">
<i class="fas fa-layer-group me-2"></i>
<h2 data-i18n="owner-job-name" class="text-uppercase font-italic">Full stack developer</h2>
<i class="fas fa-laptop-code ms-2"></i>
</div>
<div class="mt-4 mb-4">
<h2 data-i18n="contact-title" class="text-uppercase font-weight-bold">Contact</h2>
</div>
<div id="contact">
<div class="row g-0">
<div class="col-md-3 col-sm-6 col-2 primary-dark-bg"><i class="fas fa-envelope"></i></div>
<div class="col-md-9 col-sm-6 col-10" data-i18n="contact-email">
<span class="d-none"><a href="mailto:[email protected]"></a>[email protected]</span>
<a href="mailto:seb-poet%74%65%72%40%67%6D%78%2E%64%65">Send me a mail</a>
</div>
</div>
<div class="row g-0">
<div class="col-md-3 col-sm-6 col-2 primary-dark-bg"><i class="fab fa-github"></i></div>
<div class="col-md-9 col-sm-6 col-10"><a data-i18n="contact-github" href="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/poetter-sebastian" target="_blank" rel="noreferrer">My Github page</a></div>
</div>
<div class="row g-0">
<div class="col-md-3 col-sm-6 col-2 primary-dark-bg"><i class="fab fa-linkedin-in"></i></div>
<div class="col-md-9 col-sm-6 col-10"><a data-i18n="contact-linkedin" href="https://www.linkedin.com/in/sebastian-p-17a94721b" target="_blank" rel="noreferrer">Find me on LinkedIn</a></div>
</div>
<div class="row g-0">
<div class="col-md-3 col-sm-6 col-2 primary-dark-bg"><i class="fab fa-mastodon"></i></div>
<div class="col-md-9 col-sm-6 col-10"><a data-i18n="contact-mastodon" href="https://social.tchncs.de/@Seb" target="_blank" rel="me">Tell me a joke on Mastodon</a></div>
</div>
<div class="row g-0">
<div class="col-md-3 col-sm-6 col-2 primary-dark-bg"><i class="fab fa-itch-io"></i></div>
<div class="col-md-9 col-sm-6 col-10"><a data-i18n="contact-itchio" href="https://poetter-sebastian.itch.io/" target="_blank" rel="noreferrer">Look on my Itch.io page</a></div>
</div>
<div class="row g-0">
<div class="col-md-3 col-sm-6 col-2 primary-dark-bg"><i class="fas fa-globe"></i></div>
<div class="col-md-9 col-sm-6 col-10"><a href="https://poetter-sebastian.github.io/">Poetter-Sebastian.Github.io</a></div>
</div>
</div>
<div class="mt-4 mb-4">
<h2 class="text-uppercase font-weight-bold" data-i18n="skills-title">Skills</h2>
</div>
<div id="skills" class="row">
<div class="col-12 col-sm-6 col-md-12 col-lg-6">
<i class="fas fa-keyboard"></i> <a href="https://learn.microsoft.com/cpp" target="_blank" rel="noreferrer">C++ (C)</a>, <a href="https://learn.microsoft.com/dotnet/csharp" target="_blank" rel="noreferrer">C# (.NETcore)</a>, <a href="https://openjdk.org" target="_blank" rel="noreferrer">Java 20</a>, <a href="https://www.python.org" target="_blank" rel="noreferrer">Python 3</a>, <a href="https://www.haskell.org" target="_blank" rel="noreferrer">Haskell</a>, <a href="https://go.dev" target="_blank" rel="noreferrer">Go 1.2</a>, <a href="https://www.php.net" target="_blank" rel="noreferrer">PHP 8.3</a>, SQL, NoSQL, <a href="https://www.rust-lang.org" target="_blank" rel="noreferrer">Rust</a>,
</div>
<div class="col-12 col-sm-6 col-md-12 col-lg-6">
<i class="fab fa-firefox-browser"></i> HTML 5, CSS 3, <a href="https://sass-lang.com" target="_blank" rel="noreferrer">SASS</a>, <a href="https://www.typescriptlang.org" target="_blank" rel="noreferrer">Typescript</a>, <a href="https://jquery.com" target="_blank" rel="noreferrer">Jquery 3.6</a>, <a href="https://getbootstrap.com" target="_blank" rel="noreferrer">Bootstrap 5</a>, <a href="https://webpack.js.org" target="_blank" rel="noreferrer">Webpack</a>, <a href="https://developer.mozilla.org/en-US/docs/Glossary/SEO" target="_blank" rel="noreferrer">SEO</a>, <a href="https://developer.mozilla.org/en-US/docs/Web/Performance" target="_blank" rel="noreferrer">WPO</a>
</div>
<div class="col-12 col-sm-6 col-md-12 col-lg-6">
<i class="fas fa-paint-brush"></i> <span data-i18n="skills-gfx">Image editing e.g. with</span> <a href="https://www.gimp.org" target="_blank" rel="noreferrer">GIMP</a>, <a href="https://inkscape.org" target="_blank" rel="noreferrer">Inkscape</a>, <a href="https://www.adobe.com/products/photoshop.html" target="_blank" rel="noreferrer">Photoshop</a>
</div>
<div class="col-12 col-sm-6 col-md-12 col-lg-6">
<i class="fas fa-film"></i> <span data-i18n="skills-3d">Animations e.g. with</span> <a href="https://www.adobe.com/products/aftereffects.html" target="_blank" rel="noreferrer">After Effects</a>, <a href="https://www.vegascreativesoftware.com/int/vegas-pro" target="_blank" rel="noreferrer">Vegas Pro</a>, <a href="https://www.blender.org" target="_blank" rel="noreferrer">Blender</a>
</div>
<div class="col-12 col-sm-6 col-md-12 col-lg-6">
<i class="fas fa-file-alt"></i> <span data-i18n="skills-web">Knowledge of </span><a href="https://wordpress.com" target="_blank" rel="noreferrer">WordPress</a> (<a href="https://wpbakery.com" target="_blank" rel="noreferrer">WP-Bakery</a>, <a href="https://elementor.com" target="_blank" rel="noreferrer">Elementor</a>), <a href="https://cakephp.org" target="_blank" rel="noreferrer">Cakephp 4</a>, <a href="https://nodejs.org" target="_blank" rel="noreferrer">Node.js</a>, <a href="https://angular.io" target="_blank" rel="noreferrer">Angular</a>
</div>
<div class="col-12 col-sm-6 col-md-12 col-lg-6">
<i class="fas fa-users"></i> <span data-i18n="skills-team">Team leading and project organisation</span>, <a href="https://www.scrum.org/resources/what-is-scrum" target="_blank" rel="noreferrer">SCRUM</a>, Kanban
</div>
<div class="col-12 col-sm-6 col-md-12 col-lg-6">
<i class="fas fa-cog"></i> <span data-i18n="skills-circuit">Knowledge of electrical engineering e.g. with <a href="https://www.arduino.cc" target="_blank" rel="noreferrer">Arduino</a> and <a href="https://www.raspberrypi.org" target="_blank" rel="noreferrer">Raspberry Pi</a></span>
</div>
<div class="col-12 col-sm-6 col-md-12 col-lg-6">
<i class="fab fa-ubuntu"></i> Windows 7-11, Linux (<a href="https://linuxmint.com" target="_blank" rel="noreferrer">Linuxmint</a>, <a href="https://ubuntu.com/" target="_blank" rel="noreferrer">Ubuntu</a>, <a href="https://www.raspberrypi.com/software/" target="_blank" rel="noreferrer">Raspberry Pi OS</a>)
</div>
<div class="col-12 col-sm-6 col-md-12 col-lg-6">
<i class="fab fa-unity"></i> <a href="https://unity.com" target="_blank" rel="noreferrer">Unity 2022</a>, <a href="https://www.unrealengine.com" target="_blank" rel="noreferrer">Unreal-Engine 5</a>, <a href="https://godotengine.org" target="_blank" rel="noreferrer">Godot-Engine 4</a>
</div>
<div class="col-12 col-sm-6 col-md-12 col-lg-6">
<i class="fas fa-users-cog me-1"></i> <a href="https://git-scm.com" target="_blank" rel="noreferrer">Git</a>, <a href="https://www.atlassian.com/software/jira" target="_blank" rel="noreferrer">Jira</a>, <a href="https://nvie.com/posts/a-successful-git-branching-model" target="_blank" rel="noreferrer">Git-Flow</a>, <a href="https://docs.gitlab.com/ee/topics/gitlab_flow.html" target="_blank" rel="noreferrer">Gitlab-Flow</a>, <a href="https://www.jetbrains.com/youtrack" target="_blank" rel="noreferrer">YouTrack</a>, <a href="https://trello.com/" target="_blank" rel="noreferrer">Trello</a>
</div>
<div class="col-12 col-sm-6 col-md-12 col-lg-6">
<i class="fas fa-project-diagram"></i> Machine learning, Transfer learning, <a href="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/ultralytics/ultralytics" target="_blank" rel="noreferrer">YoloV8</a>, <a href="https://stablediffusionweb.com/StableDiffusionXL" target="_blank" rel="noreferrer">Stable Diffusion</a>, <a href="https://pytorch.org" target="_blank" rel="noreferrer">Pytorch</a>, <a href="https://learn.microsoft.com/dotnet/machine-learning/" target="_blank" rel="noreferrer">ML.NET</a>
</div>
<div class="col-12 col-sm-6 col-md-12 col-lg-6">
<i class="fas fa-server"></i> <a href="https://www.docker.com" target="_blank" rel="noreferrer">Docker</a>, <a href="https://www.portainer.io" target="_blank" rel="noreferrer">Portainer</a>, <a href="https://kubernetes.io" target="_blank" rel="noreferrer">Kubernetes</a>, <a href="https://docs.github.com/en/actions" target="_blank" rel="noreferrer">Github CI/CD - Actions</a>, <a href="https://docs.gitlab.com/ee/ci/" target="_blank" rel="noreferrer">Gitlab CI/CD</a>
</div>
</div>
<div class="">
<div class="mt-4 mb-4">
<h2 data-i18n="projects-title" class="text-uppercase font-weight-bold text-center">Projects</h2>
</div>
<div id="projects">
<div class="row g-0">
<div class="col-xl-4 col-lg-3 col-sm-3 col-2 text-end"><i class="fas fa-fan"></i></div>
<div class="col-xl-8 col-lg-9 col-sm-9 col-10 text-start primary-dark-bg">
<a href="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/poetter-sebastian/pi-fan-controll"><span class="project" data-i18n="project-rasp-name">Raspberry Pi fan control</span></a>
</div>
</div>
<div class="row g-0">
<div class="col-xl-4 col-lg-3 col-sm-3 col-2 text-end"><i class="fas fa-mobile-alt"></i></div>
<div class="col-xl-8 col-lg-9 col-sm-9 col-10 text-start primary-dark-bg">
<a href="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/poetter-sebastian/Notes"><span class="project" data-i18n="project-note-name">Notes App (PWA)</span></a>
</div>
</div>
<div class="row g-0">
<div class="col-xl-4 col-lg-3 col-sm-3 col-2 text-end"><i class="fas fa-list-ol"></i></div>
<div class="col-xl-8 col-lg-9 col-sm-9 col-10 text-start primary-dark-bg">
<a href="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/poetter-sebastian/concurrent-priority-list"><span class="project" data-i18n="project-priority-name">Concurrent priority list</span></a>
</div>
</div>
<div class="row g-0">
<div class="col-xl-4 col-lg-3 col-sm-3 col-2 text-end"><i class="fas fa-cloud-sun"></i></div>
<div class="col-xl-8 col-lg-9 col-sm-9 col-10 text-start primary-dark-bg">
<a href="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/poetter-sebastian/solar-weatherstation"><span class="project" data-i18n="project-weather-name">Wetterstation (IoT)</span></a>
</div>
</div>
<div class="row g-0">
<div class="col-xl-4 col-lg-3 col-sm-3 col-2 text-end"><i class="fas fa-robot"></i></div>
<div class="col-xl-8 col-lg-9 col-sm-9 col-10 text-start primary-dark-bg">
<a href="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/poetter-sebastian/TeamFortress2-YoloV5"><span class="project" data-i18n="project-yolo-name">YoloV5 Neural network</span></a>
</div>
</div>
<div class="row g-0">
<div class="col-xl-4 col-lg-3 col-sm-3 col-2 text-end"><i class="fas fa-satellite"></i></div>
<div class="col-xl-8 col-lg-9 col-sm-9 col-10 text-start primary-dark-bg">
<a href="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/poetter-sebastian/WorldSatelite"><span class="project" data-i18n="project-sat-name">Satellite movement visualisation</span></a>
</div>
</div>
<div class="row g-0">
<div class="col-xl-4 col-lg-3 col-sm-3 col-2 text-end"><i class="far fa-calendar-alt"></i></div>
<div class="col-xl-8 col-lg-9 col-sm-9 col-10 text-start primary-dark-bg">
<a href="https://gitlab.imn.htwk-leipzig.de/spoetter/bachelor-task"><span class="project" data-i18n="project-time-name">Timetable creator</span></a>
</div>
</div>
<div class="row g-0">
<div class="col-xl-4 col-lg-3 col-sm-3 col-2 text-end"><i class="fas fa-leaf"></i></div>
<div class="col-xl-8 col-lg-9 col-sm-9 col-10 text-start primary-dark-bg">
<a href="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/poetter-sebastian/Simulation"><span class="project" data-i18n="project-simulation-name">Simulation of an ecosystem</span></a>
</div>
</div>
</div>
</div>
<div class="mt-4 mb-4">
<h2 class="text-uppercase font-weight-bold">Services</h2>
</div>
<div id="services">
<div class="row g-0">
<div class="col-xxl-8 col-sm-9 col-10 text-end pe-0 primary-dark-bg">
<span data-i18n="services-web">SEO and responsive optimized web-development</span>
</div>
<div class="col-xl-2 col-lg-3 col-2 text-start primary-dark-bg"><i class="fas fa-pager"></i></div>
</div>
<div class="row g-0">
<div class="col-xxl-8 col-sm-9 col-10 text-end pe-0 primary-dark-bg">
<span data-i18n="services-dev">Server and client development</span>
</div>
<div class="col-xl-2 col-lg-3 col-2 text-start primary-dark-bg"><i class="fas fa-server"></i></div>
</div>
<div class="row g-0">
<div class="col-xxl-8 col-sm-9 col-10 text-end pe-0 primary-dark-bg">
<span data-i18n="services-team">Team leading and team analytics</span>
</div>
<div class="col-xl-2 col-lg-3 col-2 text-start primary-dark-bg"><i class="fas fa-user-friends"></i></div>
</div>
<div class="row g-0">
<div class="col-xxl-8 col-sm-9 col-10 text-end pe-0 primary-dark-bg">
<span data-i18n="services-digi">Digitization of your business processes</span>
</div>
<div class="col-xl-2 col-lg-3 col-2 text-start primary-dark-bg"><i class="fas fa-industry"></i></div>
</div>
</div>
<div class="mt-4 mb-4">
<h2 class="text-uppercase font-weight-bold" data-i18n="hobbies-title">Hobbies</h2>
</div>
<div class="ms-sm-3 text-start mb-4">
<div class="row g-0 hobbies">
<div class="col-md-6 col-sm-4 col-12 ps-sm-0 ps-5">
<i class="p-3 primary-dark-bg fas fa-tv"></i> <span data-i18n="hobbies-programming">Programming</span>
</div>
<div class="col-md-6 col-sm-4 col-12 ps-sm-0 ps-5">
<i class="p-3 primary-dark-bg fas fa-swimmer"></i> <span data-i18n="hobbies-swimming">Swimming</span>
</div>
<div class="col-md-6 col-sm-4 col-12 ps-sm-0 ps-5">
<i class="p-3-5 primary-dark-bg fas fa-hiking"></i> <span data-i18n="hobbies-hiking">Hiking</span>
</div>
<div class="col-md-6 col-sm-4 col-12 ps-sm-0 ps-5">
<i class="p-3-5 primary-dark-bg fab fa-unity"></i> <span data-i18n="hobbies-game">Game Developing</span>
</div>
<div class="col-md-6 col-sm-4 col-12 ps-sm-0 ps-5">
<i class="p-3-5 primary-dark-bg fas fa-seedling"></i> <span data-i18n="hobbies-planting">Gardening</span>
</div>
<div class="col-md-6 col-sm-4 col-12 ps-sm-0 ps-5">
<i class="p-3-5 primary-dark-bg fab fa-raspberry-pi"></i> <span data-i18n="hobbies-circuit">IoT tinkering</span>
</div>
<div class="col-md-6 col-sm-4 col-12 ps-sm-0 ps-5">
<i class="p-3-4 primary-dark-bg fas fa-gamepad"></i> <span data-i18n="hobbies-gaming">Gaming</span>
</div>
<div class="col-md-6 col-sm-4 col-12 ps-sm-0 ps-5">
<i class="p-3-5 primary-dark-bg fas fa-cube"></i> <span data-i18n="hobbies-modeling">3D Modeling</span>
</div>
</div>
</div>
</div>
<div class="footer d-none d-md-block">
<div class="mt-4 mb-4">
<h2 data-i18n="footer-title" class="text-uppercase font-weight-bold text-center">Imprint</h2>
</div>
<div class="pt-4 pb-3 primary-dark-bg">
<p class="text-uppercase font-weight-bold text-center"><i class="fas fa-copyright"></i> 2019-<span class="year">2024</span> <span data-i18n="footer-copyright">by Sebastian Poetter</span></p>
</div>
<a href="#" data-bs-toggle="modal" data-bs-target="#privacyModal">
<div class="pt-4 pb-3">
<p class="text-uppercase font-weight-bold text-center"><i class="fas fa-book"></i> <span data-i18n="footer-policy">privacy policy</span></p>
</div>
</a>
<a href="#" data-bs-toggle="modal" data-bs-target="#libraryModal">
<div class="pt-4 pb-3 primary-dark-bg">
<p class="text-uppercase font-weight-bold text-center"><i class="fas fa-thumbs-up"></i> <span data-i18n="footer-library">Used libraries</span></p>
</div>
</a>
</div>
</div>
<div id="rightSide" class="col-md-8 secondary-bg ps-lg-3 p-0">
<div class="mt-md-3 mt-sm-0">
<h1 class="text-uppercase right-title row g-0 mb-md-3">
<i class="col-md-4 pe-2 fas fa-user d-none d-md-block"></i>
<span class="col-md-8 text-md-start text-sm-center ps-md-4 text-md-start text-center" data-i18n="profile-title">Profile</span>
</h1>
<div class="container">
<div class="row">
<div class="col-xxl-10 col-12">
<p data-i18n="profile-begin">
My name is Sebastian Pötter. I recently completed my master's degree in computer science and am looking for new problems to solve and projects to work on.
</p>
<p data-i18n="profile-other">
I am interested in a wide range of topics in the field of computer science, such as web development, app development, and server applications.
I did a lot of private projects and also commissions for my customers.
<br><br>
I'm a freelancer for web development (WordPress, PHP8, Javascript), project
management and software developer (dotnetCore, Java) during my time at the university and before. I got used to open source technology, business process digitization
and modern development management (like SCRUM or Kanban). With the theoretical knowledge gained at university and practical applied skills gained at my freelance work,
I'm able to familiarize myself quickly with new projects.
<br><br>
I independently planned and completed commissions and introduced them to my customers.
Managing of software requirements and transparent communication with my clients to get change requests, but also feedback on the finished tasks or projects,
belong to my skills. However, computers and information technology are not my only interest, other areas such as biology, chemistry, physics, and electrical
engineering are fascinating too.
</p>
</div>
</div>
</div>
</div>
<div>
<h1 class="text-uppercase right-title row g-0 mb-sm-3">
<i class="col-md-4 pe-2 fas fa-graduation-cap d-none d-md-block"></i>
<span class="col-md-8 text-md-start text-sm-center ps-md-4 text-md-start text-center" data-i18n="education-title">Education</span>
</h1>
<div class="container">
<ol class="list-unstyled timeline">
<li>
<h2><span data-i18n="education-secondary-title">Secondary school (Realschule)</span> - 2014</h2>
<p data-i18n="education-secondary-text">
I graduated from secondary school in 2014.
In Germany the Secondary school is called Realschule and leads to either
apprenticeships or, in my case, to higher education comparable to high schools.
Here I started getting interested in Computer and started building simple websites
as a hobby.
</p>
</li>
<li>
<h2><span data-i18n="education-high-title">High School (Abitur)</span> - 2017</h2>
<p data-i18n="education-high-text">
I made my higher education entrance qualification with focus on computer science in 2017.
During this time I worked on some simple projects and made free website designs.
Here I started to work with the game-development engine Unity and made some smaller 3D-applications.
</p>
</li>
<li>
<h2><span data-i18n="education-bachelor-title">University: Bachelor of Science</span> - 2020</h2>
<p data-i18n="education-bachelor-text">
I started studying informatics with a focus on software technology and programming techniques in 2017.
I got way better at programming, algorithm engineering and software planning.
After the course 'principles of mobile robotics' I started experimenting with arduino
and raspberry pi boards to create hardware like a weather-station for my home-sever.
</p>
<p class="mb-0">
<span data-i18n="education-bachelor-subjects">Some of my subjects were</span>:
</p>
<ul class="lul">
<li><i class="far fa-circle"></i> <span data-i18n="education-bachelor-subject-ads">Algorithms and data structures</span></li>
<li><i class="far fa-circle"></i> <span data-i18n="education-bachelor-math">Mathematics for computer scientists</span></li>
<li><i class="far fa-circle"></i> <span data-i18n="education-bachelor-programming">Application-/system-/parallel oriented programming</span></li>
<li><i class="far fa-circle"></i> <span data-i18n="education-bachelor-fp">Functional programming</span></li>
<li><i class="far fa-circle"></i> <span data-i18n="education-bachelor-afl">Automata and formal languages</span></li>
<li><i class="far fa-circle"></i> <span data-i18n="education-bachelor-ai">Principles of artificial Intelligence</span></li>
<li><i class="far fa-circle"></i> <span data-i18n="education-bachelor-mr">Principles of mobile robotics</span></li>
<li><i class="far fa-circle"></i> <span data-i18n="education-bachelor-th">My Bachelor thesis: <a href="https://nbn-resolving.org/urn:nbn:de:bsz:l189-qucosa2-753784" rel="noreferrer" target="_blank">Algorithmically Supported Scheduling</a></span></li>
</ul>
</li>
<li>
<h2 class="mt-c" data-i18n="education-master-title">University: Master of Science - 2023</h2>
<p data-i18n="education-master-text">
I want to improve the skills I have learned and want to learn more, especially in areas of team management.
So I thought that the master's degree is the best way for it.
</p>
<p class="mb-0">
<span data-i18n="education-master-subjects">Some of my chosen subjects were</span>:
</p>
<ul class="lur">
<li><i class="far fa-circle t-list-l"></i> <span data-i18n="education-master-3d">3D Capture, Design and Dynamics</span> <i class="far fa-circle t-list-r"></i></li>
<li><i class="far fa-circle t-list-l"></i> <span data-i18n="education-master-alg">Algorithm Engineering</span> <i class="far fa-circle t-list-r"></i> </li>
<li><i class="far fa-circle t-list-l"></i> <span data-i18n="education-master-prog">Progressive Web Apps</span> <i class="far fa-circle t-list-r"></i> </li>
<li><i class="far fa-circle t-list-l"></i> <span data-i18n="education-master-mr">Mixed Reality & AI</span> <i class="far fa-circle t-list-r"></i></li>
<li><i class="far fa-circle t-list-l"></i> <span data-i18n="education-master-visu">Visualization in NaturalSciences and Engineering</span> <i class="far fa-circle t-list-r"></i></li>
<li><i class="far fa-circle t-list-l"></i> <span data-i18n="education-master-ivra">Innovative computer architectures</span> <i class="far fa-circle t-list-r"></i></li>
<li><i class="far fa-circle t-list-l"></i> <span data-i18n="education-master-cry">Cryptography</span> <i class="far fa-circle t-list-r"></i></li>
<li><i class="far fa-circle t-list-l"></i> <span data-i18n="education-master-oagr">Object and gesture recognition</span> <i class="far fa-circle t-list-r"></i></li>
<li><i class="far fa-circle t-list-l"></i> <span data-i18n="education-master-team">Team management internship (SCRUM-team leader for an eight-person team)</span> <i class="far fa-circle t-list-r"></i></li>
<li><i class="far fa-circle t-list-l"></i> <span data-i18n="education-master-th">My master thesis: <a href="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/poetter-sebastian/Simulation" rel="noreferrer" target="_blank">Development of an environmental simulation in Unity</a></span> <i class="far fa-circle t-list-r"></i></li>
</ul>
</li>
</ol>
</div>
</div>
<div>
<h1 class="text-uppercase right-title row g-0">
<i class="col-md-4 pe-2 fas fa-address-book d-none d-md-block"></i>
<span class="col-md-8 text-md-start text-sm-center ps-md-4 text-md-start text-center" data-i18n="commissions-title">Who employed/commissioned me</span>
</h1>
<div id="commissions" class="row me-0 px-lg-0 px-2">
<div class="col-lg-3 col-md-6 col-12">
<div class="card">
<a href="https://www.saxonq.com/" title="SaxonQ GmbH" target="_blank" rel="noreferrer">
<img class="card-img-top" src="src/img/logo-saxonq.webp" alt="SaxonQ GmbH logo" loading="lazy">
<div class="card-body">
<h2 class="card-title text-center font-weight-bold font-smaller">SaxonQ</h2>
</div>
</a>
</div>
</div>
<div class="col-lg-3 col-md-6 col-12">
<div class="card">
<a href="https://www.hotwirevr.com/" title="HotWire VR" target="_blank" rel="noreferrer">
<img class="card-img-top" src="src/img/logo-hotwire.webp" alt="HotWire VR logo" loading="lazy">
<div class="card-body">
<h2 class="card-title text-center font-weight-bold font-smaller">HotWire VR</h2>
</div>
</a>
</div>
</div>
<div class="col-lg-3 col-md-6 col-12">
<div class="card">
<a href="https://www.profesco.de" title="Profesco GmbH" target="_blank" rel="noreferrer">
<img class="card-img-top" src="src/img/logo-profesco.webp" alt="Profesco GmbH logo" loading="lazy">
<div class="card-body">
<h2 class="card-title text-center font-weight-bold font-smaller">Profesco</h2>
</div>
</a>
</div>
</div>
<div class="col-lg-3 col-md-6 col-12">
<div class="card">
<a href="https://www.LeFx.de" title="LeFx GmbH" target="_blank" rel="noreferrer">
<img class="card-img-top" src="src/img/logo-lefx.webp" alt="LeFx GmbH logo" loading="lazy">
<div class="card-body">
<h2 class="card-title text-center font-weight-bold font-smaller">LeFx</h2>
</div>
</a>
</div>
</div>
<div class="col-lg-3 col-md-6 col-12">
<div class="card">
<a href="https://ovrlab.de/" title="Ovrlab GmbH" target="_blank" rel="noreferrer">
<img class="card-img-top" src="src/img/logo-ovrlab.webp" alt="Ovrlab GmbH logo" loading="lazy">
<div class="card-body">
<h2 class="card-title text-center font-weight-bold font-smaller">OVRLAB</h2>
</div>
</a>
</div>
</div>
<div class="col-lg-3 col-md-6 col-12">
<div class="card">
<a href="https://vrbits.de/" title="VR bits GmbH" target="_blank" rel="noreferrer">
<img class="card-img-top" src="src/img/logo-vrbits.webp" alt="VR bits GmbH logo" loading="lazy">
<div class="card-body">
<h2 class="card-title text-center font-weight-bold font-smaller">VR Bits</h2>
</div>
</a>
</div>
</div>
<div class="col-lg-3 col-md-6 col-12">
<div class="card">
<a href="https://www.games-innovation-award-saxony.de/" title="Games innovation Award Saxony EV" target="_blank" rel="noreferrer">
<img class="card-img-top" src="src/img/logo-gias.webp" alt="Games innovation Award Saxony EV logo" loading="lazy">
<div class="card-body">
<h2 class="card-title text-center font-weight-bold font-smaller">GIAS</h2>
</div>
</a>
</div>
</div>
<div class="col-lg-3 col-md-6 col-12">
<div class="card">
<a href="https://www.vintagestory.at/" title="Anego Studios SIA" target="_blank" rel="noreferrer">
<img class="card-img-top " src="src/img/logo-anego-studios.webp" alt="Anego Studios SIA logo" loading="lazy">
<div class="card-body">
<h2 class="card-title text-center font-weight-bold font-smaller">Anego Studios</h2>
</div>
</a>
</div>
</div>
<div class="col-lg-3 col-md-6 col-12">
<div class="card">
<a href="https://estudios.ch/" title="Estudios AG" target="_blank" rel="noreferrer">
<img class="card-img-top" src="src/img/logo-estudios.webp" alt="Estudios AG logo" loading="lazy">
<div class="card-body">
<h2 class="card-title text-center font-weight-bold font-smaller">E-STUDIOS</h2>
</div>
</a>
</div>
</div>
<div class="col-lg-3 col-md-6 col-12">
<div class="card">
<a href="https://www.aktiv-oase.de/" title="Aktiv oase GmbH" target="_blank" rel="noreferrer">
<img class="card-img-top" src="src/img/logo-aktivoase.webp" alt="Aktiv oase GmbH logo" loading="lazy">
<div class="card-body">
<h2 class="card-title text-center font-weight-bold font-smaller">Aktiv Oase</h2>
</div>
</a>
</div>
</div>
<div class="col-lg-3 col-md-6 col-12">
<div class="card">
<a href="https://www.adhoc-mn.de/" title="Ad hoc marketing network GmbH" target="_blank" rel="noreferrer">
<img class="card-img-top" src="src/img/logo-adhoc.webp" alt="Ad hoc marketing network GmbH logo" loading="lazy">
<div class="card-body">
<h2 class="card-title text-center font-weight-bold font-smaller">Ad hoc marketing network</h2>
</div>
</a>
</div>
</div>
<div class="col-lg-3 col-md-6 col-12">
<div class="card">
<a href="https://san-rosenau.de/Start.html" title="San Rosenau GmbH" target="_blank" rel="noreferrer">
<img class="card-img-top" src="src/img/logo-rosenau.webp" alt="San Rosenau GmbH logo" loading="lazy">
<div class="card-body">
<h2 class="card-title text-center font-weight-bold font-smaller">Sanitätshaus Rosenau</h2>
</div>
</a>
</div>
</div>
<div class="col-lg-3 col-md-6 col-12">
<div class="card">
<a href="https://www.velomotion.de/" title="Velomotion GmbH" target="_blank" rel="noreferrer">
<img class="card-img-top" src="src/img/logo-velomotion.webp" alt="Velomotion GmbH logo" loading="lazy">
<div class="card-body">
<h2 class="card-title text-center font-weight-bold font-smaller">Velomotion</h2>
</div>
</a>
</div>
</div>
</div>
</div>
<div>
<h1 class="text-uppercase right-title row g-0 mb-sm-3">
<i class="col-md-4 pe-2 fas fa-laptop-code d-none d-md-block"></i>
<span class="col-md-8 text-md-start text-sm-center ps-md-4 text-md-start text-center text-uppercase" data-i18n="experience-title">Experience (<span id="to-now">9</span> years)</span>
</h1>
<div class="ms-4 mt-md-0 mt-4">
<ol class="line">
<li data-i18n="experience-small-com">Multiple commissions of one-page-websites for smaller companies - 2014-2017</li>
<li data-i18n="experience-landing-page">Commission of a landing-page for a company in Dresden - 2017</li>
<li data-i18n="experience-profesco">Commission of a wordpress-website for the <a href="https://www.profesco.de" rel="noreferrer" target="_blank">Profesco GmbH</a> (creation and administration) - 2019-2021</li>
<li data-i18n="experience-internship">Twelve weeks internship at <a href="https://www.profesco.de" rel="noreferrer" target="_blank">Profesco GmbH</a> in the IT department - 2020</li>
<li data-i18n="experience-velomotion">Updated parts of <a href="https://www.velomotion.de/" rel="noreferrer" target="_blank">Velomotion GmbH</a> - 2020</li>
<li data-i18n="experience-lefx">Reworked and updated the WordPress website of the company <a href="https://www.LeFx.de" rel="noreferrer" target="_blank">LeFx GmbH</a> - 2020-2021</li>
<li data-i18n="experience-aktiv">Created a website for the company <a href="https://www.aktiv-oase.de/" rel="noreferrer" target="_blank">EB Gesundheitsstudio GmbH</a> - 2021</li>
<li data-i18n="experience-sanit">Revised the homepage of <a href="https://san-rosenau.de/Start.html" rel="noreferrer" target="_blank">Sanitätshaus Rosenau GmbH</a> - 2021</li>
<li data-i18n="experience-saxony">Commission of an award-page for <a href="https://www.games-innovation-award-saxony.de/" rel="noreferrer" target="_blank">Games innovation award saxony</a> - 2021</li>
<li data-i18n="experience-team">Team management internship (SCRUM-team leader for an eight-person team) - 2021-2022</li>
<li data-i18n="experience-ovrlab">Rework <a href="https://www.lefx.de/" rel="noreferrer" target="_blank">LeFx</a>, <a href="https://www.vrbits.de/" rel="noreferrer" target="_blank">VrBits</a> and <a href="https://www.Ovrlab.de/" rel="noreferrer" target="_blank">Ovrlab</a> - 2022</li>
<li data-i18n="experience-up-lefx">Design upgrade of <a href="https://www.lefx.de/" rel="noreferrer" target="_blank">LeFx</a> - 2023</li>
<li data-i18n="experience-hotwire">Created a one-page for the VR Game <a href="https://www.hotwirevr.com/" rel="noreferrer" target="_blank">HotWireVR</a> - 2024</li>
<li data-i18n="experience-saxonq">Created a wordpress website with custom design for the company SaxonQ <a href="https://www.saxonq.com/" rel="noreferrer" target="_blank">SaxonQ GmbH</a> - 2024</li>
<li data-i18n="experience-mindport">Fixed-term contract to work on specific projects at the VR company <a href="https://www.mindport.co/" rel="noreferrer" target="_blank">Mindport GmbH</a> - 2024-2025</li>
</ol>
</div>
</div>
<div class="footer d-sm-block d-md-none">
<h1 class="text-uppercase right-title row g-0">
<i class="col-md-4 pe-2 fas fa-address-card d-none d-md-block"></i>
<span class="col-md-8 text-md-start text-center ps-md-4 pt-4 pb-3" data-i18n="footer-title">Imprint</span>
</h1>
<div class="pt-4 pb-3">
<p class="text-uppercase font-weight-bold text-center"><i class="fas fa-copyright"></i> 2019-<span class="year">2024</span> <span data-i18n="footer-copyright">by Sebastian Poetter</span></p>
</div>
<a href="#" data-bs-toggle="modal" data-bs-target="#privacyModal">
<div class="pt-4 pb-3 primary-dark-bg">
<p class="text-uppercase font-weight-bold text-center"><i class="fas fa-book"></i> <span data-i18n="footer-policy">privacy policy</span></p>
</div>
</a>
<a href="#" data-bs-toggle="modal" data-bs-target="#libraryModal">
<div class="pt-4 pb-3">
<p class="text-uppercase font-weight-bold text-center"><i class="fas fa-thumbs-up"></i> <span data-i18n="footer-library">Used libraries</span></p>
</div>
</a>
</div>
</div>
</div>
</div>
<!-- slow css -->
<link rel="preload" as="style" onload="this.onload=null;this.rel='stylesheet'" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css">
<link rel="preload" as="style" onload="this.onload=null;this.rel='stylesheet'" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<!-- javascript -->
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"
integrity="sha384-I7E8VVD/ismYTF4hNIPjVp/Zjvgyol6VFvRkX/vR+Vc4jQkC+hVqc2pM8ODewa9r" crossorigin="anonymous"
async defer></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"
integrity="sha384-BBtl+eGJRgqQAUMxJ7pMwbEyER4l1g+O15P+16Ep7Q9Q+zqX6gSbd85u4mG4QzX+" crossorigin="anonymous"
async defer></script>
<script async src="src/js/pwa.min.js" defer></script>
<!-- Modal -->
<div id="privacyModal" class="modal fade" tabindex="-1" aria-labelledby="privacyModalLabel">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h2 class="modal-title" id="privacyModalLabel">Privacy policy</h2>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<p>
Sebastian Pötter <br>
Döringstraße 18 <br>
04357 Leipzig
</p>
<p>
Profile image from <a target="_blank" rel="noreferrer" href="https://www.w3schools.com/bootstrap4/img_avatar1.webp">w3schools.com</a>
</p>
<p>Personal data (usually referred to just as "data" below) will only be processed by us to the extent necessary and for the purpose of providing a functional and user-friendly website, including its contents, and the services offered there.</p>
<p>Per Art. 4 No. 1 of Regulation (EU) 2016/679, i.e. the General Data Protection Regulation (hereinafter referred to as the "GDPR"), "processing" refers to any operation or set of operations such as collection, recording, organization, structuring, storage, adaptation, alteration, retrieval, consultation, use, disclosure by transmission, dissemination, or otherwise making available, alignment, or combination, restriction, erasure, or destruction performed on personal data, whether by automated means or not.</p>
<p>The following privacy policy is intended to inform you in particular about the type, scope, purpose, duration, and legal basis for the processing of such data either under our own control or in conjunction with others. We also inform you below about the third-party components we use to optimize our website and improve the user experience which may result in said third parties also processing data they collect and control.</p>
<p>Our privacy policy is structured as follows:</p>
<p>I. Information about us as controllers of your data<br>II. The rights of users and data subjects<br>III. Information about the data processing</p>
<h3>I. The rights of users and data subjects</h3>
<p>With regard to the data processing to be described in more detail below, users and data subjects have the right</p>
<ul>
<li>to confirmation of whether data concerning them is being processed, information about the data being processed, further information about the nature of the data processing, and copies of the data (cf. also Art. 15 GDPR);</li>
<li>to correct or complete incorrect or incomplete data (cf. also Art. 16 GDPR);</li>
<li>to the immediate deletion of data concerning them (cf. also Art. 17 DSGVO), or, alternatively, if further processing is necessary as stipulated in Art. 17 Para. 3 GDPR, to restrict said processing per Art. 18 GDPR;</li>
<li>to receive copies of the data concerning them and/or provided by them and to have the same transmitted to other providers/controllers (cf. also Art. 20 GDPR);</li>
<li>to file complaints with the supervisory authority if they believe that data concerning them is being processed by the controller in breach of data protection provisions (see also Art. 77 GDPR).</li>
</ul>
<p>In addition, the controller is obliged to inform all recipients to whom it discloses data of any such corrections, deletions, or restrictions placed on processing the same per Art. 16, 17 Para. 1, 18 GDPR. However, this obligation does not apply if such notification is impossible or involves a disproportionate effort. Nevertheless, users have a right to information about these recipients.</p>
<p><strong>Likewise, under Art. 21 GDPR, users and data subjects have the right to object to the controller's future processing of their data pursuant to Art. 6 Para. 1 lit. f) GDPR. In particular, an objection to data processing for the purpose of direct advertising is permissible.</strong></p>
<h3>II. Information about the data processing</h3>
<p>Your data processed when using our website will be deleted or blocked as soon as the purpose for its storage ceases to apply, provided the deletion of the same is not in breach of any statutory storage obligations or unless otherwise stipulated below.</p>
<h4>Cookies</h4>
<h5>a) Session cookies</h5>
<p>We use cookies on our website. Cookies are small text files or other storage technologies stored on your computer by your browser. These cookies process certain specific information about you, such as your browser, location data, or IP address. </p>
<p>This processing makes our website more user-friendly, efficient, and secure, allowing us, for example, to display our website in different languages or to offer a shopping cart function.</p>
<p>The legal basis for such processing is Art. 6 Para. 1 lit. b) GDPR, insofar as these cookies are used to collect data to initiate or process contractual relationships.</p>
<p>If the processing does not serve to initiate or process a contract, our legitimate interest lies in improving the functionality of our website. The legal basis is then Art. 6 Para. 1 lit. f) GDPR.</p>
<p>When you close your browser, these session cookies are deleted.</p>
<h5>b) Third-party cookies</h5>
<p>If necessary, our website may also use cookies from companies with whom we cooperate for the purpose of advertising, analyzing, or improving the features of our website.</p>
<p>Please refer to the following information for details, in particular for the legal basis and purpose of such third-party collection and processing of data collected through cookies.</p>
<h5>c) Disabling cookies</h5>
<p>You can refuse the use of cookies by changing the settings on your browser. Likewise, you can use the browser to delete cookies that have already been stored. However, the steps and measures required vary, depending on the browser you use. If you have any questions, please use the help function or consult the documentation for your browser or contact its maker for support. Browser settings cannot prevent so-called flash cookies from being set. Instead, you will need to change the setting of your Flash player. The steps and measures required for this also depend on the Flash player you are using. If you have any questions, please use the help function or consult the documentation for your Flash player or contact its maker for support.</p>
<p>If you prevent or restrict the installation of cookies, not all of the functions on our site may be fully usable.</p>
<h4>Google-Maps</h4>
<p>Our website uses Google Maps to display our location and to provide directions. This is a service provided by Google Inc., 1600 Amphitheatre Parkway, Mountain View, CA 94043 (hereinafter: Google).</p>
<p>Through certification according to the EU-US Privacy Shield</p>
<p><a href="https://www.privacyshield.gov/participant?id=a2zt000000001L5AAI&status=Active" target="_blank" rel="noreferrer noopener">https://www.privacyshield.gov/participant?id=a2zt000000001L5AAI&status=Active</a></p>
<p>Google guarantees that it will follow the EU's data protection regulations when processing data in the United States.</p>
<p>To enable the display of certain fonts on our website, a connection to the Google server in the USA is established whenever our website is accessed.</p>
<p>If you access the Google Maps components integrated into our website, Google will store a cookie on your device via your browser. Your user settings and data are processed to display our location and create a route description. We cannot prevent Google from using servers in the USA.</p>
<p>The legal basis is Art. 6 Para. 1 lit. f) GDPR. Our legitimate interest lies in optimizing the functionality of our website.</p>
<p>By connecting to Google in this way, Google can determine from which website your request has been sent and to which IP address the directions are transmitted.</p>
<p>If you do not agree to this processing, you have the option of preventing the installation of cookies by making the appropriate settings in your browser. Further details can be found in the section about cookies above.</p>
<p>In addition, the use of Google Maps and the information obtained via Google Maps is governed by the <a href="https://www.google.de/accounts/TOS" target="_blank" rel="noreferrer noopener">Google Terms of Use</a> <a href="https://policies.google.com/terms?gl=DE&hl=de" target="_blank" rel="noreferrer noopener">https://policies.google.com/terms?gl=DE&hl=en</a> and the <a href="https://www.google.com/intl/de_de/help/terms_maps.html" target="_blank" rel="noreferrer noopener">Terms and Conditions for Google Maps</a> https://www.google.com/intl/de_de/help/terms_maps.html.</p>
<p>Google also offers further information at</p>
<p><a href="https://adssettings.google.com/authenticated" target="_blank" rel="noreferrer noopener">https://adssettings.google.com/authenticated</a></p>
<p><a href="https://policies.google.com/privacy" target="_blank" rel="noreferrer noopener">https://policies.google.com/privacy</a></p>
<h4>Google Fonts</h4>
<p>Our website uses Google Fonts to display external fonts. This is a service provided by Google Inc., 1600 Amphitheatre Parkway, Mountain View, CA 94043 (hereinafter: Google).</p>
<p>Through certification according to the EU-US Privacy Shield</p>
<p><a href="https://www.privacyshield.gov/participant?id=a2zt000000001L5AAI&status=Active" target="_blank" rel="noreferrer noopener">https://www.privacyshield.gov/participant?id=a2zt000000001L5AAI&status=Active</a></p>
<p>Google guarantees that it will follow the EU's data protection regulations when processing data in the United States.</p>
<p>To enable the display of certain fonts on our website, a connection to the Google server in the USA is established whenever our website is accessed.</p>
<p>The legal basis is Art. 6 Para. 1 lit. f) GDPR. Our legitimate interest lies in the optimization and economic operation of our site.</p>
<p>When you access our site, a connection to Google is established from which Google can identify the site from which your request has been sent and to which IP address the fonts are being transmitted for display.</p>
<p>Google offers detailed information at</p>
<p><a href="https://adssettings.google.com/authenticated" target="_blank" rel="noreferrer noopener">https://adssettings.google.com/authenticated</a></p>
<p><a href="https://policies.google.com/privacy" target="_blank" rel="noreferrer noopener">https://policies.google.com/privacy</a></p>
<p>in particular on options for preventing the use of data.</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal" data-i18n="modal-close">Close</button>
</div>
</div>
</div>
</div>
<div id="libraryModal" class="modal fade" tabindex="-1" aria-labelledby="library-label" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h2 class="modal-title" id="library-label">Used libraries</h2>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<h3>Jquery</h3>
<p><a href="https://jquery.com" target="_blank" rel="noreferrer">jquery 3.6</a> - <a href="https://jquery.org/team/" target="_blank" rel="noreferrer">The jQuery Foundation</a> released under <a href="https://jquery.org/license/" target="_blank" rel="noreferrer">MIT license</a>.</p>
<h3>Bootstrap</h3>
<p><a href="https://getbootstrap.com" target="_blank" rel="noreferrer">Bootstrap 5.3</a> - The Bootstrap Authors released under <a href="https://github.com/twbs/bootstrap/blob/v4-dev/LICENSE" target="_blank" rel="noreferrer">MIT license</a>.</p>
<h3>Poppers js</h3>
<p><a href="https://popper.js.org/" target="_blank" rel="noreferrer">Popper-js</a> - Popper-Js released under <a href="https://github.com/popperjs/popper-core/blob/master/LICENSE.md" target="_blank" rel="noreferrer">MIT license</a>.</p>
<h3>Fontawesome 5</h3>
<p><a href="https://fontawesome.com/" target="_blank" rel="noreferrer">Fontawesome 5</a> - Fontawesome released under <a href="https://github.com/FortAwesome/Font-Awesome/blob/master/LICENSE.txt" target="_blank" rel="noreferrer">MIT license</a>.</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal" data-i18n="modal-close">Close</button>
</div>