-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1017 lines (999 loc) · 63.9 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 class="js flexbox flexwrap" lang="en" xmlns="http://www.w3.org/1999/html">
<head>
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
<meta content="IE=edge" http-equiv="X-UA-Compatible">
<meta content="width=device-width, initial-scale=1" name="viewport">
<meta content="Sebastian Selinger" name="author">
<meta http-equiv="refresh" content="0; url=https://www.linkedin.com/in/sebastianselinger/">
<!-- ============== Title Of Website ============== -->
<title>Sebastian Selinger | Consultant, Developer and more</title>
<!-- ============== Requeared CSS ============== -->
<link href="./images/favicon/favicon.png" rel="icon" type="images/png">
<link href="./css/bootstrap.min.css" rel="stylesheet" type="text/css">
<script crossorigin="anonymous" src="https://kit.fontawesome.com/50bd4685fe.js"></script>
<link href="./css/hover.css" rel="stylesheet" type="text/css">
<link href="./css/loaders.min.css" rel="stylesheet" type="text/css">
<link href="./css/magnific-popup.css" rel="stylesheet" type="text/css">
<link href="./css/owl.carousel.min.css" rel="stylesheet" type="text/css">
<link href="./css/owl.theme.default.min.css" rel="stylesheet" type="text/css">
<link href="./css/text-animation.css" rel="stylesheet" type="text/css">
<link href="./css/style.css" rel="stylesheet" type="text/css">
<link href="./css/responsive.css" rel="stylesheet" type="text/css">
<!-- ============== Fonts ============== -->
<!--<link href="https://fonts.googleapis.com/css?family=Asap:400,500,700%7CJosefin+Sans:400,600,700" rel="stylesheet">-->
<!-- ============== Mordenizr Script for Fallback Design ============== -->
<script src="./js/modernizr-custom.js" type="text/javascript"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-TTZ2JDD0BP"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'G-TTZ2JDD0BP');
</script>
<script>
// JavaScript für die Weiterleitung
document.addEventListener("DOMContentLoaded", function() {
// URL zur LinkedIn-Seite
const linkedinUrl = "https://www.linkedin.com/in/sebastianselinger/";
// Weiterleitung nach 2 Sekunden
setTimeout(() => {
window.location.href = linkedinUrl;
}, 0);
});
</script>
</head>
<body style="overflow: visible;">
<div id="preloader" style="display: none;">
<div class="loader" style="display: none;">
<img alt="preloader" class="img-fluid" src="images/preloader/preloader.gif">
</div>
</div>
<div class="all-container" style="opacity: 1;">
<!-- =============================
Start Header
=============================== -->
<section class="header" id="home">
<div class="logo">
<!--<img class="img-fluid" src="#" alt="Logo">-->
</div>
<div class="slider-prev-button slider-button">
<i class="fa fa-angle-left"></i>
</div>
<div class="slider-next-button slider-button">
<i class="fa fa-angle-right"></i>
</div>
<div class="owl-carousel owl-full-width owl-theme owl-loaded owl-drag" id="background-slide">
<!-- @todo carousel rewriting with bootstrap without jquery -->
<div class="owl-stage-outer">
<div class="owl-stage"
style="transform: translate3d(-10172px, 0px, 0px); transition: all 0s ease 0s; width: 17801px;">
<div class="owl-item cloned" style="width: 2543px;">
<div class="slider slider-2"
style="background-image: url('images/slider/background-3.jpg'); background-size: cover; background-position: center center;">
<img alt="slider-2" class="img-fluid" src="./images/slider/background-3.jpg"></div>
</div>
<div class="owl-item cloned" style="width: 2543px;">
<div class="slider slider-3"
style="background-image: url('images/slider/background-1.jpg'); background-size: cover; background-position: center center;">
<img alt="slider-3" class="img-fluid" src="./images/slider/background-1.jpg"></div>
</div>
<div class="owl-item" style="width: 2543px;">
<div class="slider slider-1"
style="background-image: url('images/slider/background-2.jpg'); background-size: cover; background-position: center center;">
<img alt="slider-1" class="img-fluid" src="./images/slider/background-2.jpg"></div>
</div>
<div class="owl-item" style="width: 2543px;">
<div class="slider slider-2"
style="background-image: url('images/slider/background-3.jpg'); background-size: cover; background-position: center center;">
<img alt="slider-2" class="img-fluid" src="./images/slider/background-3.jpg"></div>
</div>
<div class="owl-item active" style="width: 2543px;">
<div class="slider slider-3"
style="background-image: url('images/slider/background-1.jpg'); background-size: cover; background-position: center center;">
<img alt="slider-3" class="img-fluid" src="./images/slider/background-1.jpg"></div>
</div>
<div class="owl-item cloned" style="width: 2543px;">
<div class="slider slider-1"
style="background-image: url('images/slider/background-2.jpg'); background-size: cover; background-position: center center;">
<img alt="slider-1" class="img-fluid" src="./images/slider/background-2.jpg"></div>
</div>
<div class="owl-item cloned" style="width: 2543px;">
<div class="slider slider-2"
style="background-image: url('images/slider/background-3.jpg'); background-size: cover; background-position: center center;">
<img alt="slider-2" class="img-fluid" src="./images/slider/background-3.jpg"></div>
</div>
</div>
</div>
<div class="owl-nav disabled">
<div class="owl-prev">prev</div>
<div class="owl-next">next</div>
</div>
<div class="owl-dots disabled"></div>
</div>
<div class="container">
<div class="row content">
<div class="col-lg-8 col-lg-offset-2 col-sm-8 col-sm-offset-2 head-container">
<div class="head-holder">
<h1 class="introduction">Hi, i am<br>Sebastian Selinger</h1>
<div class="animated-text">
<strong class="cd-headline clip">
<span class="cd-words-wrapper" style="width: 260px;">
<b class="is-hidden">Quality Manager</b>
<b class="is-hidden">Consultant</b>
<b class="is-visible">Developer</b>
<b class="is-hidden">Redakteur</b>
</span>
</strong>
</div>
<a class="hireMe" href="https://www.linkedin.com/in/SebastianSelinger" target="_blank">HIRE
ME</a>
</div>
</div>
</div>
</div>
<div class="navigation-icon">
<input id="burger" type="checkbox">
<label class="burger-menu" for="burger">
<span></span>
<span></span>
<span></span>
</label>
</div>
<div class="fullscreen-nav-container" style="display: none;">
<div class="container-fluid">
<div class="full-nav-container row">
<div class="full-nav-holder">
<div class="full-nav-content">
<div class="name">
<div class="first-name">Sebastian</div>
<div class="last-name">SELINGER</div>
<div class="occupation">
<span>
Consultant<br>
Developer<br>
Quality Manger<br>
Redakteur
</span>
</div>
</div>
<div class="fulscreen-nav">
<div class="fullscreen-nav-holder">
<div><a class="turn-home" href="#home">HOME</a></div>
<div><a href="#about-me">ABOUT ME</a></div>
<div><a href="#services">SERVICES</a></div>
<div><a href="#portfolio">PORTFOLIO</a></div>
<!--<div><a href="#5">TESTIMONIALS</a></div>-->
<div><a href="#contact">CONTACT</a></div>
</div>
</div>
<div class="full-nav-icon-holder">
<div class="full-nav-icons">
<div><a href="https://www.xing.com/profile/Sebastian_Selinger"><i
class="fa fa-xing"></i></a></div>
<div><a href="https://www.linkedin.com/in/SebastianSelinger/"><i
class="fa fa-linkedin"></i></a></div>
<div><a href="https://www.facebook.com/sebastianvonselinger"><i
class="fa fa-facebook-f"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- =============================
End Header
=============================== -->
<!-- =============================
Start Menu
=============================== -->
<section class="menu" id="menu">
<nav>
<!-- desktop-menu -->
<div class="menu-container">
<div class="desktop-menu" id="desktop-menu">
<div class="menu-item hvr-underline-from-left 1 active"><a href="#home">Home</a></div>
<div class="menu-item hvr-underline-from-left 2"><a href="#about-me">About Me</a></div>
<div class="menu-item hvr-underline-from-left 2"><a href="#experience">Experience</a></div>
<div class="menu-item hvr-underline-from-left 3"><a href="#services">Services</a></div>
<div class="menu-item hvr-underline-from-left 4"><a href="#portfolio">Portfolio</a></div>
<!--<div class="menu-item hvr-underline-from-left 5"><a href="#5">Testimonials</a>
</div>-->
<div class="menu-item hvr-underline-from-left 6"><a href="#contact">Contact</a></div>
</div>
<!-- /desktop-menu -->
<!-- mobile-menu -->
<div class="mobile-menu">
<a class="menu-link">
<div class="mobile-menu-nav">
<span></span>
<span></span>
<span></span>
</div>
</a>
<div class="mobile-menu-logo"><a href="#"><img alt="Logo" class="img-fluid" src="#"></a>
</div>
<div class="menu-slider">
<nav>
<ul class="mobile-menu-list">
<li class="hvr-shutter-out-vertical mobile-menu-item 1 active"><a href="#home">Home</a>
</li>
<li class="hvr-shutter-out-vertical mobile-menu-item 2"><a href="#about-me">About
Me</a></li>
<li class="hvr-shutter-out-vertical mobile-menu-item 3"><a
href="#services">Services</a></li>
<li class="hvr-shutter-out-vertical mobile-menu-item 4"><a
href="#portfolio">Portfolio</a>
</li>
<!--<li class="hvr-shutter-out-vertical mobile-menu-item 5"><a href="#5">Testimonials</a>-->
</li>
<li class="hvr-shutter-out-vertical mobile-menu-item 6"><a
href="contact">Contact</a></li>
</ul>
<div class="mobile-menu-icons">
<div><a href="https://www.xing.com/profile/Sebastian_Selinger"><i
class="fa fa-xing"></i></a>
</div>
<div><a href="https://www.linkedin.com/in/SebastianSelinger/"><i
class="fa fa-linkedin"></i></a></div>
<div><a href="https://www.facebook.com/sebastianvonselinger"><i
class="fa fa-facebook-f"></i></a></div>
</div>
</nav>
</div>
</div>
</div>
</nav>
</section>
<!-- =============================
End Menu
=============================== -->
<!-- ============================
Start About Me
=============================== -->
<section class="about-me" id="about-me">
<div class="container">
<div class="row about-me-holder">
<div class="col-lg-6 col-md-6 col-sm-6 about-me-text d-flex align-self-center">
<div class="text-holder wow fadeInUp" data-wow-duration="1.5s"
style="visibility: visible; animation-duration: 1.5s; animation-name: fadeInUp;">
<h1>WHO I AM</h1>
<p>Designing and developing products, finding bugs and creating something. That is my passion
and vocation.
Closing a ticket is easy, but a product lives and develops continuously. I can help you to
make the
product unique. To convince yourself, take a look at my CV. I am looking forward to your
request.</p>
</div>
</div>
<div class="col-lg-6 col-sm-6 col-9 about-me-images wow fadeInUp" data-wow-duration="1.5s"
style="visibility: visible; animation-duration: 1.5s; animation-name: fadeInUp;">
<img alt="about-me" class="img-fluid" src="./images/about-me.jpeg">
</div>
</div>
<div class="row experience-skills">
<div class="col-lg-6 col-sm-6 col-11 experience wow fadeInUp" data-wow-duration="1.5s"
style="visibility: visible; animation-duration: 1.5s; animation-name: fadeInUp;">
<h3>EXPERIENCE</h3>
<ul class="experience-chart">
<li>
<div class="single-experience">
<h4>XboxDev</h4>
<span>Redakteur / Developing</span>
<span>2016 - Today</span>
<p>I founded and run the portal Xboxdev.com since 2016 and as an industry magazine it
describes
everything about the gaming industry and the Xbox world.</p>
</div>
</li>
<li>
<div class="single-experience">
<h4>Development / QA</h4>
<span>Freelancer / Fiverr.com</span>
<span>06.2016 - Today</span>
<p>Since 2016 I have been self-employed and am looking for exciting and interesting
assignments. In
addition to the development of various websites, I am also involved in quality
assurance. </p>
</div>
</li>
<li>
<div class="single-experience">
<h4>QA Tester</h4>
<span>Keywords Studios</span>
<span>10/2017 - today</span>
<p>Project-based testing of multiplayer AAA games from the world's leading game
developers as part of the Global Beta Test Network.</p>
</div>
</li>
<li>
<div class="single-experience">
<h4>Quality Assurance Tester for Augmented and Virtual Reality</h4>
<span>Realworld One</span>
<span>01/2022 - 12/2022</span>
<p>As Quality Assurance, I was active in the field of VR and AR. My main area of
responsibility was in the field of AR applications with a focus on Hololens 2
developments. The
VR area (Oculus, Vive, Index) will be done additionally.</p>
</div>
</li>
</ul>
<a class="btn btn-primary btn-dark justify-content-center align-content-center mx-auto"
data-toggle="collapse"
href="#collapseExperience" role="button" aria-expanded="false"
aria-controls="collapseExperience">
<i class="fas fa-angle-double-down"></i>
</a>
<div class="collapse" id="collapseExperience">
<ul class="experience-chart">
<li>
<div class="single-experience">
<h4>QA Tester</h4>
<span>Scientific Games</span>
<span>01/2023 - 01/2023</span>
<p>As Quality Assurance, I was active in the field of VR and AR. My main area of
responsibility was in the field of AR applications with a focus on Hololens 2
developments. The
VR area (Oculus, Vive, Index) will be done additionally.</p>
</div>
</li>
<li>
<div class="single-experience">
<h4>QA Tester</h4>
<span>Ubisoft</span>
<span>10/2020 - 10/2022</span>
<p>Ad-Hoc & Regression Testing of Technical Alphas (MVP) of various Triple AAA
videogames.</p>
</div>
</li>
<li>
<div class="single-experience">
<h4>Content Moderator</h4>
<span>Turbo Ad GmbH</span>
<span>09/2014 - 08/2015</span>
<p>Responsible for verifying the functionality and compliance of registered websites
in accordance with company policies and compatibility with company software.</p>
</div>
</li>
</ul>
</div>
</div>
<div class="col-lg-6 col-sm-6 col-11 skills wow fadeInUp" data-wow-duration="1.5s"
style="visibility: visible; animation-duration: 1.5s; animation-name: fadeInUp;">
<h3>SKILLS</h3>
<div class="skills-progress-bar">
<div class="clearfix">
<span class="skillbar-title">Server Administration (Debian etc.)</span>
<span class="skills-bar-percent">98%</span>
<div class="skillbar" data-percent="98%">
<div class="skillbar-bar first-skill" style="width: 98%;"></div>
</div>
</div>
<div class="clearfix">
<span class="skillbar-title">Programming (PHP 7/Vue.js/CSS3)</span>
<span class="skills-bar-percent">85%</span>
<div class="skillbar" data-percent="85%">
<div class="skillbar-bar second-skill" style="width: 85%;"></div>
</div>
</div>
<div class="clearfix">
<span class="skillbar-title">Wordpress</span>
<span class="skills-bar-percent">60%</span>
<div class="skillbar" data-percent="60%">
<div class="skillbar-bar fourth-skill" style="width: 60%;"></div>
</div>
</div>
</div>
<div class="align-content-center text-center">
<a href="./files/skillsheet.pdf" class="download-cv hvr-icon-hang"> DOWNLOAD MY SKILLSHEET
</a>
</div>
<div class="align-content-center text-center">
<a href="./files/cv-de-1.pdf" class="download-cv hvr-icon-hang"> DOWNLOAD MY CV
</a>
</div>
</div>
</div>
</div>
</section>
<!-- =============================
End About Me
=============================== -->
<!-- =============================
Start Experience //@todo: Add hover effect with more information
=============================== -->
<section class="services" id="experience">
<div class="container">
<div class="row">
<div class="col-lg-8 mx-auto col-sm-10">
<div class="wow fadeInUp" data-wow-duration="1.5s"
style="visibility: visible; animation-duration: 1.5s; animation-name: fadeInUp;">
<div class="services-heading">
<div class="bar"></div>
<h1>EXPERIENCES</h1>
</div>
<div class="row justify-content-center">
<div class="col-lg-4 col-sm-4 col-12 services-icon image-wrapper">
<div class="service-img">
<img src="./images/logos/xboxdev.png" alt="XboxDev Logo"
title="XboxDev - Das Newsportal">
</div>
<div class="overlay p-2 px-3">
<strong>XboxDev</strong>
<strong>Industries News</strong>
<p>As the founder and editor-in-chief, I oversee the creation,
development
and the operation of the news portal around developers and business news
with the focus on the Xbox world.</p>
</div>
<!--<div class="service-label">Founding and Managment</div>-->
</div>
<div class="col-lg-4 col-sm-4 col-12 services-icon image-wrapper">
<div class="service-img">
<img src="./images/logos/keywordstudios.png" alt="Keyword Studios Logo"
title="Keyword Studios - Testing of triple a games">
</div>
<div class="overlay p-2 px-3">
<strong>Keyword Studios</strong>
<strong>Testing of triple a games</strong>
<p>In regular project specific assignments, I test the stability of
backend servers of corresponding triple A title in regression and load
tests.</p>
</div>
<!--<<div class="service-label">Quality Assurance</div>-->
</div>
<div class="col-lg-4 col-sm-4 col-12 services-icon image-wrapper">
<div class="service-img">
<img src="./images/logos/realworldone.png" alt="Realworld One GmbH Logo"
title="Realworld One GmbH - Industrial Training with augmented and virtual reality">
</div>
<div class="overlay p-2 px-3">
<strong>Realworld One GmbH</strong>
<strong>AR/VR Testing</strong>
<p>Development, execution of regression tests, smoke checks and
exploratory testing of e-learning software based on augmented reality and
virtual reality application. Testing MVPs and POCs of various augmented reality
applications.</p>
</div>
<!--<<div class="service-label">Quality Assurance Augmented Reality</div>-->
</div>
<div class="col-lg-4 col-sm-4 col-12 services-icon image-wrapper">
<div class="service-img">
<img src="./images/logos/ubisoft.png" alt="Ubisoft Logo"
title="Ubisoft - Testing of Triple A Games">
</div>
<div class="overlay p-2 px-3">
<strong>Ubisoft</strong>
<p>In regular project specific assignments, I test the stability of
backend servers of corresponding triple A title in regression and load
tests.</p>
</div>
<!--<<div class="service-label">Quality Assurance Triple A Games</div>-->
</div>
<div class="col-lg-4 col-sm-4 col-12 services-icon image-wrapper">
<div class="service-img">
<img src="./images/logos/bluebyte.jpg" alt="Bluebyte Logo"
title="Bluebyte">
</div>
<div class="overlay p-2 px-3">
<strong>Bluebyte</strong>
<p>In regular project specific assignments, I test the stability of
backend servers of corresponding triple A title in regression and load
tests.</p>
</div>
<!--<<div class="service-label">Quality Assurance Triple A Games</div>-->
</div>
<div class="col-lg-4 col-sm-4 col-12 services-icon image-wrapper">
<div class="service-img">
<img src="./images/logos/daqa.png" alt="DAQA Logo"
title="DAQA - Testing of Triple A Games">
</div>
<div class="overlay p-2 px-3">
<strong>DAQA</strong>
<p>In regular project specific assignments, I test the stability of
backend servers of corresponding triple A title in regression and load
tests.</p>
</div>
<!--<<div class="service-label">Quality Assurance Triple A Games</div>-->
</div>
<div class="col-lg-4 col-sm-4 col-12 services-icon image-wrapper">
<div class="service-img">
<img src="./images/logos/hashicorp.png" alt=""
title="Hashi Corp - Translation of business documents">
</div>
<div class="overlay p-2 px-3">
<strong>Hashi Corp</strong>
<p>Translation of technical documentation for presentations and
information sheets.</p>
</div>
<!--<<div class="service-label">Translations</div>-->
</div>
<div class="col-lg-4 col-sm-4 col-12 services-icon image-wrapper">
<div class="service-img">
<img src="./images/logos/vmc.png" alt="VMC Logo"
title="VMC - Testing of Triple A Games">
</div>
<div class="overlay p-2 px-3">
<strong>VMC</strong>
<p>In regular project specific assignments, I test the stability of
backend servers of corresponding triple A title in regression and load
tests.</p>
</div>
<!--<<div class="service-label">VMC</div>-->
</div>
<div class="col-lg-4 col-sm-4 col-12 services-icon image-wrapper">
<div class="service-img">
<img src="./images/logos/adition-logo.svg" alt="Adition Technologies AG Logo"
title="Adition Technologies - Development and Testing of Adserver">
</div>
<div class="overlay p-2 px-3">
<strong>Adition Technologies AG</strong>
<strong>Ad Serving</strong>
<p>Programming, testing and documentation of the user panel for ad
serving technology. </p>
</div>
<!--<<div class="service-label">Development (PHP, CSS and more)</div>-->
</div>
<div class="col-lg-4 col-sm-4 col-12 services-icon image-wrapper">
<div class="service-img">
<img src="./images/logos/virtualmindsag.png" alt="Virtual Minds AG Logo"
title="Virtual Minds AG">
</div>
<div class="overlay p-2 px-3">
<strong>Virtual Minds AG</strong>
<p>In regular project specific assignments, I test the stability of
backend servers of corresponding triple A title in regression and load
tests.</p>
</div>
<!--<<div class="service-label">Ad Technology</div>-->
</div>
<div class="col-lg-4 col-sm-4 col-12 services-icon image-wrapper">
<div class="service-img">
<img src="./images/logos/turboadgmbh.png" alt="Turbo Ad GmbH Logo"
title="Turbo Ad GmbH - Content Moderator">
</div>
<div class="overlay p-2 px-3">
<strong>Turbo Ad GmbH</strong>
<strong>Content Moderator</strong>
<p>As a content moderator I was responsible for the admissibility of
websites in the trade of standardized services of website marketing.</p>
</div>
<!--<<div class="service-label">Content Managment</div>-->
</div>
<div class="col-lg-4 col-sm-4 col-12 services-icon image-wrapper">
<div class="service-img">
<img src="./images/logos/viadux-logo.png" alt="Viadux Logo"
title="Viadux">
</div>
<div class="overlay p-2 px-3">
<strong>Viadux</strong>
<strong>Software Tester</strong>
<p>Quality assurance of the operations control system software and analysis of the infrastructure..</p>
</div>
<!--<<div class="service-label">Content Managment</div>-->
</div>
<div class="col-lg-4 col-sm-4 col-12 services-icon image-wrapper">
<div class="service-img">
<img src="./images/logos/microsoft.png" alt="Microsoft Logo"
title="Microsoft Logo">
</div>
<div class="overlay p-2 px-3">
<strong>Microsoft</strong>
<strong>Insider Programs</strong>
<p>Pre-testing, quality assurance and more for Windows, Xbox and Hololens.</p>
</div>
<!--<<div class="service-label">Content Managment</div>-->
</div>
<div class="col-lg-4 col-sm-4 col-12 services-icon image-wrapper">
<div class="service-img">
<img src="./images/logos/microsoft.png" alt="Turbo Ad GmbH Logo"
title="Turbo Ad GmbH - Content Moderator">
</div>
<div class="overlay p-2 px-3">
<strong>MSFT</strong>
<strong>Bug Bounty</strong>
<p>Various bug reports - technology implementations and Xbox</p>
</div>
<!--<<div class="service-label">Content Managment</div>-->
</div>
<div class="col-lg-4 col-sm-4 col-12 services-icon image-wrapper">
<div class="service-img">
<img src="./images/logos/prime-video.jpg" alt="Amazon Prime Video"
title="Prime Video">
</div>
<div class="overlay p-2 px-3">
<strong>Prime Video</strong>
<strong>Bug Bounty</strong>
<p>Analysis of a faulty HDCP implementation that allowed 4K content to be recorded directly.</p>
</div>
<!--<<div class="service-label">Content Managment</div>-->
</div>
<div class="col-lg-4 col-sm-4 col-12 services-icon image-wrapper">
<div class="service-img">
<img src="./images/logos/netflix.png" alt="Netflix Logo"
title="Netflix">
</div>
<div class="overlay p-2 px-3">
<strong>Netflix</strong>
<strong>Bug Bounty</strong>
<p>Analysis of a faulty HDCP implementation that allowed 4K content to be recorded directly.</p>
</div>
<!--<<div class="service-label">Content Managment</div>-->
</div>
<div class="col-lg-4 col-sm-4 col-12 services-icon image-wrapper">
<div class="service-img">
<img src="./images/logos/sparkasse.png" alt="Sparkasse Logo"
title="Sparkasse">
</div>
<div class="overlay p-2 px-3">
<strong>Sparkasse</strong>
<strong>Bug Bounty</strong>
<p>Finding and reporting a security vulnerability (admin bypass) in a competition with the option of selecting the winner. </p>
</div>
<!--<<div class="service-label">Content Managment</div>-->
</div>
</div>
</div>
</div>
</div>
</div>
<div class="need-service wow fadeInUp" data-wow-duration="1.5s"
style="visibility: visible; animation-duration: 1.5s; animation-name: fadeInUp;">
<h1> NEED A SERVICE? </h1>
<a href="#contact"> SAY HELLO! </a>
</div>
</section>
<!-- =============================
End Experience
=============================== -->
<!-- =============================
Start Services
=============================== -->
<section class="services" id="services">
<div class="container">
<div class="row">
<div class="col-lg-8 mx-auto col-sm-10">
<div class="wow fadeInUp" data-wow-duration="1.5s"
style="visibility: visible; animation-duration: 1.5s; animation-name: fadeInUp;">
<div class="services-heading">
<div class="bar"></div>
<h1>SERVICES</h1>
</div>
<div class="row">
<div class="col-lg-4 col-sm-4 col-12 services-icon">
<div class="service-img">
<i class="far fa-file-code fa-6x"></i>
</div>
<div class="service-label"> Web Development</div>
</div>
<div class="col-lg-4 col-sm-4 col-12 services-icon">
<div class="service-img">
<i class="fas fa-search fa-6x"></i>
</div>
<div class="service-label"> Quality Assurance</div>
</div>
<div class="col-lg-4 col-sm-4 col-12 services-icon">
<div class="service-img">
<i class="fas fa-server fa-6x"></i>
</div>
<div class="service-label"> Hosting & Domain Service</div>
</div>
<div class="col-lg-4 col-sm-4 col-12 services-icon">
<div class="service-img">
<i class="fas fa-language fa-6x"></i>
</div>
<div class="service-label"> Translations</div>
</div>
<div class="col-lg-4 col-sm-4 col-12 services-icon">
<div class="service-img">
<i class="fas fa-file-signature fa-6x"></i>
</div>
<div class="service-label"> Conulting</div>
</div>
<div class="col-lg-4 col-sm-4 col-12 services-icon">
<div class="service-img">
<i class="fas fa-mobile fa-6x"></i>
</div>
<div class="service-label text-center"> Mobile App Development</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="need-service wow fadeInUp" data-wow-duration="1.5s"
style="visibility: visible; animation-duration: 1.5s; animation-name: fadeInUp;">
<h1> NEED A SERVICE? </h1>
<a href="#contact"> SAY HELLO! </a>
</div>
</section>
<!-- =============================
End Services
=============================== -->
<!-- =============================
Start Portfolio
=============================== -->
<!-- @todo Modal Form with Bootstrap -->
<section class="portfolio" id="portfolio">
<div class="container-fluid text-center">
<div class="row portfolio-holder text-left">
<div class="col-12 text-center">
<h1 class="wow fadeInUp" data-wow-duration="1.5s"
style="visibility: visible; animation-duration: 1.5s; animation-name: fadeInUp;">PORTFOLIO</h1>
</div>
<div class="filtering wow fadeInUp" data-wow-duration="1.5s"
style="visibility: visible; animation-duration: 1.5s; animation-name: fadeInUp;">
<ul class="portfolio-navigation">
<li data-filter="all" class="hvr-sweep-to-right active"> All Items</li>
<li data-filter="1" class="hvr-sweep-to-right"> Websites</li>
<li data-filter="2" class="hvr-sweep-to-right"> Quality Assurance</li>
<!--<li data-filter="3" class="hvr-sweep-to-right"> </li>-->
<li data-filter="4" class="hvr-sweep-to-right"> Other</li>
</ul>
</div>
<div class="col-lg-10 col-md-10 col-sm-10 col-10 mx-auto">
<div class="row filtr-container wow fadeInUp list" data-wow-duration="1.5s"
style="padding: 0px; position: relative; height: 2592px; visibility: visible; animation-duration: 1.5s; animation-name: fadeInUp;">
<!-- =============================
Start Category 1 Pages
=============================== -->
<div class="col-lg-4 col-md-6 col-sm-6 col-12 filtr-item" data-category="1"
style="opacity: 1; transform: scale(1) translate3d(1413px, 1037px, 0px); backface-visibility: hidden; perspective: 1000px; transform-style: preserve-3d; position: absolute; transition: all 0.5s ease-out 0ms; pointer-events: auto;">
<div class="item-holder">
<a href="./images/projects/huskynarr.de.png" title="Huskynarr">
<img alt="item1" src="./images/projects/huskynarr.de.png">
<div class="item-caption">
<h2>Huskynarr</h2>
<p>Private Project about my Gaming Identy with the Domain huskynarr.de</p>
<div class="item-created">Jan 2008</div>
</div>
</a>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-6 col-12 filtr-item" data-category="1"
style="opacity: 1; transform: scale(1) translate3d(706px, 0px, 0px); backface-visibility: hidden; perspective: 1000px; transform-style: preserve-3d; position: absolute; transition: all 0.5s ease-out 0ms; pointer-events: auto;">
<div class="item-holder">
<a href="./images/projects/xboxdev.com.png" title="XboxDev">
<img alt="item2" src="./images/projects/xboxdev.com.png">
<div class="item-caption">
<h2>XboxDev</h2>
<p>Founded and created the Xbox Developer Platform for News and Tutorials round
about the Gaming
Industry with focus on Xbox.</p>
<div class="item-created">Mar 2018</div>
</div>
</a>
</div>
</div>
<!-- =============================
Start Category 2 QA
=============================== -->
<div class="col-lg-4 col-md-6 col-sm-6 col-12 filtr-item" data-category="2"
style="opacity: 1; transform: scale(1) translate3d(1413px, 0px, 0px); backface-visibility: hidden; perspective: 1000px; transform-style: preserve-3d; position: absolute; transition: all 0.5s ease-out 0ms; pointer-events: auto;">
<div class="item-holder">
<a href="./images/projects/pexels-pixabay-261679.jpg" title="NDA">
<img alt="item13" src="./images/projects/pexels-pixabay-261679.jpg">
<div class="item-caption">
<h2>NDA</h2>
<p>In the last years I have realized a lot of tests, but most of them are under
a non disclosure
agreement.</p>
<div class="item-created">Nov 2017</div>
</div>
</a>
</div>
</div>
<!-- =============================
Start Category 3 Keynotes
=============================== -->
<!--<div class="col-lg-4 col-md-6 col-sm-6 col-12 filtr-item" data-category="3"
style="opacity: 1; transform: scale(1) translate3d(1412.75px, 518.422px, 0px); backface-visibility: hidden; perspective: 1000px; transform-style: preserve-3d; position: absolute; transition: all 0.5s ease-out 0ms; pointer-events: auto;">
<div class="item-holder">
<a href="./images/projects/blank.jpg" title="More at <a Downloadlinks>">
<img alt="item15" src="./images/projects/blank.jpg">
<div class="item-caption">
<h2>OpSec - Does and Donts</h2>
<p>Keynote about Security</p>
<div class="item-created">2014</div>
</div>
</a>
</div>
</div>-->
<!-- =============================
Start Category 4 Other
=============================== -->
<!--<div class="col-lg-4 col-md-6 col-sm-6 col-12 filtr-item" data-category="4"
style="opacity: 1; transform: scale(1) translate3d(1412.75px, 518.422px, 0px); backface-visibility: hidden; perspective: 1000px; transform-style: preserve-3d; position: absolute; transition: all 0.5s ease-out 0ms; pointer-events: auto;">
<div class="item-holder">
<a href="./images/projects/blank.jpg" title="A lot of more">
<img alt="item15" src="./images/projects/blank.jpg">
<div class="item-caption">
<h2>Water Cooling<br>System</h2>
<p>Project Aqualocus</p>
<div class="item-created">Since 2010</div>
</div>
</a>
</div>
</div>-->
<div class="col-lg-4 col-md-6 col-sm-6 col-12 filtr-item" data-category="4"
style="opacity: 1; transform: scale(1) translate3d(1412.75px, 518.422px, 0px); backface-visibility: hidden; perspective: 1000px; transform-style: preserve-3d; position: absolute; transition: all 0.5s ease-out 0ms; pointer-events: auto;">
<div class="item-holder">
<a href="https://i0.wp.com/backend.huskynarr.de/wp-content/uploads/2019/12/crypto.jpg"
title="HDCP Bypassing on Xbox Series X with AverMedia Capture Card 4K GC573">
<img alt="item15"
src="https://i0.wp.com/backend.huskynarr.de/wp-content/uploads/2019/12/crypto.jpg" class="portfolio-image">
<div class="item-caption">
<h2>PoC - HDCP Issue</h2>
<p>Faulty Netflix/Amazon HDCP Implementation on Xbox</p>
<div class="item-created">2020</div>
</div>
</a>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-6 col-12 filtr-item" data-category="4"
style="opacity: 1; transform: scale(1) translate3d(1412.75px, 518.422px, 0px); backface-visibility: hidden; perspective: 1000px; transform-style: preserve-3d; position: absolute; transition: all 0.5s ease-out 0ms; pointer-events: auto;">
<div class="item-holder">
<a href="https://i0.wp.com/backend.huskynarr.de/wp-content/uploads/2019/12/crypto.jpg"
title="HDCP Bypassing on Xbox Series X with AverMedia Capture Card 4K GC573">
<img alt="item15"
src="/images/projects/rbtv-page.png" class="portfolio-image">
<div class="item-caption">
<h2>RBTV.info</h2>
<p>Creation and management of the community project.</p>
<div class="item-created">2016 - 2022</div>
</div>
</a>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-6 col-12 filtr-item" data-category="4"
style="opacity: 1; transform: scale(1) translate3d(1412.75px, 518.422px, 0px); backface-visibility: hidden; perspective: 1000px; transform-style: preserve-3d; position: absolute; transition: all 0.5s ease-out 0ms; pointer-events: auto;">
<div class="item-holder">
<a href="https://i0.wp.com/backend.huskynarr.de/wp-content/uploads/2019/12/crypto.jpg"
title="HDCP Bypassing on Xbox Series X with AverMedia Capture Card 4K GC573">
<img alt="item15"
src="https://i0.wp.com/backend.huskynarr.de/wp-content/uploads/2019/12/crypto.jpg" class="portfolio-image">
<div class="item-caption">
<h2>Gamescom Countdown</h2>
<p>Countdown website for gamescom. Including Discord and Twitter Bot.</p>
<div class="item-created">2018-2023</div>
</div>
</a>
</div>
</div>
<!-- https://amzn.to/3d5O7F3 -->
<div class="col-lg-4 col-md-6 col-sm-6 col-12 filtr-item" data-category="4"
style="opacity: 1; transform: scale(1) translate3d(1413px, 518px, 0px); backface-visibility: hidden; perspective: 1000px; transform-style: preserve-3d; position: absolute; transition: all 0.5s ease-out 0ms; pointer-events: auto;">
<div class="item-holder">
<a href="./images/projects/website%20ss%20-%20portfolio.png"
title="Through many requests for tips and tricks, the idea of the book was born. This is now available exclusively on Amazon.">
<img alt="item15"
src="./images/projects/website%20ss%20-%20portfolio.png">
<div class="item-caption">
<h2>Gamescom<br>Survival<br>Guide</h2>
<p>Guide for parents to survival the gamescom. On <a
class="text-primary" href="https://amzn.to/3d5O7F3"
target="_blank">Amazon
exclusive.</a></p>
<div class="item-created">2020</div>
</div>
</a>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-6 col-12 filtr-item" data-category="4"
style="opacity: 1; transform: scale(1) translate3d(1412.75px, 518.422px, 0px); backface-visibility: hidden; perspective: 1000px; transform-style: preserve-3d; position: absolute; transition: all 0.5s ease-out 0ms; pointer-events: auto;">
<div class="item-holder">
<a href="./images/projects/blank.jpg"
title="This was a reference project for the optimization of fan designs in the field of hardware cooling.">
<img src="./images/projects/cologna-page.png" alt="item15">
<div class="item-caption">
<h2>Cologna</h2>
<p>Acquisition, distribution and further development of the browser game Cologna. One of the oldest browser games on the market.</p>
<div class="item-created">2014-2024</div>
</div>
</a>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-6 col-12 filtr-item" data-category="4"
style="opacity: 1; transform: scale(1) translate3d(1413px, 518px, 0px); backface-visibility: hidden; perspective: 1000px; transform-style: preserve-3d; position: absolute; transition: all 0.5s ease-out 0ms; pointer-events: auto;">
<div class="item-holder">
<a href="https://i0.wp.com/backend.huskynarr.de/wp-content/uploads/2019/12/crypto.jpg" title="A lot of more">
<img alt="item15" src="https://i0.wp.com/backend.huskynarr.de/wp-content/uploads/2019/12/crypto.jpg">
<div class="item-caption">
<h2>Gamescom</br>.Press</h2>
<p>Community Fan Projekt</p>
<div class="item-created">2016-2023</div>
</div>
</a>
</div>
</div>
</div>
</div>
</div>
<!--<button class="loadmore" id="next">Load More</button>-->
</div>
</section>
<section class="contact" id="contact">
<div class="container">
<div class="row">
<div class="contact-holder col-lg-8 offset-lg-2 col-sm-8 offset-sm-2">
<h1 class="wow fadeInUp" data-wow-duration="1.5s"
style="visibility: visible; animation-duration: 1.5s; animation-name: fadeInUp;">SAY HELLO!</h1>
<form action="https://formspree.io/f/mnqogpdr" data-toggle="validator" method="POST"
novalidate="true">
<div class="form-container row wow fadeInUp" data-wow-duration="1.5s"
style="visibility: visible; animation-duration: 1.5s; animation-name: fadeInUp;">
<div class="form-group col-lg-6">
<label for="username"></label>
<input class="form-control" id="username" name="username" placeholder="Name" required=""
type="text">
<div class="help-block with-errors"></div>
</div>
<div class="form-group col-lg-6">
<label for="email"></label>
<input class="form-control" id="email" name="email" placeholder="Email" required=""
type="email">
<div class="help-block with-errors"></div>
</div>
<div class="form-group col-lg-12">
<label for="message"></label>
<textarea class="form-control" id="message" name="message" placeholder="Message"
rows="12"></textarea>
<div class="help-block with-errors"></div>
</div>
<div class="form-group col-lg-12 sub-button">
<button class="submit form-control hvr-icon-push disabled" type="submit" value="send">
Submit
</button>
</div>
</div>
</form>
</div>
</div>
<div class="row">
<div class="footer col-lg-10 offset-lg-1">
<hr>
<div class="footer-icons">
<div><a href="https://www.xing.com/profile/Sebastian_Selinger"><i class="fa fa-xing"></i></a>
</div>
<div><a href="https://www.linkedin.com/in/SebastianSelinger/"><i class="fa fa-linkedin"></i></a>
</div>
<div><a href="https://www.facebook.com/sebastianvonselinger"><i
class="fa fa-facebook-f"></i></a></div>
</div>
<div class="to-top">
<a href="#home"><i class="fa fa-chevron-up"></i></a>
</div>
<div class="credit">
<i class="fa fa-copyright"></i> All rights reserved by <b>Sebastian Selinger</b>
</div>
</div>
</div>
</div>
</section>
<!-- =============================
End Contact
=============================== -->
<a class="scroll-up hvr-icon-up scroll-up-show" href="#home"></a>
</div>