-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhomepage_en.html
463 lines (462 loc) · 17.6 KB
/
homepage_en.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Jurgen Michorius - COBOL Specialist</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap&family=Anton&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./styles/style.css" />
<link rel="stylesheet" href="./styles/desktop-nav.css" />
<link rel="stylesheet" href="./styles/mobile-nav.css" />
<link rel="stylesheet" href="./styles/hero-container.css" />
<link rel="stylesheet" href="./styles/skill-container.css" />
<link rel="stylesheet" href="./styles/about-container.css" />
<link rel="stylesheet" href="./styles/expertise-container.css" />
<link rel="stylesheet" href="./styles/education-container.css" />
<link rel="stylesheet" href="./styles/footer-container.css" />
<script
src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"
defer
></script>
<script src="./scripts/hamburger.js" defer></script>
<script src="./scripts/read-more.js" defer></script>
<script src="./scripts/dropdown.js" defer></script>
</head>
<body>
<header>
<nav>
<a href="./homepage_en.html"
><img src="./assets/images/logo.svg" alt="" class="logo"
/></a>
<div class="menu-items-container">
<ul class="menu-items">
<a href="./homepage_en.html" class="menu-item active">
<li>Home</li>
</a>
<a href="./public/about_en.html" class="menu-item">
<li>About me</li>
</a>
<a href="./public/expertise_en.html" class="menu-item">
<li>Expertise</li>
</a>
<div class="dropdown">
<div href="./homepage_en.html" class="language-wrapper">
<img src="./assets/images/english-flag.png" alt="" />English
</div>
<div class="dropdown-content">
<a href="./index.html" class="language-wrapper">
<img src="./assets/images/dutch-flag.png" alt="" />Dutch
</a>
<a href="./homepage_de.html" class="language-wrapper"
><img src="./assets/images/german-flag.png" alt="" />German</a
>
</div>
</div>
<div class="contact-dropdown">
<button class="dropbtn">Contact</button>
<div class="dropdown-content">
<a href="tel:+31612047218" class="contact-item"
><img src="./assets/icons/phone.svg" alt="" />
<p>+31 (0)612 047 218</p>
</a>
<a href="mailto:info@cobol.nl" class="contact-item"
><img src="./assets/icons/mail.svg" alt="" />
<p>info@cobol.nl</p>
</a>
<a
href="https://www.linkedin.com/in/jurgen-michorius-5971942?originalSubdomain=nl"
target="_blank"
class="contact-item"
><img src="./assets/icons/linkedin.svg" alt="" />
<p>Jurgen Michorius</p>
</a>
</div>
</div>
</ul>
</div>
</nav>
<nav class="mobile-nav">
<div class="mobile-top">
<a href="#"
><img src="./assets/images/logo.svg" alt="" class="logo"
/></a>
<div class="dropdown">
<div href="./homepage_en.html" class="language-wrapper">
<img src="./assets/images/english-flag.png" alt="" />English
</div>
<div class="dropdown-content">
<a href="./index.html" class="language-wrapper">
<img src="./assets/images/dutch-flag.png" alt="" />Dutch
</a>
<a href="./homepage_de.html" class="language-wrapper"
><img src="./assets/images/german-flag.png" alt="" />German</a
>
</div>
</div>
<div class="hamburger" id="hamburger-11">
<span class="line"></span>
<span class="line"></span>
<span class="line"></span>
</div>
</div>
<div id="menu" class="menu-items-container">
<ul class="menu-items">
<a href="./homepage_en.html" class="menu-item">
<li>Home</li>
</a>
<a href="./public/about_en.html" class="menu-item">
<li>About me</li>
</a>
<a href="./public/expertise_en.html" class="menu-item">
<li>Expertise</li>
</a>
<div class="contact-container">
<a href="tel:+31612047218" class="contact-item">
<img src="./assets/icons/phone.svg" alt="" />
<p>+31 (0)612 047 218</p>
</a>
<a href="mailto:info@cobol.nl" class="contact-item">
<img src="./assets/icons/mail.svg" alt="" />
<p>info@cobol.nl</p>
</a>
<a
href="https://www.linkedin.com/in/jurgen-michorius-5971942?originalSubdomain=nl"
target="_blank"
class="contact-item"
>
<img src="./assets/icons/linkedin.svg" alt="" />
<p>Jurgen Michorius</p>
</a>
</div>
</ul>
</div>
<div id="backdrop" class="backdrop"></div>
</nav>
</header>
<main>
<section class="hero-container">
<div class="content-block">
<h1>Need COBOL expertise?</h1>
<p>
Hi, welcome to the website. I am Jurgen Michorius, working in COBOL
since 1998 and the owner of this website.
</p>
<ul class="check-list">
<li>
<img src="./assets/icons/check.svg" alt="" />Functional Designer
</li>
<li><img src="./assets/icons/check.svg" alt="" />Tester</li>
<li>
<img src="./assets/icons/check.svg" alt="" />Technical Designer
</li>
<li><img src="./assets/icons/check.svg" alt="" />Developer</li>
</ul>
<div class="button-wrapper">
<a href="./public/expertise_en.html" class="primary">Expertise</a>
</div>
</div>
<img src="./assets/images/jurgen-michorius.jpeg" alt="" />
</section>
<section id="skills" class="skill-container">
<ul>
<li>COBOL Developer</li>
<li>Functional Designer</li>
<li>Technical Designer</li>
<li>Tester</li>
<li>Test Coordinator</li>
<li>Team Leader</li>
<li>COBOL</li>
<li>IDMS</li>
<li>IDMSX</li>
<li>DB2</li>
<li>Mainframe</li>
<li>Endevor</li>
<li>JCL</li>
<li>TSO-ISPF</li>
<li>Roscoe</li>
<li>CICS</li>
<li>T-map</li>
<li>Microfocus COBOL</li>
<li>ADS</li>
<li>MAID</li>
<li>XML</li>
<li>XSD</li>
<li>Bizzdesign Enterprise Architect</li>
<li>Harvest</li>
<li>Scaled Agile environments</li>
<li>Scrum</li>
<li>Confluence</li>
<li>Service Oriented Architecture</li>
<li>Jira</li>
</ul>
</section>
<section id="about" class="about-container">
<div class="about-wrapper">
<div>
<h2>Let me introduce myself...</h2>
<p>
I was born on June 1, 1968, raised in Haaksbergen, and after
obtaining my VWO diploma, I moved to Wageningen to study
Environmental Hygiene at the Agricultural University. I graduated
in 1993 and worked for 3 years in the field of environmental
research and policy, lastly at Tennet, which then operated under
the name SEP (Collaborating Electricity Production Companies). At
SEP, I was involved in setting up an automated system that had to
provide environmental data required as input for the annual
mandatory environmental report. After the implementation, I took
on the role of functional administrator for this system.
</p>
</div>
<div>
<img src="./assets/images/wie-ben-ik-2.jpg" alt="" />
</div>
</div>
<div class="button-wrapper">
<a href="./public/about_en.html" class="primary">Read more</a>
</div>
</section>
<section id="expertise" class="expertise-container">
<h2>Expertise</h2>
<ul class="expertise-list">
<li class="expertise-item">
<div class="expertise-top">
<div class="expertise-details">
<h3>Tax Authorities - March 2018 to present</h3>
<ul class="role-list">
<li>Functional Designer</li>
</ul>
</div>
<img src="./assets/images/logo-belastingdienst.png" alt="" />
</div>
<div class="expertise-bottom">
<h4>Responsibilities</h4>
<ul class="activities-list">
<li>
Analyzing questions from the business and showing the pros and
cons of possible scenarios
</li>
<li>
Identifying requirements, processes, and information needs
</li>
<li>
Working on innovations and modifications of applications and
systems
</li>
<li>
Phasing out existing systems and implementing new robust
solutions
</li>
<li>
Collaborating with stakeholders, functional administrators,
and colleagues in the scrum teams
</li>
</ul>
</div>
</li>
<li class="expertise-item">
<div class="expertise-top">
<div class="expertise-details">
<h3>Achmea - April 2007 to February 2018</h3>
<ul class="role-list">
<li>Functional Designer</li>
<li>Technical Designer</li>
<li>Tester</li>
<li>COBOL Developer</li>
</ul>
</div>
<img src="./assets/images/logo-achmea.png" alt="" />
</div>
<div class="expertise-bottom">
<h4>Responsibilities</h4>
<ul class="activities-list">
<li>
Advising on both functional and technical aspects to the
department and clients.
</li>
<li>
Independently conducting impact analyses, preliminary studies,
and quotes according to set standards and guidelines.
</li>
<li>
Responsible for issuing indicative hours, preliminary studies,
and quotes within established guidelines and standards.
</li>
<li>Independently creating release plans</li>
<li>
Responsible for the progress of Bank releases according to
agreed time, quality, and budget
</li>
<li>
Ensuring workload distribution and provision for the team in
collaboration with the Team Coordinator
</li>
<li>
Independently creating functional designs according to
established standards and guidelines
</li>
<li>
Responsible for delivered functionalities towards acceptance
</li>
<li>
Identifying bottlenecks and proposing potential solutions
</li>
<li>Escalating when necessary to the Team Coordinator</li>
<li>Reporting to the Team Coordinator</li>
<li>Ensuring the continuity of systems (proactive action)</li>
<li>
Analyzing and advising on technical aspects of software
applications
</li>
<li>Independently resolving production issues</li>
<li>
Identifying technical bottlenecks and proposing potential
solutions
</li>
<li>Responsible for the progress of production issues</li>
<li>
Escalating when necessary to the Application Coordinator
</li>
<li>Reporting to the Application Coordinator</li>
<li>
Acting as a substitute for the Application Coordinator as a
liaison with other external departments
</li>
<li>
Translating preliminary studies from the Functional Designer
to technical designs
</li>
<li>Supporting developers during implementation</li>
<li>
System testing and chain testing of adjustments according to
the T-map method
</li>
<li>
Providing support during functional acceptance tests (FAT) and
user acceptance tests (UAT)
</li>
<li>Developing in COBOL, ADS, IDMS</li>
</ul>
<div class="button-wrapper">
<button class="read-more-button primary">Read more...</button>
</div>
</div>
</li>
<li class="expertise-item">
<div class="expertise-top">
<div class="expertise-details">
<h3>Tax Authorities - November 2006 to March 2007</h3>
<ul class="role-list">
<li>Functional Designer</li>
<li>Technical Designer</li>
</ul>
</div>
<img src="./assets/images/logo-belastingdienst.png" alt="" />
</div>
<div class="expertise-bottom">
<h4>Responsibilities</h4>
<ul class="activities-list">
<li>
Generating and modifying functional and technical designs in
the Tax Authority's Money Traffic System (GVS)
</li>
<li>
Supporting developers and testers during development and
testing processes
</li>
</ul>
</div>
</li>
</ul>
<div class="button-wrapper">
<a href="./public/expertise_en.html" class="primary"
>Click here to see more experiences</a
>
</div>
</section>
<section class="education-container">
<div class="left-column">
<h2>Education</h2>
<ul class="education-list">
<li>
<p class="education-title">Wageningen University</p>
<p class="time-text">1987-1993</p>
</li>
<li>
<p class="education-title">Atheneum</p>
<p class="time-text">1980-1987</p>
</li>
</ul>
</div>
<div class="right-column">
<h2>Language Skills</h2>
<ul class="language-list">
<li>
<img src="./assets/images/dutch-flag.png" alt="" />
<p>Dutch</p>
</li>
<li>
<img src="./assets/images/german-flag.png" alt="" />
<p>German</p>
</li>
<li>
<img src="./assets/images/english-flag.png" alt="" />
<p>English</p>
</li>
</ul>
</div>
</section>
</main>
<footer class="footer-container">
<div class="top-container">
<div class="left-column">
<img src="./assets/images/logo.svg" alt="" />
</div>
<div class="right-column">
<ul class="menu-items">
<h4>Menu</h4>
<li><a href="./homepage_en.html" class="menu-item">Home</a></li>
<li>
<a href="./public/about_en.html" class="menu-item">About Me</a>
</li>
<li>
<a href="./public/expertise_en.html" class="menu-item"
>Expertise</a
>
</li>
</ul>
<ul class="menu-items">
<h4>Contact</h4>
<li>
<a href="tel:+31612047218" class="menu-item"
>+31 (0)612 047 218</a
>
</li>
<li>
<a href="mailto:info@cobol.nl" class="menu-item">info@cobol.nl</a>
</li>
<li>
<a
href="https://www.linkedin.com/in/jurgen-michorius-5971942?originalSubdomain=nl"
target="_blank"
class="menu-item"
>LinkedIn</a
>
</li>
</ul>
</div>
</div>
<div class="bottom-container">
<ul>
<li>Chamber of Commerce: 51958678</li>
<li>VAT: NL850241765801</li>
<li>Developed by <a href="http://inju.nl">inju.nl</a></li>
</ul>
</div>
</footer>
</body>
</html>