-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathauthors.yml
More file actions
1256 lines (1256 loc) · 53.7 KB
/
Copy pathauthors.yml
File metadata and controls
1256 lines (1256 loc) · 53.7 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
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
dieter_hubau:
first_name: Dieter
last_name: Hubau
github: Turbots
twitter: dhubau
linkedin: dhubau
permalink: /author/dieter-hubau/
avatar: dieter-hubau.jpg
title: Principal Consultant
title2: Competence Leader Cloud and PaaS
email: dieter.hubau@ordina.be
phone: 0032478458150
bio: Dieter is a Principal Java Consultant at Ordina, passionate about all Java- and JavaScript related technologies. Aside from his day-to-day occupation as a consultant, he helps fellow developers as a Competence Leader for the Cloud & PaaS Competence Center by giving workshops, talks and courses about the newest technologies. In his spare time, Dieter enjoys playing soccer, running, (online) gaming and fiddling around with all kinds of fancy new software.
inactive: true
tom_verelst:
first_name: Tom
last_name: Verelst
permalink: /author/tom-verelst/
avatar: tom-verelst.png
twitter: tomverelst
linkedin: tomverelst
github: tomverelst
title: Principal Consultant
title2: Competence Leader Cloud Native Platforms
email: tom.verelst@ordina.be
bio: Tom is a senior software engineer at Ordina Belgium. He is fond of all things Go and DevOps.
inactive: true
andreas_evers:
first_name: Andreas
last_name: Evers
permalink: /author/andreas-evers/
avatar: andreas-evers.jpg
title: Principal Consultant
twitter: andreasevers
github: andreasevers
title2: Practice Leader Backend
linkedin: eversandreas
bio: Andreas is a Principal Java consultant at Ordina, passionate about the Spring ecosystem, microservices, REST, clean code and best practices in general. An avid open source enthusiast and Spring contributor. Helps fellow developers as Competence Center leader for architecture and best practices by giving workshops, talks and courses about the newest technologies.
inactive: true
ken_coenen:
first_name: Ken
last_name: Coenen
twitter: CoenenKen
linkedin: coenenken
github: kencoenen
permalink: /author/ken-coenen/
avatar: ken-coenen.png
title: Unit Manager
title2: Backend Practice Manager
email: ken.coenen@ordina.be
bio: Ken is the Business Unit Manager of Ordina JWorks. Aside from his day-to-day occupation as a Business Unit Manager, he is also Backend Practice Manager, passionate about all Java- and JavaScript related technologies. In this capacity, he narrows the gap between consultants and potential innovative customer projects. He does this by organizing workshops, talks and courses about the newest technologies, whereby people can grow in their role as a software consultant.
inactive: true
yannick_de_turck:
first_name: Yannick
last_name: De Turck
twitter: YannickDeTurck
linkedin: yannickdeturck
github: yannickdeturck
permalink: /author/yannick-de-turck/
avatar: yannick-de-turck.jpg
title: Principal Consultant
title2: Practice Manager
email: Yannick.DeTurck@ordina.be
bio: Yannick is a principal Java consultant and practice manager at Ordina Belgium. He's passionate about everything Java, Spring and cloud related as well as reactive programming, Kotlin, Lightbend technologies, software architectures, and coaching and enabling other colleagues.
inactive: true
tim_ysewyn:
first_name: Tim
last_name: Ysewyn
avatar: tim-ysewyn.png
twitter: TYsewyn
linkedin: tysewyn
github: TYsewyn
permalink: /author/tim-ysewyn/
title: Principal Consultant
title2: Competence Leader API & Microservices
email: Tim.Ysewyn@ordina.be
bio: Tim is a Principal Consultant at Ordina, where he helps fellow developers discovering top-notch technologies and methodologies as a Competence Leader for API & Microservices. You can also find him working on various parts of the <a href="https://www.spring.io" target="_blank">Spring</a> framework or helping out at <a href="https://ng-be.org" target="_blank">NG-BE</a>. When you can\'t get a hold of him, he will probably be under water since he is also an underwater photographer & rescue diver.
inactive: true
bart_blommaerts:
first_name: Bart
last_name: Blommaerts
avatar: bart-blommaerts.png
twitter: DaggieBe
linkedin: bartblommaerts
github: bart-blommaerts
permalink: /author/bart-blommaerts/
title: Software Architect
title2: Competence Manager Architecture
bio: Bart Blommaerts is a passionate Software Architect at Ordina, who believes closing the model-code gap is essential to make rapid, agile delivery sustainable. Bart has a strong focus on API design, reuse, automation and security. He is always looking for technical challenges.
inactive: true
kevin_van_houtte:
first_name: Kevin
last_name: Van Houtte
permalink: /author/kevin-van-houtte/
avatar: kevin-van-houtte.jpg
twitter: KevinVHoutte
linkedin: kevin-van-houtte-55ba936a
github: KevinVHoutte
title: Software Consultant Java
email: kevin.vanhoutte@ordina.be
bio: Kevin Van Houtte is a Software Engineer at Ordina Belgium. Passionate in the Spring ecosystem, Kevin is eager to discover new and efficient ways to solve problems. He enjoys a good challenge and is interested in cutting edge technologies. Kevin has a strong focus on building cloud native architectures with the right mindset on security and API design.
inactive: true
jan_de_wilde:
first_name: Jan
last_name: De Wilde
github: MrJean
twitter: Mr_Jean
linkedin: jandewilde
permalink: /author/jan-de-wilde/
avatar: jan-de-wilde.jpg
title: Practice Lead Frontend
title2: Senior Frontend Developer
email: jan.dewilde@ordina.be
bio: Jan De Wilde is a Senior Frontend Developer at Ordina Belgium, focussed on building quality mobile/hybrid applications that are accessible on a big collection of devices. His favorite technologies are Ionic Framework, Angular and TypeScript. Jan is also Practice Manager for the Frontend Practice where he takes care of the development and coaching of employees.
inactive: true
yannick_vergeylen:
first_name: Yannick
last_name: Vergeylen
github: yannickvergeylenord
linkedin: yannickvergeylen
permalink: /author/yannick-vergeylen/
avatar: yannick-vergeylen.jpg
title: Frontend Developer
email: yannick.vergeylen@ordina.be
phone: +32476499054
bio: Yannick is a young and driven software developer. Widely interested and with a studious attitude he keeps looking for new ways to improve the web with better software and experiences.
inactive: true
ryan_de_gruyter:
first_name: Ryan
last_name: de Gruyter
github: ryandegruyter
linkedin: ryandg
permalink: /author/ryan-de-gruyter/
avatar: ryan-de-gruyter.jpg
title: Frontend Developer
email: ryan.degruyter@ordina.be
phone: +32479079468
bio: Ryan is a Software Engineer at Ordina Belgium. He is dedicated to writing clean code and building maintainable, user friendly web applications in TypeScript. Ryan is also an Angular expert who enjoys giving beginner and advanced Angular courses. In his spare time, he practices martial arts and enjoys playing the guitar.
inactive: true
steve_de_zitter:
first_name: Steve
last_name: De Zitter
github: steve-de-zitter-18035421
permalink: /author/steve-de-zitter/
avatar: steve-de-zitter.jpg
title: Practice Lead Frontend
email: steve.dezitter@ordina.be
phone: +32473544531
bio: Steve is a Senior developer at Ordina Belgium, focussing on Mobile Development, both Native using Android and Hybrid using Ionic framework. Next to mobile development, he continues to maintain his backend development skills using the Spring stack technology stack.
inactive: true
greg_rinaldi:
first_name: Gregory
last_name: Rinaldi
github: gregoryrinaldi
permalink: /author/gregory-rinaldi/
linkedin: greg-rinaldi-26507749
avatar: greg-rinaldi.jpg
title: Software Engineer
email: gregory.rinaldi@ordina.be
phone: +32476976677
bio: Gregory Rinaldi is a Software Engineer at Ordina Belgium, he is a maker that does his best work at night, he is passionate about all Java- and JavaScript related technologies and has a strong focus on reuse and automation. Currently he works on <a href="https://github.com/UnionVMS" target="_blank">UnionVMS</a> an Open-Source Asset Monitoring System.
martin_kwee:
first_name: Martin
last_name: Kwee
permalink: /author/martin-kwee/
avatar: martin-kwee.jpg
title: Principal Consultant
title2: Competence Leader eHealth
email: martin.kwee@ordina.be
linkedin: martinkwee
bio: Martin is a Java consultant at Ordina Belgium. He enjoys a good technical challenge and has a strong interest in architecture and eHealth.
tim_verte:
first_name: Tim
last_name: Verte
permalink: /author/tim-verte/
avatar: tim-verte.jpg
title: Java Consultant
email: tim.verte@ordina.be
phone: +32472466091
bio: Tim is a Java consultant at Ordina Belgium. He enjoys to discover new technologies and challenges. Besides his work he has a keen interest in everything that involves sports and music.
inactive: true
dieter_wallecan:
first_name: Dieter
last_name: Wallecan
permalink: /author/dieter_wallecan/
avatar: /dieter_wallecan.jpeg
title: Oracle DBA
email: dieter.wallecan@ordina.be
twitter: dwallecan
github: diwall
linkedin: dieterwallecan
bio: Dieter is Oracle DBA at Ordina Belgium. He has a very strong interest in Open Source RDBMS and Next generation databases.
frederick_bousson:
first_name: Frederick
last_name: Bousson
github: fbousson
twitter: fbousson
linkedin: fbousson
permalink: /author/frederick-bousson/
avatar: frederick-bousson.jpg
title: Principal Consultant
title2: Practice Leader Smart Technologies
email: frederick.bousson@ordina.be
bio: Frederick is a Principal Java consultant at Ordina, passionate about all Java and JavaScript related technologies. In his roll as Practice Leader Smart technologies he uses his knowledge of building custom software to build innovative solutions using new technologies. Currently focussing on the internet of things and sensor networks using LoRa. Loves to tinker with gadgets.
kevin_van_den_abeele:
first_name: Kevin
last_name: Van den Abeele
github: beele
twitter: _nabeele
linkedin: Mr-IoT
permalink: /author/kevin-van-den-abeele/
avatar: kevin-van-den-abeele.jpg
title: Consultant
title2: Competence Leader Internet of Things
email: kevin.vandenabeele@ordina.be
bio: Kevin is a senior consultant at Ordina, passionate about all modern web applications and smart tech. In his role as Competence Leader Smart Technologies he uses his knowledge of building custom software to build innovative solutions using new technologies. Loves to tinker with gadgets and electronics.
inactive: true
tom_van_den_bulck:
first_name: Tom
last_name: Van den Bulck
permalink: /author/tom-van-den-bulck
avatar: tom-van-den-bulck.jpg
title: Principal Consultant
title2: Practice Lead Big & Fast Data
email: tom.vandenbulck@ordina.be
twitter: tomvdbulck
github: tomvdbulck
bio: Tom is a Senior Developer at Ordina Belgium, passionate about all software related to data. As competence leader Big & Fast Data he guides his fellow developers through dark data swamps by giving workshops and presentations. Tom is passionate about learning new technologies and frameworks.
frederic_ghijselinck:
first_name: Frédéric
last_name: Ghijselinck
github: fredericghijselinck
twitter: f_ghijselinck
linkedin: fredericghijselinck
permalink: /author/frederic-ghijselinck/
avatar: frederic-ghijselinck.jpg
title: Competence Lead JavaScript
email: frederic.ghijselinck@ordina.be
bio: Frédéric is a Senior developer at Ordina Belgium, focussing on Frontend Development with technologies as Angular and TypeScript. Next to frontend development, he continues to maintain his backend development skills using the Spring technology stack. Frédéric is also Competence Lead for the JavaScript Competence Center where he gives workshops, talks and courses about the newest technologies.
inactive: true
orjan_de_smet:
first_name: Orjan
last_name: De Smet
permalink: /author/orjan-de-smet
avatar: orjan-de-smet.jpg
title: Frontend Developer
email: orjan.desmet@ordina.be
twitter: orjandesmet
github: orjandesmet
bio: Orjan is a Frontend Developer at Ordina Belgium, keen on building structured quality applications with a focus on Reactive Programming and dealing with it. He is always interested to try new technologies and to share his experiences. In his spare time, he enjoys a good game or movie or dining out.
inactive: true
jeroen_de_prest:
first_name: Jeroen
last_name: De Prest
permalink: /author/jeroen-de-prest
avatar: jeroen-de-prest.jpg
title: Intern
twitter: jeroendeprest
github: jeroendeprest
bio: Jeroen is an intern at Ordina Belgium from Karel de Grote Hogeschool, focussing on blockchain research.
inactive: true
kevin_leyssens:
first_name: Kevin
last_name: Leyssens
permalink: /author/kevin-leyssens
avatar: kevin-leyssens.jpg
title: Intern
github: kevinnio1
bio: Kevin is an intern at Ordina Belgium from Karel de Grote Hogeschool, focussing on blockchain research.
inactive: true
gina_de_beukelaer:
first_name: Gina
last_name: De Beukelaer
permalink: /author/gina-de-beukelaer
avatar: gina-de-beukelaer.jpg
title: Java Consultant
email: gina.de.beukelaer@ordina.be
github: GinaDeBeukelaer
bio: Gina is a Java consultant at Ordina Belgium. Her main focus is to build quality applications, staying informed with new technologies helps her in doing this.
matthias_caryn:
first_name: Matthias
last_name: Caryn
permalink: /author/matthias-caryn/
avatar: matthias-caryn.jpg
title: Java Developer
email: matthias.caryn@ordina.be
github: caryntjen
linkedin: caryntjen
phone: +32473836044
bio: Matthias is Java Developer at Ordina Belgium. He enjoys to discover new Java and JavaScript technologies. He's passionate about machine learning and artificial intelligence. In his spare time he enjoys a good board or tabletop games and a good walk in the park with his dogs.
inactive: true
ivar_van_hartingsveldt:
first_name: Ivar
last_name: van Hartingsveldt
permalink: /author/ivar-van-hartingsveldt/
avatar: ivar-van-hartingsveldt.jpg
title: Frontend Developer
email: ivar.vanhartingsveldt@ordina.be
github: ivarvh
linkedin: ivarvh
bio: Ivar is a backend Java developer who converted to frontend. When ES6 and TypeScript came along, he really started investing his time in that and now he writes Javascript / TypeScript almost exclusively.
inactive: true
jeff_mesens:
first_name: Jeff
last_name: Mesens
avatar: jeff-mesens.jpg
twitter: JMesens
linkedin: jeff-mesens-b3646921
github: JMesens
permalink: /author/jeff-mesens/
title: Software Engineer
bio: Jeff Mesens is a Java Software Engineer at Ordina Belgium, passionate about Distributed Systems and all sorts of Scalable and High Available software architectures. He takes a special interest in Security, Domain Driven Design and Message Driven development. Aside from his job as a Java Software Engineer he likes to keep up to date on new technologies and follow the latest developments in Software Engineering.
inactive: true
hans_michiels:
first_name: Hans
last_name: Michiels
permalink: /author/hans-michiels/
avatar: hans-michiels.png
title: Java Developer
email: hans.michiels@ordina.be
bio: Hans is a Java Developer at Ordina Belgium. He is passionate about learning new innovative technologies and basically all nerd related stuff.
inactive: true
tim_vierbergen:
first_name: Tim
last_name: Vierbergen
permalink: /author/tim-vierbergen/
avatar: tim-vierbergen.jpg
twitter: vierbergentim
linkedin: tim-vierbergen-82557834
github: VeeTeeDev
title: Software Engineer
title2: Principal Consultant & Competence Lead CI/CD
email: tim.vierbergen@ordina.be
bio: Tim is a senior developer and architect at JWorks Ordina Belgium. Tim has a DevOps culture mindset and is experienced in many different domains. From frontend to backend to pipelining and automation. Tim is keen on learning new technologies.<br /><br />Tim is a true sportsman and spends part of his free time running and working out. Tim is also very passionate about surfing and is learning how to snowboard.
inactive: true
tim_schmitte:
first_name: Tim
last_name: Schmitte
permalink: /author/tim-schmitte/
avatar: tim-schmitte.jpg
title: Java Developer
email: tim.schmitte@ordina.be
bio: Tim is a Java Developer at Ordina Belgium. His main focus is on back-end development. He is passionate about Microservices, Domain driven design and refactoring.
inactive: true
tim_de_grande:
first_name: Tim
last_name: De Grande
twitter: TimDG
linkedin: timdegrande
permalink: /author/tim-de-grande/
avatar: tim-de-grande.jpg
title: Principal Consultant
title2: Competence Leader Aplication Security
email: tim.degrande@ordina.be
bio: Tim is a principal Java Consultant at Ordina who is interested in security, cryptography and privacy. As Compentence Leader Application Security, he keeps his colleagues up to date on the latest security news and works to broaden their understanding by giving workshops and classes.
inactive: true
martijn_willekens:
first_name: Martijn
last_name: Willekens
linkedin: mwillekens
twitter: MaWi_137
github: Mawi137
permalink: /author/martijn-willekens/
avatar: martijn-willekens.jpg
title: Frontend developer
email: martijn.willekens@ordina.be
bio: Martijn is a frontend developer at Ordina Belgium. He primarily devotes himself to building Angular and Ionic apps written in TypeScript. ReactiveX is his favorite set of tools to work with.
inactive: true
jef_willems:
first_name: Jef
last_name: Willems
linkedin: jef-willems-2022aa135
permalink: /author/jef-willems/
avatar: jef-willems.jpg
title: Java Developer
email: jef.willems@ordina.be
bio: Jef is a Junior Java Developer at Ordina Belgium. His intrest for databases results in focusing on the backend part. Jef enjoys working with SQL, he also starts to explore mongoDb.<br />After succeeding the Kickstarter Trajectory 2017 he also saw that Unit testing and Microservices are two concepts that he wants to explore in-depth.
inactive: true
michiel_willems:
first_name: Michiel
last_name: Willems
permalink: /author/michiel-willems/
avatar: michiel-willems.jpg
title: Java Developer
email: michiel.willems@ordina.be
linkedin: michiel-willems-21b45211a
bio: Michiel is a junior Java Developer at Ordina Belgium who's just graduated from kickstarter project 2017. He's mainly focussing at the backend and databases.
inactive: true
ken_de_becker:
first_name: Ken
last_name: De Becker
permalink: /author/ken-de-becker/
avatar: ken-de-becker.jpg
title: Java Developer
email: ken.debecker@ordina.be
bio: Ken is a junior Java Developer at Ordina Belgium. His main focus is on backend development. He enjoys working with the underlying logic of applications as well as learning new and innovative technologies.
simon_buysse:
first_name: Simon
last_name: Buysse
permalink: /author/simon-buysse/
avatar: simon-buysse.jpg
linkedin: sjbuysse
github: sjbuysse
title: Frontend Developer
email: simon.buysse@ordina.be
bio: Simon is passionate about coding, elegant pattern designs, JavaScript and related frameworks. As a Business Engineer he has a broad range of business and technical skills, and he loves employing technology to tackle business challenges. In his spare time he's either working on a woodworking project or chasing some elusive Northsea swell to catch a wave.
inactive: true
nick_geudens:
first_name: Nick
last_name: Geudens
permalink: /author/nick-geudens/
avatar: nick-geudens.jpg
linkedin: nickgeudens
github: nickgeudens
title: Java Developer
email: nick.geudens@ordina.be
bio: Nick is a Java developer with a focus on backend development. This is certainly not an exclusion. Outside the Java world, you can also see him messing around with Angular, Go and Kubernetes and lots of other technologies.
inactive: true
michael_vervloet:
first_name: Michael
last_name: Vervloet
permalink: /author/michael-vervloet/
avatar: michael-vervloet.jpg
linkedin: michaelvervloet
twitter: MiVvlt
github: MiVvlt
title: SoftWare Engineer
title2: Fullstack Javascript Developer
email: michael.vervloet@ordina.be
bio: Michael is a full stack JavaScript/TypeScript developer specialising himself in backend development with NodeJs and Express and has a solid background in frontend/hybrid mobile development. As a member of Ordina's core 'Internet of Things' team he has collaborated on some challenging and innovative IoT applications.
inactive: true
ines_van_stappen:
first_name: Ines
last_name: Van Stappen
permalink: /author/ines-van-stappen/
avatar: ines-van-stappen.jpg
linkedin: inesvanstappen
github: inesvanstappen
title: JavaScript Developer
title2: Frontend engineer
email: ines.vanstappen@ordina.be
bio: Ines is a frontend developer, passionate about creating Angular applications. She is always open for trying new technologies or trying things in new and exciting ways.
inactive: true
chris_de_bruyne:
first_name: Chris
last_name: De Bruyne
permalink: /author/chris-de-bruyne
avatar: chris-de-bruyne.jpg
title: Senior Java Developer
title2: Principal MongoDB Consultant
email: chris.debruyne@ordina.be
twitter: ceedeebee2901
bio: Chris is a Senior Java Developer at Ordina Belgium, passionate about Java and MongoDB. Chris is passionate to help colleagues and clients to get the most out of MongoDB and the Java eco system.
bas_moorkens:
first_name: Bas
last_name: Moorkens
permalink: /author/bas-moorkens/
title: Senior Java Developer
title2: DevOps Engineer
email: bas.moorkens@ordina.be
linkedin: basmoorkens
avatar: bas-moorkens.jpg
github: basmoorkens
bio: Bas is a cloud platform architect at Ordina Belgium who is fascinated by aws, containers and pipeline automation. He started off as a Java full stack developer but got more and more into the devOps and cloud world where he currently spends most of his time.
inactive: true
derya_duru:
first_name: Derya
last_name: Duru
permalink: /author/derya-duru/
title: UX Designer & React developer
email: derya.duru@ordina.be
linkedin: derya-duru-52348a3a
avatar: derya-duru.jpg
github: Deryaa
bio: Derya is a UX Designer and React developer at Ordina Belgium. She enjoys being challenged and as the Competence Leader Agile & Design, she tries to improve her own skills continuously, while hoping to share her knowledge and help others with their understanding of Agile frameworks and UX/UI design.
inactive: true
michael_vandendriessche:
first_name: Michael
last_name: Vandendriessche
permalink: /author/michael-vandendriessche
avatar: michael-vandendriessche.jpg
title: SoftWare Engineer
title2: Android developer
email: michael.vandendriessche@ordina.be
twitter: miva2
github: miva2
bio: Michael is a Software Engineer at Ordina Belgium with a passion for Android. Besides mobile apps he also enjoys working on backend as well as frontend applications. He is always keen on trying out new things! In his spare time he likes to develop (and play) games.
inactive: true
stefanie_geldof:
first_name: Stefanie
last_name: Geldof
permalink: /author/stefanie-geldof/
title: JavaScript Developer
title2: Frontend engineer
github: steefanieee
email: stefanie.geldof@ordina.be
bio: Stefanie is a frontend developer at Ordina Belgium. She is passionate about Angular and Ionic applications.
avatar: stefanie-geldof.jpg
inactive: true
dimitri_de_kerf:
first_name: Dimitri
last_name: De Kerf
permalink: /author/dimitri-de-kerf
avatar: dimitri-de-kerf.jpg
title: Frontend Developer
email: dimitri.de.kerf@ordina.be
github: DimiDeKerf
bio: Dimitri is a Frontend and Mobile developer at Ordina Belgium. He enjoys writing user friendly apps in a clean, maintainable way. Dimitri loves new technologies and is eager to try them out.
inactive: true
dries_gijssels:
first_name: Dries
last_name: Gijssels
permalink: /author/dries-gijssels/
avatar: dries-gijssels.jpeg
title: Frontend Developer
email: dries.gijssels@ordina.be
github: drasj
bio: Dries is a Frontend Developer at Ordina Belgium. He enjoys a good technical challenge and is passionate about learning new innovative technologies across all layers of the full stack.
jeroen_meys:
first_name: Jeroen
last_name: Meys
permalink: /author/jeroen-meys/
avatar: jeroen-meys.jpg
title: Java Developer
linkedin: jeroen-meys-35416253
twitter: JeroenMeys
email: jeroen.meys@ordina.be
github: jmeys
bio: Jeroen is a Java Developer at Ordina Belgium who is passionate about security, breaking stuff and fixing things.
inactive: true
axel_bergmans:
first_name: Axel
last_name: Bergmans
permalink: /author/axel-bergmans/
avatar: axel-bergmans.jpg
title: Java / JavaScript Developer
linkedin: 4xelbe
twitter: 4xel_be
email: axel.bergmans@ordina.be
github: 4xel
bio: Axel is a Java Developer at Ordina Belgium. He enjoys learning new things and discovering new methods of working. At the moment he is focused on IoT projects and technologies.
inactive: true
sam_schuddinck:
first_name: Sam
last_name: Schuddinck
permalink: /author/sam-schuddinck
avatar: sam-schuddinck.jpg
title: Frontend Developer
linkedin: sam-s-70125b80
email: sam.schuddinck@ordina.be
github: TheNumber4
bio: Sam is a frontend developer who wants to master the Javascript frameworks, besides that he still has a strong interest in backend as well.
inactive: true
nick_van_hoof:
first_name: Nick
last_name: Van Hoof
permalink: /author/nick-van-hoof
avatar: nick-van-hoof.jpg
title: Java Developer
linkedin: nick-van-hoof-45337914b
email: nick.vanhoof@ordina.be
github: Nxtra
bio: Nick is passionate about cloud technology. He has major expertise in AWS and AWS serverless but he appreciates other clouds just as well. He wants to be ahead of change and thus he's also working with IoT and AI.
inactive: true
johan_silkens:
first_name: Johan
last_name: Silkens
permalink: /author/johan-silkens/
avatar: johan-silkens.jpg
title: Java Developer
linkedin: johan-silkens-848bb1b2
twitter: SilkensJ
email: johan.silkens@ordina.be
github: JSilkens
bio: Johan is a Java Developer at Ordina Belgium. He is passionate about technology and science since he was as kid and is always up for a challenge.
yunus_altin:
first_name: Yunus
last_name: Altin
permalink: /author/yunus-altin/
avatar: yunus-altin.jpg
title: Java Developer
linkedin: yunusaltin
twitter: yunusaltin
email: yunus.altin@ordina.be
github: yunusaltin
bio: Yunus is a Java Developer at Ordina Belgium who is passionate about IoT, natural language understanding and microservices.
yen_mertens:
first_name: Yen
last_name: Mertens
permalink: /author/yen-mertens/
avatar: yen-mertens.jpg
title: Java Developer
linkedin: yenmertens
email: yen.mertens@ordina.be
github: Asgaro
bio: Yen is a Java Developer at Ordina Belgium who wants to further develop his back-end skills by using the latest technologies within challenging projects.
maarten_casteels:
first_name: Maarten
last_name: Casteels
permalink: /author/maarten-casteels/
avatar: maarten-casteels.png
title: Practice Lead Application Development
github: denmette
linkedin: maartencasteels
email: Maarten.Casteels@ordina.be
bio: Meet Maarten Casteels, a Practice Lead for Application Development at JWorks. With a passion for testing, he ensures that every code he creates is thoroughly tested before release. Outside of work, Maarten actively loves to bring people together.
maarten_westelinck:
first_name: Maarten
last_name: Westelinck
permalink: /author/maarten-westelinck/
avatar: maarten-westelinck.jpg
title: Java Developer
email: maarten.westelinck@ordina.be
github: mwesteli
bio: Maarten is a Java Developer at Ordina Belgium with a passion for good design, automation and all kinds of programming languages.
inactive: true
dries_thieren:
first_name: Dries
last_name: Thieren
permalink: /author/dries-thieren/
avatar: dries-thieren.jpg
title: Java Developer
email: dries.thieren@ordina.be
github: HiAr
bio: Dries is a Java Developer at Ordina Belgium. He loves looking for easy solutions to complex challenges. His main concern is writing clean/quality code.
inactive: true
nils_devos:
first_name: Nils
last_name: Devos
permalink: /author/nils-devos/
avatar: nils-devos.jpg
title: Senior Software Engineer
linkedin: nils-devos-0321171b
twitter: NilsDevos
email: nils.devos@ordina.be
github: NilsD88
bio: Nils is a Senior Software Engineer at Ordina Belgium. Passionate about frontend frameworks. Scrum master-in-training.
jens_bosman:
first_name: Jens
last_name: Bosman
permalink: /author/jens-bosman/
avatar: jens-bosman.jpg
title: Java Developer
linkedin: jens-bosman-2b380b28
email: jens.bosman@ordina.be
github: JBO24
bio: Jens is Java Developer at Ordina Belgium with a keen interest in frontend development as well. He's always up for learning new technologies and is passionate about writing quality tests.
inactive: true
wouter_nivelle:
first_name: Wouter
last_name: Nivelle
permalink: /author/wouter-nivelle/
avatar: wouter-nivelle.jpg
title: Project Manager
linkedin: wouter-nivelle-34a90b31
email: wouter.nivelle@ordina.be
bio: Wouter is a Project Manager at Ordina Belgium. Passionate about agile. Eager to share knowledge. Not afraid of challenges. Always interested in learning and discovering new things.
maryse_meinen:
first_name: Maryse
last_name: Meinen
permalink: /author/maryse-meinen/
avatar: maryse-meinen.jpg
title: Agile Coach
linkedin: mmeinen
email: maryse.meinen@ordina.nl
bio: Maryse is a Lean/Agile solution architect who has been working in IT since 2008. Inspiring more women to consider a career in tech is one of her ambitions. To Maryse, Lean and Agile philosophy is a way of life – and she’s convinced that a focus on Agile might bring about more women in IT.
inactive: true
michael_dewree:
first_name: Michaël
last_name: De Wree
github: mdewree
linkedin: michaeldewree
permalink: /author/michael-de-wree/
avatar: michael-de-wree.jpg
title: Front-End Developer
email: michael.dewree@ordina.be
phone: 0032484297782
bio: Michaël is a Front-End Developer at Ordina, passionate about all JavaScript related technologies. In his spare time, Michaël enjoys working out, running and enjoying his time with friends and family.
inactive: true
wout_meskens:
first_name: Wout
last_name: Meskens
github: meskensw
linkedin: meskenswout
permalink: /author/wout-meskens/
avatar: wout-meskens.jpg
title: Java Developer
email: wout.meskens@ordina.be
bio: Wout is a Java Developer at Ordina Belgium who also is interested in cloud technologies. He likes to keep learning new things and improve his knowledge about the newest technologies.
inactive: true
pieter_van_hees:
first_name: Pieter
last_name: Van Hees
github: pvanhees
linkedin: pieter-van-hees-73671133
permalink: /author/pieter-van-hees/
avatar: pieter-van-hees.jpg
title: Software Engineer
email: pieter.vanhees@ordina.be
bio: Pieter Van Hees is a Java Software Engineer at Ordina Belgium. He is passionate about Domain-Driven Design and producing clean software that works
inactive: true
hans_vanbellingen:
first_name: Hans
last_name: Vanbellingen
permalink: /author/hans-vanbellingen/
avatar: hans-vanbellingen.png
linkedin: hans-vanbellingen-62009a5
github: pluimpje
title: Java Architect
email: hans.vanbellingen@ordina.be
bio: Hans is a Java architect at Ordina Belgium. He is passionate about Stream Processing.
inactive: true
gert-jan_theunissen:
first_name: Gert-jan
last_name: Theunissen
permalink: /author/gert-jan-theunissen/
title: Software Engineer
email: gert-jan.theunissen@ordina.be
linkedin: gertjantheunissen
avatar: gert-jan-theunissen.jpg
github: gurtjun
bio: Gert-jan is a Software Developer at Ordina Belgium. He is passionate about frontend stuff, but you can easily throw him in the backend jungle and he will survive. In his spare time he's practising some knee dragging on his motorcycle.
inactive: true
steven_deleye:
first_name: Steven
last_name: Deleye
linkedin: stevendeleye
permalink: /author/steven-deleye/
avatar: steven-deleye.jpg
title: Java Developer
email: steven.deleye@ordina.be
bio: Steven is a Java Developer at Ordina Belgium focusing on backend development. In his spare time you can find him playing football or watching some good series.
inactive: true
ken_keymolen:
first_name: Ken
last_name: Keymolen
inactive: true
github: kenkeymolen
linkedin: kenkeymolen
permalink: /author/ken-keymolen/
avatar: ken-keymolen.jpg
title: Java Developer - Backend & Frontend
email: ken.keymolen@ordina.be
bio: Ken is a Full Stack Java Developer at Ordina Belgium. Because of his passion for IT he is constantly looking for new challenges to improve his skills and areas of expertise.
michaela_broeckx:
first_name: Michaëla
last_name: Broeckx
permalink: /author/michaela-broeckx/
title: Agile Coach
email: michaela.broeckx@ordina.be
linkedin: michaelabroeckx
avatar: michaela-broeckx.jpg
bio: Michaëla is an Agile coach with a focus on value and the human aspects of work. She is devoted to Agile & Scrum, not just as a mindset and framework for collaborative product delivery, but also for their general quality as ways to unlearn innate/inbred habits that prevent us from learning efficiently. A true Agile mindset enables enterprises to break down siloes, and build professional human networks throughout the company and beyond.
inactive: true
sander_smets:
first_name: Sander
last_name: Smets
github: SmetsSander
linkedin: sander-smets
permalink: /author/sander-smets/
avatar: sander-smets.jpg
title: Java Developer
email: sander.smets@ordina.be
bio: As a software developer, Sander likes to develop a project in its entirety. Databases either SQL or noSQL, front-end technologies like Angular, and backend technologies like Spring Boot, it doesn't matter what technologies are used. As long as the project has value, Sander will get the job done.
inactive: true
elke_heymans:
first_name: Elke
last_name: Heymans
github: ElkeCodes
twitter: elkecodes
linkedin: elkeheymans
permalink: /author/elke-heymans/
avatar: elke-heymans.jpg
title: Frontend Developer
email: elke.heymans@ordina.be
bio: Elke is a Frontend Developer with a focus on Vue, TypeScript, Angular and is very interested in other frontend technologies. In her spare time you can find her taking photographs at events, training for half marathons or enjoying music by collecting records and attending concerts.
inactive: true
jan_van_der_veken:
first_name: Jan
last_name: Van der Veken
github: jvanderveken-ordina
permalink: /author/jan-van-der-veken/
avatar: no-image.jpg
title: Database Consultant
email: jan.vanderveken@ordina.be
bio: Jan is a database specialist with many years of experience as system engineer and Oracle DBA, and who is now focusing on cloud and nosql technologies such as MongoDB and the Elastic stack.
gert-jan_schokkaert:
first_name: Gert-Jan
last_name: Schokkaert
linkedin: gert-jan-schokkaert-b87961b4
permalink: /author/gert-jan-schokkaert/
avatar: gert-jan-schokkaert.jpg
title: Data Visualisation Consultant
email: gert-jan.schokkaert@ordina.be
bio: Gert-Jan Schokkaert works as a Data Visualisation Consultant at Ordina Belgium. In his job he likes to build visualisations that helps the end user find relevant insights as easy as possible. He likes to work closely with the client to find the optimal solution that really makes the difference.
inactive: true
kristof_eekhaut:
first_name: Kristof
last_name: Eekhaut
github: kristof-eekhaut
permalink: /author/kristof-eekhaut/
avatar: kristof-eekhaut.jpg
title: Senior Java consultant
email: kristof.eekhaut@ordina.be
bio: Kristof is a senior Java consultant and architect, who has a passion for Agile software development, Domain-Driven Design and Collaborative modelling. He is eager to learn new technologies and architectures. He loves working with a team to build complex applications that users enjoy.
yolan_vloeberghs:
first_name: Yolan
last_name: Vloeberghs
linkedin: yolan-vloeberghs-23825aa3
github: yolanv
permalink: /author/yolan-vloeberghs/
avatar: yolan-vloeberghs.jpg
title: Java Consultant
email: yolan.vloeberghs@ordina.be
bio: Yolan Vloeberghs is a Java and Cloud engineer with a sharpened focus on all things related to cloud, specifically AWS. He loves to play around with various technologies and frameworks and is very passionated and eager to learn about everything related to cloud-native development.
seppe_berghmans:
first_name: Seppe
last_name: Berghmans
linkedin: seppe-berghmans-518612bb
github: Seppeb
permalink: /author/seppe-berghmans/
avatar: seppe-berghmans.jpg
title: Java Consultant
email: seppe.berghmans@ordina.be
bio: Seppe Berghmans is a Java Consultant with an interest in both back-end and front-end. He likes to learn new technologies to improve himself and work more efficiently.
giel_reynders:
first_name: Giel
last_name: Reynders
linkedin: giel-reynders-bb05abaa
github: GiReynders
permalink: /author/giel-reynders/
avatar: giel-reynders.jpg
title: Java Consultant
email: giel.reynders@ordina.be
bio: Giel Reynders is a Java Consultant with a strong interest for Spring Boot projects and cloud automation. In his spare he likes to fiddle with frontend technologies.
inactive: true
jago_staes:
first_name: Jago
last_name: Staes
linkedin: jago-staes-547177117
github: jagostaes
permalink: /author/jago_staes/
avatar: jago-staes.jpg
title: Java Consultant
email: jago.staes@ordina.be
bio: Jago Staes is a Java Consultant with a strong interest for Spring Boot projects, enjoys learning about new technologies and wants to learn more about frontend technologies and microservices.
pieter_vincken:
first_name: Pieter
last_name: Vincken
linkedin: pieter-vincken-a94b5153
twitter: PieterVincken
github: pietervincken
permalink: /author/pieter_vincken/
avatar: pieter-vincken.jpeg
title: Cloud Automation Engineer
email: pieter.vincken@ordina.be
bio: Pieter rarely sees problems, just too many solutions sometimes. That’s why K’nex was his favorite pastime as a child. Nowadays, he builds cloud platforms so organizations don’t have to worry about their IT infrastructure but can focus on their clients.
astrid_legrand:
first_name: Astrid
last_name: Legrand
permalink: /author/astrid_legrand/
avatar: astrid-legrand.jpeg
title: Business Analyst & Scrum Master
linkedin: astrid-legrand-2a813685
email: astrid.legrand@ordina.be
bio: Astrid works as a Business Analyst consultant at Ordina Belgium. She is also a Scrum Master who is eager to learn and focus on continuous improvement within an agile environment.
inactive: true
duncan_casteleyn:
first_name: Duncan
last_name: Casteleyn
github: DuncanCasteleyn
linkedin: duncan-casteleyn
permalink: /author/duncan-casteleyn/
avatar: duncan-casteleyn.jpg
title: Java Consultant
email: duncan.casteleyn@ordina.be
bio: Duncan is a Java Developer, who is passionate about learning more about cloud technologies. With a strong interest in DevOps.
glenn_vandeputte:
first_name: Glenn
last_name: Van De Putte
github: gvdp
twitter: vdpglenn
permalink: /author/glenn-van-de-putte/
avatar: glenn-van-de-putte.jpg
title: Consultant
email: glenn.vandeputte@ordina.be
bio: Glenn is a Java Consultant at Ordina Belgium. With a background in testing, his main interests lie in all things automation, from automated testing to CI/CD and cloud automation.
inactive: true
jasper_rosiers:
first_name: Jasper
last_name: Rosiers
github: jasperrosiers
linkedin: jasper-rosiers
permalink: /author/jasper-rosiers/
avatar: jasper-rosiers.png
title: Java Consultant
email: jasper.rosiers@ordina.be
bio: Jasper is a Java Developer with a love for IoT and innovative tech. He has a lot of experience in building chatbots using various platforms and coupling them to different chat clients. He also has a passion for the Agile way of working, Scrum and communication, both inside and outside the team.
inactive: true
brecht_porrez:
first_name: Brecht
last_name: Porrez
github: BrechtPorrez
linkedin: brecht-porrez-a952a98
permalink: /author/brecht-porrez/
avatar: brecht-porrez.png
title: Java Consultant
email: brecht.porrez@ordina.be
bio: Brecht is a Java Developer at Ordina with a passion for IoT and related technologies. He also has a special interest in writing clean and maintainable code.
inactive: true
lore_vanderlinden:
first_name: Lore
last_name: Vanderlinden
github: LoreVdl
linkedin: lore-vanderlinden-53244517b
permalink: /author/lore-vanderlinden/
avatar: lore-vanderlinden.png
title: Frontend Developer
email: lore.vanderlinden@ordina.be
bio: Lore is a front-end enthusiast that enjoys experimenting with popular and upcoming frameworks. She loves designing applications and websites. In her spare time, she's self-employed in building challenging escape rooms.
inactive: true
lennert_peeters:
first_name: Lennert
last_name: Peeters
github: lennertpeeters
linkedin: lennert-peeters-27142a189
permalink: /author/lennert-peeters/
avatar: lennert-peeters.png
title: Frontend Developer
email: lennert.peeters@ordina.be
bio: Lennert is a driven front-end web developer. He is currently working with Vue.js because of its potential for the future and rapidly growing popularity. That's why he is "Ahead of Change".
inactive: true
mohammed_laghzaoui:
first_name: Mohammed
last_name: Laghzaoui
github: laghzaouim
linkedin: mohammed-laghzaoui
permalink: /author/mohammed-laghzaoui/
avatar: mohammed-laghzaoui.png
title: Frontend Developer
title2: Java Consultant
email: mohammed.laghzaoui@ordina.be
bio: Mohammed is a software engineer with a passion for developing innovative applications. He is well-versed in technology and writing code to create systems that are reliable and user-friendly. He is a skilled developer who has a capacity to solve problems and the ability to work excellently within a team. He loves to develop software customized to meet a company’s organizational needs, focusing on their core competencies, and their success. He is very passionate about artificial intelligence and automation.
inactive: true
nicholas_meyers:
first_name: Nicholas
last_name: Meyers
github: nicholasM95
linkedin: nicholasmeyers1
permalink: /author/nicholas-meyers/
avatar: nicholas-meyers.jpeg
title: Java Consultant
email: nicholas.meyers@ordina.be
bio: Nicholas is a Java Developer with a passion for security and an enthusiasm for exploring new technologies.
imad_hamroun:
first_name: Imad
last_name: Hamroun
github: ImadHamroun
linkedin: imad-hamroun-90a617182
permalink: /author/imad-hamroun/
avatar: imad-hamroun.png
title: Java Consultant
email: imad.hamroun@ordina.be
inactive: true
bio: Imad is a Java Consultant with a strong interest for backend technologies, iot, and machine learning. He likes to learn new technologies to improve himself.
peter_de_kinder:
first_name: Peter
last_name: De Kinder
github: peterdekinder
linkedin: peterdekinder
permalink: /author/peterdekinder/
avatar: peterdekinder.jpg
title: Solution Architect
email: peter.dekinder@ordina.be
bio: Peter is a Solution Architect with firm roots in the Java technosphere, but with a wide interest in all things architecture. His areas of specialization include Service Oriented Architectures, Business Process Management and Security.
bjorn_de_craemer:
first_name: Björn
last_name: De Craemer
github: bjorndecraemer
linkedin: bjorn-de-craemer-58095aa8
permalink: /author/bjorndecraemer/
avatar: bjorndecraemer.jpg
title: Application Architect
email: bjorn.decraemer@ordina.be
bio: Björn is an Application Architect with firm roots in the Java and Angular ecosphere, but a large interest into Servant Leadership, Coaching and leadership skills
dennis_herremans:
first_name: Dennis
last_name: Herremans
permalink: /author/dennisherremans/
avatar: dennisherremans.jpg
title: Microsoft BI Consultant
email: dennis.herremans@ordina.be
bio: Dennis is a Microsoft BI consultant at Ordina.
inactive: true
koen_vandenbossche:
first_name: Koen
last_name: Vanden Bossche
permalink: /author/koenvandenbossche/
avatar: koenvandenbossche.jpg
title: Microsoft BI Consultant