-
Notifications
You must be signed in to change notification settings - Fork 0
/
dutch.html
219 lines (206 loc) · 7.24 KB
/
dutch.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
<!DOCTYPE html>
<html lang="nl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Tim van Osch | CV</title>
<link rel="stylesheet" href="/bootstrap-reboot.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/grid.min.css"
integrity="sha256-0byaBKPnVZD74fsVtLfcdiEYScKS7A7mI3RW3D4R1WY=" crossorigin="anonymous">
<link rel="stylesheet" href="./dutch.css">
<link rel="stylesheet" href="./print.css">
<script src="https://cdn.jsdelivr.net/gh/alpinejs/[email protected]/dist/alpine.js" defer></script>
<script>
document.write('<script src="http://' + (location.host || 'localhost').split(':')[0] + ':35729/livereload.js?snipver=1"></' + 'script>')
</script>
</head>
<body>
<div class="header">
<div class="container title-container">
<div class="row">
<div class="col text-white">
<h1 class="title">Tim van Osch</h1>
<h3 class="subtitle">Software-Engineer, Ondernemer</h3>
</div>
</div>
</div>
<div class="container" style="padding-bottom: 30px;">
<!-- Render with Alpine.JS -->
<div class="tags-container" x-data="{ tagList: getTags() }">
<template x-for="tag in tagList" :key="tag">
<span class="tag" x-html="tag"></span>
</template>
</div>
</div>
</div>
<div class="container">
<div class="row">
<!-- Zijbalk -->
<div id="sidebar" class="col-3" x-data="{ entries: sidebarInfo(), references: getReferences() }">
<!-- Contact / Social info -->
<span class="heading">Contact</span>
<template x-for="entry in entries" :key="entry">
<p class="ml-3">
<strong x-html="entry.key"></strong><br />
<span x-html="entry.value"></span>
</p>
</template>
<!-- References -->
<span class="heading mt-4">Referenties</span>
<template x-for="ref in references" :key="ref">
<p class="ml-3">
<strong x-html="ref.title"></strong><br />
<span x-html="ref.link" style="font-style: italic;"></span><br />
<span x-html="ref.phone"></span>
</p>
</template>
</div>
<!-- Main content -->
<div id="content" class="col-9">
<div class="row">
<div id="about-me" class="col-12 text-justify">
<span class="heading">Over mij</span>
<p class="ml-3">
Van kinds af aan ben ik gefascineerd met computers en technologie. Door de jaren heen heb ik deze
fascinatie kunnen uiten via software-engineering en web-design. Ik houd van een nieuwe uitdaging en ik
sta altijd open om wat nieuws te leren.<br />
Ik heb kennis in diverse programmeertalen. Momenteel ben ik actief bezig met Node.JS en ben ik kennis aan
het opdoen van Go-Lang.
</p>
</div>
</div>
<div class="row">
<!-- Ervaring -->
<div id="experiences" class="col-12 mt-3" x-data="{ experiences: getExperiences() }">
<span class="heading">Ervaring</span>
<!-- Render with Alpine.JS -->
<template x-for="exp in experiences">
<div class="experience row">
<div class="exp-timeframe col-2">
<span x-html="exp.fromDate"></span><br />
<span x-html="exp.toDate"></span>
</div>
<div class="exp-content col">
<h3 x-html="exp.title"></h3>
<p x-html="exp.description"></p>
</div>
</div>
</template>
</div>
</div>
<div class="row">
<!-- Opleiding -->
<div id="education" class="col-12 mt-3" x-data="{ education: getEducation() }">
<span class="heading">Opleiding</span>
<!-- Render with Alpine.JS -->
<template x-for="ed in education">
<div class="education row">
<div class="text-center col-2 pt-1">
<span x-html="ed.date"></span>
</div>
<div class="ed-content col">
<h3 x-html="ed.title" class="ed-title" :class="{ 'mb-0': ed.comment !== '' }"></h3>
<p class="text-mute" x-html="ed.comment"></p>
</div>
</div>
</template>
</div>
</div>
</div>
</div>
</div>
</body>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.24.0/moment.min.js"></script>
<script>
/**
*
*/
const sidebarInfo = () => [
{ key: 'Mobiel nummer', value: '+31640190484' },
{ key: 'E-Mailadres', value: '[email protected]' },
{ key: 'Geboortedatum', value: '17 Mei 1999' },
{ key: 'Woonplaats', value: 'Generaal Stedmanstraat 55<br />5623 HW, Eindhoven' },
{ key: 'Github', value: 'github.com/TimVosch<br/>github.com/Pollex' },
{ key: 'GitLab', value: 'gitlab.com/TimVosch' },
{ key: 'LinkedIn', value: 'linkedin.com/in/tvanosch/' },
]
/**
*
*/
const getReferences = () => [
{ title: 'Dhr. J. Goossen', phone: '+31614316105', link: 'Projectleider Multiflexmeter' },
]
/**
*
*/
const getTags = () => [
'Node.JS',
'Docker',
'Leergierig',
'Open-Source',
'Tweetalig',
];
/**
*
*/
const getExperiences = () => [
// Multiflexmeter
{
title: 'Pollex\'',
fromDate: 'Aug 2017',
toDate: 'Tot heden',
description: 'Na mijn VWO examen heb ik een eenmanszaak opgericht genaamd Pollex\'. Hier ben ik actief als software- en firmware-engineer, maar ook als web-developer.',
},
// Multiflexmeter
{
title: 'Multiflexmeter Meetapparatuur',
fromDate: 'Jul 2016',
toDate: 'Tot heden',
description: 'De Multiflexmeter is een Open-Source monitoringsapparaat. Hier draag ik bij aan de firmware van het apparaat en de infrastructuur van verschillende systemen.',
},
// Stage Provincie Zeeland
{
title: 'Provincie Zeeland: SensorBucket',
fromDate: 'Okt 2019',
toDate: 'Jan 2019',
description: 'Mijn 3e jaars stage heb ik gelopen bij de Provincie Zeeland. Als opdracht heb ik een systeem ontwikkeld dat datastromen in diverse formaten van verschillende bronnen generaliseert conform Open-Standaarden, zodat deze data makkelijk aansluit op interne systemen.',
},
];
/**
*
*/
const getEducation = () => [
// HBO Bachelor
{
title: 'HBO Bachelor Software Engineer',
date: 'Huidige<br/>studie',
comment: 'Versneld traject',
},
// Versneld traject P
{
title: 'HBO Propedeuse Software Engineer',
date: '2019',
comment: 'Versneld traject',
},
// VWO Examen
{
title: 'Voorbereidend Wetenschappelijk Onderwijs',
date: '2017',
comment: 'Profielwerkstuk: Moderne Encryptie',
},
// O&O Examen
{
title: 'Certificaat Onderzoek en Ontwerp',
date: '2017',
comment: 'Meesterproef: Multiflexmeter Open-Source monitoring',
},
// Anglia Examen
{
title: 'Anglia Certificaat Engels',
date: '2016',
comment: 'Niveau: Masters C2',
},
];
</script>
</html>