-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
122 lines (110 loc) · 3.35 KB
/
index.html
File metadata and controls
122 lines (110 loc) · 3.35 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Wouter Bant</title>
<style>
body {
font-family: 'Courier New', Courier, monospace;
background-color: #000;
color: #0f0;
max-width: 800px;
margin: 0 auto;
padding: 20px;
line-height: 1.5;
text-shadow: 0 0 10px #0f0;
}
@media (max-width: 900px) {
body {
font-size: 1.5em;
}
}
h1 {
color: #0f0;
text-align: center;
border-bottom: 2px solid #0f0;
padding-bottom: 10px;
}
@keyframes typing {
from { width: 0; }
to { width: 100%; }
}
@keyframes blink-caret {
from, to { border-color: transparent; }
50% { border-color: #0f0; }
}
@keyframes blink-animation {
to {
visibility: hidden;
}
}
.typing {
width: 100%;
white-space: nowrap;
overflow: hidden;
border-right: 3px solid #0f0;
border-top: none;
border-bottom: none;
border-left: none;
animation: typing 3.0s steps(40, end) forwards, blink-caret 0.75s step-end 3.5s 4 forwards;
}
p {
text-indent: 20px;
}
ul {
list-style-type: none;
padding: 0;
}
li {
margin-bottom: 10px;
}
a {
color: #0ff;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.blink {
animation: blink-animation 2.5s steps(5, start) infinite;
}
.right {
text-align: right;
}
</style>
</head>
<body>
<h1 class="typing">Wouter Bant </h1>
<p>
Master Student AI @ the University of Amsterdam graduating June 2025. Current GPA: 9.0/10.0.
</p>
<p>
Did my Bachelor in Econometrics also @ the University of Amsterdam graduating with honours and a 9.15/10.0 GPA.
</p>
<p>
Software engineer @ Opt Out Advertising. Main technologies used: Java, Typescript, React, Airflow, Ansible, Azure, Git.
</p>
<p>
Teacher @ AthenaStudies and previously @ the University of Amsterdam. Mainly related to statistics and occasionally economics.
</p>
<p>
Interested in Computer Vision, LLMs, Recommender Systems, and Software Engineering.
</p>
<p class="blink">> Links:</p>
<ul>
<li>
<a href="https://www.linkedin.com/in/wouter-bant-1b1b1b1b1/">[LinkedIn]</a>
</li>
<li>
<a href="https://www.github.com/wouterbant">[GitHub]</a>
</li>
<li>
<a href="https://leetcode.com/u/Wouter01/">[Leetcode]</a>
</li>
</ul>
<p class="right">
> > Contact me at <script type="text/javascript">document.write(`[firstname][lastname]01[at]gmail[dot]com`);</script>
</p>
</body>
</html>