-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathindex.html
1547 lines (1325 loc) · 88 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 lang="en" xmlns="http://www.w3.org/1999/html" xmlns="http://www.w3.org/1999/html">
<head>
<meta charset="utf-8">
<!--[if IE]>
<meta http-equiv="X-UA-Compatible" content="IE=edge"><![endif]-->
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"/>
<title>SoCraTes BE</title>
<meta name="description" content="SoCraTes BE 2024, The unconference for software crafters, by software crafters">
<meta name="keywords" content="unconference, open space, belgium, unconference Belgium, socrates, socratesbe">
<meta name="author" content="SoCraTesBE">
<link rel="shortcut icon" href="assets/img/favicon.ico">
<link rel="apple-touch-icon" href="assets/img/apple-touch-icon.png">
<link rel="apple-touch-icon" sizes="72x72" href="assets/img/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="114x114" href="assets/img/apple-touch-icon-114x114.png">
<link rel="stylesheet" type="text/css" href="assets/css/custom-animations.css"/>
<link rel="stylesheet" type="text/css" href="assets/css/style.css"/>
<link rel="stylesheet" type="text/css" href="assets/css/lib/brands.css"/>
<link rel="stylesheet" type="text/css" href="assets/css/lib/solid.css"/>
<link rel="stylesheet" type="text/css" href="assets/css/lib/fontawesome.css"/>
<!--[if lt IE 9]>
<script src="assets/js/html5shiv.js"></script>
<script src="assets/js/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="preloader-mask">
<div class="preloader"></div>
</div>
<section id="hero" class="hero-section bg1 bg-cover window-height light-text">
<ul class="socials-nav">
<li class="socials-nav-item"><a href="https://twitter.com/SoCraTes_BE" target="_blank" rel="noopener noreferrer"><i
class="fa-brands fa-square-x-twitter"></i></a>
</li>
<li class="socials-nav-item"><a href="https://github.com/socratesbe/" target="_blank" rel="noopener noreferrer"><i class="fa-brands fa-github"></i></a>
</li>
</ul>
<div class="hero-heading-top centered-block align-center">
<h1 class="extra-heading">SoCraTes BE</h1>
<h2 class="thin base-font">Unconference</h2>
<h4 class="base-font"><i class="fa-solid fa-calendar" ></i> 10 - 13 October 2024</h4>
<h4 class="base-font location-in-header"><a href="#venue"><i class="fa-solid fa-location-dot"></i> Floreal La Roche-En-Ardenne</a></h4>
<!--h3 class="book-tickets-now"><a href="https://forms.gle/jYSJCegTAsnHxjS1A" target="_blank"><strong
class="highlight heading">Book your tickets NOW!</strong></a></h3-->
<h3 class="book-tickets-now">Registrations are closed, we have around 60 crafters joining us!</h3>
<h3 class="thin base-font">For software crafters</h3>
<h3 class="thin base-font">By software crafters</h3>
</div>
</section>
<header class="header header-black">
<div class="header-wrapper">
<div class="container">
<div class="col-sm-2 col-xs-12 navigation-header">
<a href="#about" class="logo">
<img src="assets/img/socratesbe.png" alt="VentCamp" width="119" height="17" class="retina-hide">
<img src="assets/img/socratesbe.png" alt="VentCamp" width="119" height="17" class="retina-show">
</a>
<button class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navigation" aria-expanded="false" aria-controls="navigation">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div class="col-sm-10 col-xs-12 navigation-container">
<div id="navigation" class="navbar-collapse collapse">
<ul class="navigation-list pull-left light-text">
<li class="navigation-item"><a href="#schedule" class="navigation-link">Schedule</a></li>
<li class="navigation-item"><a href="#gallery" class="navigation-link">Previous editions</a></li>
<li class="navigation-item"><a href="#sponsors" class="navigation-link">Sponsors</a></li>
<li class="navigation-item"><a href="#venue" class="navigation-link">Venue</a></li>
<li class="navigation-item"><a href="#coc" class="navigation-link">Code of conduct</a></li>
</ul>
</div>
</div>
</div>
</div>
</header>
<section id="about" class="section align-center">
<div class="container">
<span class="icon section-icon icon-multimedia-12"></span>
<h3>Learn, share, practice</h3>
<p class="text-alt">Join us to learn, practice and discuss Software Engineering together with like-minded <span
class="highlight">passionate software crafters</span>.
</p>
<br/>
<br/>
<div class="tabs-wrapper tabs-horizontal">
<ul class="nav nav-tabs">
<li class="active"><a href="#horizontal_tab1" data-toggle="tab">
<h6 class="heading-alt"><span class="fa-solid fa-code"></span> General info</h6>
</a></li>
<li><a href="#horizontal_tab2" data-toggle="tab">
<h6 class="heading-alt"><span class="fa-solid fa-rocket"></span> Unconference</h6>
</a></li>
<li><a href="#horizontal_tab5" data-toggle="tab">
<h6 class="heading-alt"><span class="fa-solid fa-eur"></span> Pricing</h6>
</a></li>
<li><a href="#horizontal_tab3" data-toggle="tab">
<h6 class="heading-alt"><span class="fa-solid fa-question-circle"></span> Questions</h6>
</a></li>
<li><a href="#horizontal_tab4" data-toggle="tab">
<h6 class="heading-alt"><span class="fa-solid fa-external-link"></span> Overview</h6>
</a></li>
</ul>
<div class="tab-content">
<div id="horizontal_tab1" class="tab-pane fade active in">
<div class="col-sm-5 img-column">
<img src="assets/img/logo.png" alt="" class="img-responsive"/>
</div>
<div class="col-sm-7 align-left">
<p>The SoCraTes unconference is an event by and for passionate software crafters. It is an unconference where software crafters get
together in order to learn, teach and discuss the topics that interest them. While having a very good time!</p>
<br/>
<p>The goals of the unconference are to learn and share new ideas, techniques, programming languages and frameworks through coding
dojos, pair programming, mob programming, group discussions, workshops, presentations and so on. You’ll also get to learn what other
people are working on. All of this combined with as many interesting, informal conversations as possible.</p>
<br/>
<p>This is not a 9 to 5 conference. The learning, connecting and socializing only stops when you want it to stop. During breakfast,
lunch and dinner you can freely mingle with all the participants and continue those interesting conversations. Well into the
night.</p>
<br/>
<p>So if you are passionate about software development this is definitely the unconference for you. Talk and socialize freely with many
different passionate people who are willing to learn and share their knowledge and experience. </p>
<br/>
</div>
</div>
<div id="horizontal_tab2" class="tab-pane fade">
<div class="col-sm-7 align-right">
<p>The SoCraTesBE is an <a href="https://en.wikipedia.org/wiki/Unconference">unconference</a>. This means it is a participant-driven
meeting that tries to avoid hierarchical aspects of a conventional conference. Unlike a regular conference, there is no fixed
agenda, no paid speakers, no fixed topics, no specific technology or methodology focus.</p>
<br/>
<p>It is a self-organizing event, using <a href="https://en.wikipedia.org/wiki/Open_Space_Technology">open space</a>, where the
SoCraTesBE participants create the schedule on the fly, every day before the Open Space starts. This guarantees that the
participants work around topics that truly interest them. So everyone gets back the value that they put into it.</p>
<br/>
<p>The self created “schedule” is known as the marketplace. The marketplace is basically a map of timeslots and locations for sessions
like in the picture. At the start of the day, when the marketplace is created, every participant that wants to can add a session.
They typically give a short intro of the topic they want to discuss, present, work on or experiment with that day. After which it
will be added to the marketplace. Once the marketplace is created the day sessions start. Where everyone is free to participate
whatever sessions they want.
</p>
<br/>
</div>
<div class="col-sm-5 img-column">
<img src="assets/img/gallery/socrates-2015-2-thumb.jpg" alt="" class="img-responsive"/>
<p class="text-alt" style="margin-bottom: 80px;">The marketplace</p>
</div>
</div>
<div id="horizontal_tab3" class="tab-pane fade">
<div class="col-sm-7 align-left">
<h6>Who will be there?</h6>
<p>The SoCraTes unconference is a non-profit unconference. Everyone is attending and contributing on a voluntary basis. There are no
paid speakers, no marketing driven paid sessions and no recruiters. But there will be <i>a lot</i> of <span class="highlight">highly experienced,
passionate people</span> present.
</p>
</div>
<div class="col-sm-8 img-column">
<img src="assets/img/general_info_3.jpg" alt="" class="img-responsive"/>
</div>
<div class="col-sm-7 align-left">
<h6>Will it be interesting for me?</h6>
<p>Apart from a great atmosphere and connecting with other participants, you will definitely be able to learn a lot. Because it is a
self organizing conference, you are able maximize the value you get by adding your own sessions to the marketplace and by being free
to walk in and out of any sessions you want at any time. It is <span class="highlight">your conference</span>. You will get out of
it, what you put in.</p>
<p>For example:</p>
<p><i>You want to learn a new technology or methodology?</i>
<br/>
You simply add a session to the marketplace where someone can teach it
to you.
</p>
<p><i>You have a work related real-life problem</i><br/>
You can set up a session where you can discuss it with experienced people who've been there. This can be technology,
organization or people related.
</p>
<p><i>The urge strikes you to just quietly write some code?</i> <br/> You are of course free to not attend any sessions.</p>
<br/>
</p>
</div>
<div class="col-sm-7 align-left">
<h6>Can I try out this open space concept somewhere?</h6>
<p>If you have never been to a SoCraTesBE event, a great way to learn what it is all about is to join us at one of our regular <a
href="https://www.meetup.com/socratesbe/">meetups</a> where we have an open space for one evening.</p>
<br/>
</div>
<div class="col-sm-7 align-left">
<h6>What are typical sessions?</h6>
<p>We learn and share new ideas, techniques, languages and frameworks through coding dojos, pair programming, mob programming,
groups discussions, presentations, informal conversations. Below are a couple of sessions from previous SoCraTes
unconferences </p>
<ul style="list-style-type: circle">
<li>Structure and Interpretation of Computer Programs (SICP)</li>
<li>Refactoring legacy code workshop.</li>
<li>Mob programming: the hard parts</li>
<li>Practice TDD Katas in your favourite language.</li>
<li>What are the values behind Extreme Programming?</li>
<li>Agile estimating and planning workshop</li>
<li>Try out story mapping workshop.</li>
<li>Help me create a game to practice feature pull.</li>
<li>Let's implement Git</li>
<li>Let's BDD poker</li>
<li>Team Topologies applied</li>
<li>Why you should become an IT manager</li>
</ul>
<br/>
</div>
<div class="col-sm-7 align-left">
<h6>Why does the conference overlap the weekend?</h6>
<p>We always run the conference from thursday evening to sunday morning. This seems like a fair division to us between employer and
employee. The friday is the only working day when the participant will not be working for the company. The participant commits
part of their weekend, demonstrating their eagerness to participate and learn.</p>
</div>
</div>
<div id="horizontal_tab4" class="tab-pane fade">
<div class="col-sm-5 img-column">
<img src="assets/img/general_info_2.jpg" alt="" class="img-responsive"/>
</div>
<div class="col-sm-7 align-left">
<h6>About the event</h6>
<p>This year's SoCraTes unconference runs from Thursday 10 October to Sunday 13 October 2024 at <i class="fa-solid fa-location-dot"></i><a href="https://www.florealgroup.be/nl/vakantiepark/floreal-la-roche-en-ardenne" target="_blank"> Floreal, La Roche-En-Ardenne</a>.</p>
<br/>
<p>We’ll kick off Thursday evening with dinner at 7 PM. After dinner, around 8.30 PM, we will officially open the fifth edition of
SoCraTes BE with a warm up session to get all the brains fired up. When the warm up session is finished, the floor is yours to
continue the conversation, twist it around and branch it in every direction.
</p>
<br/>
<p>On Friday and Saturday, we’ll run the open space, in which every attendee is welcome and encouraged to propose talks, discussions,
workshops or whatever else they choose to further every attendee’s knowledge and understanding of creating and maintaining
software.</p><br/>
<p>On Friday and Saturday evenings, attendees are encouraged to run social activities, from pair-programming to board games and
everything in between.</p><br/>
<p>The conference is officially over on Sunday the 13th October after breakfast. You'll be home on time for the local Belgian elections</p>
<br/>
</div>
</div>
<div id="horizontal_tab5" class="tab-pane fade">
<div class="col-sm-12 align-left">
<h3>Pricing</h3>
<p>The price for attending the unconference 2024 is</p>
<ul style="list-style-type: circle; margin-left: 40px; padding-left: 40px;">
<li><b>470 euro VAT incl for Single room</b></li>
</ul>
<p>This includes the stay in the hotel for three days, all the meals and the use of all the facilities</p>
<p>The drinks you purchase at the bar in the evening are not included</p>
<p>The ticket has to be paid in full for a complete registration.</p>
<br/>
<h3>Cancellation Policy</h3>
<h6 class="heading-alt">Cancellation</h6>
<p>Cancellation can be performed by us if we are informed by the last day of the month in which your registration was performed.
We will not send your registration to the hotel in this case. After it has been sent to the hotel we cannot guarantee anything, and you will have to deal with the hotel directly.
</p>
<br/>
<h3>Privacy Policy</h3>
<h6 class="heading-alt">Privacy</h6>
<p>
Transfer of invoicing & hotel stay related data
As the hotel will provide the invoices directly, we will supply them with the necessary data for invoicing.
The hotel will also take care of the food, so we will provide them with the nutritional information from the registration form.
This means, all data that will enter there will be shared, by accepting the policy you agree with this.
</p>
<br/>
<h6 class="heading-alt">Ticket Transfer Option</h6>
<p>
In the event that you can no longer attend the conference after the cancellation deadline has passed, we offer assistance in finding
a willing party to take over your ticket (reach out to the community). Please contact us as soon as possible to discuss this option.
If no party is found, we will not be able to refund.
</p>
<br/>
<h6 class="heading-alt">Force Majeure Events</h6>
<p>
In case of circumstances beyond our control, such as the hotel going bankrupt or a COVID-like event affecting the conference, our
cancellation policy may be subject to change. Under such circumstances, refunds will be determined on a case-by-case basis,
depending on the severity and impact of the situation. While we will do our best to accommodate attendees' needs, we cannot
guarantee a full refund in these exceptional cases.
Please note that all refund requests and inquiries related to ticket transfers should be directed to <a
href="mailto:[email protected]">SoCraTesBe</a>. Our team will respond promptly and assist you with the necessary steps.
</p>
<br/>
<h3>Book tickets</h3>
<h6 class="heading-alt">Join SoCraTes 2024!</h6>
<p>
Reserve your tickets today via <a href="https://forms.gle/jYSJCegTAsnHxjS1A" target="_blank">this Google Form</a>!
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="feedback23" class="section bg-cover overlay bg4 align-center">
<div class="container">
<h5 class="highlight heading">Feedback from the unconference 2023</h5>
<p class="text-alt" style="margin-bottom: 80px;">what participants said afterward</p>
<div class="row">
<div class="col-sm-4">
<div class="testimonial">
<article class="text-box">Best conference yet and I have to confess there will be a little more hesitancy from my side about going to a non
open-space conference in the future! Special thanks to all the organizers, it was super smooth and action was taken immediately to make
it even better as we went along. Few more kudos that stuck in my mind: to
Erik for the respons-a-bility keyword and literature that I can use, session still resonates so much. To Enver and Karel for doing the
codespaces session - we laughed so hard and loud I’m sure the whole hotel heard us :) and to
Stephane for the session on climate change - you inspired me to activate my network and look for a nonprofit or project I can help with
to pay it forward. Love you all :)
</article>
<div class="author-block">
<strong class="name">Bojan</strong>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="testimonial">
<article class="text-box">As a first-time participant, the Socrates.be unconference surpassed all my expectations and gave me more energy
and inspiration than any other learning format I tried so far.
The wealth of topics and discussions (team dynamics, personal development, environment, mats and of course a lot of tech), left me
wishing I could clone myself to fully absorb it all.
And if you wonder is such an open space format without agenda upfron works in practice? The (self-)organisation worked seamlessly,
making the entire experience fantastic to be a part of :)
Looking forward to socratesbe 2024 already!
</article>
<div class="author-block">
<strong class="name">Toon</strong>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="testimonial">
<article class="text-box">This was my first Socrates unconference, so I went in without expectations and with an open mind. What I
experienced was mind blowing (knowledge-, inspiration- and togetherness-wise). Thank you all for making this first experience a great
one.
<br/>
<br/>
<br/>
“One of the marvelous things about community is that it enables us to welcome and help people in a way we couldn't as individuals.”
</article>
<div class="author-block">
<strong class="name">Tino</strong>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<div class="testimonial">
<article class="text-box">Thank you for a fantastic event! I arrived with a mindset that code is just a tool and I have to learn to use it
better. I'm leaving with appreciation for how beautiful it can be and a desire to be able to make it so myself. A big shift from "have
to" to "wish to" that I didn't expect, but I like it.
</article>
<div class="author-block">
<strong class="name">Gabrijela</strong>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="testimonial">
<article class="text-box">The 2023 edition of SocratesBE marked the culmination of an era, signaling the last occurrence for certain
aspects, yet simultaneously heralding great times that promise exciting new beginnings.
</article>
<div class="author-block">
<strong class="name">ChatGPT</strong>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="testimonial">
<article class="text-box">Thank you all for a fantastic couple of days, although if I had my way we’d still be in the conference centre
arguing over those €55. Hope to see you again next year.
</article>
<div class="author-block">
<strong class="name">Duncan</strong>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="gallery23" class="section align-center">
<div class="container">
<h3>Pictures from the 2023 event</h3>
<div class="gallery masonry">
<span class="masonry-item">
<a href="#" class="gallery-thumb-link" data-modal-link="gallery23-4">
<img src="assets/img/gallery/2023/socrates23-4-thumb.jpg" alt="">
</a>
<div class="modal-window" data-modal="gallery23-4">
<div class="modal-box medium animated" data-animation="zoomIn" data-duration="700">
<span class="close-btn icon icon-office-52"></span>
<h5 class="heading-alt">SoCraTes BE 2023 - warm up sessions</h5>
<br/>
<img src="assets/img/gallery/2023/socrates23-4.jpg" class="full-width-img" alt="gallery23-4">
</div>
</div>
</span>
<span class="masonry-item">
<a href="#" class="gallery-thumb-link" data-modal-link="gallery23-3">
<img src="assets/img/gallery/2023/socrates23-3-thumb.jpg" alt="">
</a>
<div class="modal-window" data-modal="gallery23-3">
<div class="modal-box medium animated" data-animation="zoomIn" data-duration="700">
<span class="close-btn icon icon-office-52"></span>
<h5 class="heading-alt">SoCraTes BE 2023 - lightning talks</h5>
<br/>
<img src="assets/img/gallery/2023/socrates23-3.jpg" class="full-width-img" alt="gallery23-3">
</div>
</div>
</span>
<span class="masonry-item">
<a href="#" class="gallery-thumb-link" data-modal-link="gallery23-5">
<img src="assets/img/gallery/2023/socrates23-5-thumb.jpg" alt="">
</a>
<div class="modal-window" data-modal="gallery23-5">
<div class="modal-box medium animated" data-animation="zoomIn" data-duration="700">
<span class="close-btn icon icon-office-52"></span>
<h5 class="heading-alt">SoCraTes BE 2023 - Start of the day</h5>
<br/>
<img src="assets/img/gallery/2023/socrates23-5.jpg" class="full-width-img" alt="gallery23-5">
</div>
</div>
</span>
<span class="masonry-item">
<a href="#" class="gallery-thumb-link" data-modal-link="gallery23-1">
<img src="assets/img/gallery/2023/socrates23-1-thumb.jpg" alt="">
</a>
<div class="modal-window" data-modal="gallery23-1">
<div class="modal-box medium animated" data-animation="zoomIn" data-duration="700">
<span class="close-btn icon icon-office-52"></span>
<h5 class="heading-alt">SoCraTes BE 2023 - Creating the marketplace</h5>
<br/>
<img src="assets/img/gallery/2023/socrates23-1.jpg" class="full-width-img" alt="gallery23-1">
</div>
</div>
</span>
<span class="masonry-item">
<a href="#" class="gallery-thumb-link" data-modal-link="gallery23-7">
<img src="assets/img/gallery/2023/socrates23-7-thumb.jpg" alt="">
</a>
<div class="modal-window" data-modal="gallery23-7">
<div class="modal-box medium animated" data-animation="zoomIn" data-duration="700">
<span class="close-btn icon icon-office-52"></span>
<h5 class="heading-alt">SoCraTes BE 2023 - Good conversations everywhere</h5>
<br/>
<img src="assets/img/gallery/2023/socrates23-7.jpg" class="full-width-img" alt="gallery23-7">
</div>
</div>
</span>
<span class="masonry-item">
<a href="#" class="gallery-thumb-link" data-modal-link="gallery23-8">
<img src="assets/img/gallery/2023/socrates23-8-thumb.jpg" alt="">
</a>
<div class="modal-window" data-modal="gallery23-8">
<div class="modal-box medium animated" data-animation="zoomIn" data-duration="700">
<span class="close-btn icon icon-office-52"></span>
<h5 class="heading-alt">SoCraTes BE 2023 - Session in full swing</h5>
<br/>
<img src="assets/img/gallery/2023/socrates23-8.jpg" class="full-width-img" alt="gallery23-8">
</div>
</div>
</span>
<span class="masonry-item">
<a href="#" class="gallery-thumb-link" data-modal-link="gallery23-9">
<img src="assets/img/gallery/2023/socrates23-9-thumb.jpg" alt="">
</a>
<div class="modal-window" data-modal="gallery23-9">
<div class="modal-box medium animated" data-animation="zoomIn" data-duration="700">
<span class="close-btn icon icon-office-52"></span>
<h5 class="heading-alt">SoCraTes BE 2023 - Doing code kata's together</h5>
<br/>
<img src="assets/img/gallery/2023/socrates23-9.jpg" class="full-width-img" alt="gallery23-9">
</div>
</div>
</span>
<span class="masonry-item">
<a href="#" class="gallery-thumb-link" data-modal-link="gallery23-11">
<img src="assets/img/gallery/2023/socrates23-11-thumb.jpg" alt="">
</a>
<div class="modal-window" data-modal="gallery23-11">
<div class="modal-box medium animated" data-animation="zoomIn" data-duration="700">
<span class="close-btn icon icon-office-52"></span>
<h5 class="heading-alt">SoCraTes BE 2023 - Start second day</h5>
<br/>
<img src="assets/img/gallery/2023/socrates23-11.jpg" class="full-width-img" alt="gallery23-11">
</div>
</div>
</span>
<span class="masonry-item">
<a href="#" class="gallery-thumb-link" data-modal-link="gallery23-10">
<img src="assets/img/gallery/2023/socrates23-10-thumb.jpg" alt="">
</a>
<div class="modal-window" data-modal="gallery23-10">
<div class="modal-box medium animated" data-animation="zoomIn" data-duration="700">
<span class="close-btn icon icon-office-52"></span>
<h5 class="heading-alt">SoCraTes BE 2023 - Discussing flow</h5>
<br/>
<img src="assets/img/gallery/2023/socrates23-10.jpg" class="full-width-img" alt="gallery23-10">
</div>
</div>
</span>
<span class="masonry-item">
<a href="#" class="gallery-thumb-link" data-modal-link="gallery23-6">
<img src="assets/img/gallery/2023/socrates23-6-thumb.jpg" alt="">
</a>
<div class="modal-window" data-modal="gallery23-6">
<div class="modal-box medium animated" data-animation="zoomIn" data-duration="700">
<span class="close-btn icon icon-office-52"></span>
<h5 class="heading-alt">Last minute lightning talks preparation</h5>
<br/>
<img src="assets/img/gallery/2023/socrates23-6.jpg" class="full-width-img" alt="gallery23-6">
</div>
</div>
</span>
<span class="masonry-item">
<a href="#" class="gallery-thumb-link" data-modal-link="gallery23-12">
<img src="assets/img/gallery/2023/socrates23-12-thumb.jpg" alt="">
</a>
<div class="modal-window" data-modal="gallery23-12">
<div class="modal-box medium animated" data-animation="zoomIn" data-duration="700">
<span class="close-btn icon icon-office-52"></span>
<h5 class="heading-alt">Reflecting on lessons learned</h5>
<br/>
<img src="assets/img/gallery/2023/socrates23-12.jpg" class="full-width-img" alt="gallery23-12">
</div>
</div>
</span>
<span class="masonry-item">
<a href="#" class="gallery-thumb-link" data-modal-link="gallery23-2">
<img src="assets/img/gallery/2023/socrates23-2-thumb.jpg" alt="">
</a>
<div class="modal-window" data-modal="gallery23-2">
<div class="modal-box medium animated" data-animation="zoomIn" data-duration="700">
<span class="close-btn icon icon-office-52"></span>
<h5 class="heading-alt">SoCraTes BE 2023 - The 55 euro game</h5>
<br/>
<img src="assets/img/gallery/2023/socrates23-2.jpg" class="full-width-img" alt="gallery23-2">
</div>
</div>
</span>
</div>
</div>
</section>
<section id="schedule" class="section align-center">
<div class="container">
<h5 class="heading-alt">Schedule</h5>
<p class="text-alt" style="margin-bottom: 80px;">overview of conference</p>
<div class="col-md-10 col-md-offset-1">
<!-- Schedule start -->
<div class="row schedule schedule-light">
<!-- Navigation by day start -->
<ul class="nav nav-schedule">
<li class="active"><a href="#schedule3_day1" data-toggle="tab">Thursday, October 10</a></li>
<li><a href="#schedule3_day2" data-toggle="tab">Friday, October 11</a></li>
<li><a href="#schedule3_day3" data-toggle="tab">Saturday, October 12</a></li>
<li><a href="#schedule3_day4" data-toggle="tab">Sunday, October 13</a></li>
</ul>
<!-- Navigation by day end -->
<!-- First level content start -->
<div class="tab-content">
<!-- Day 1 content start -->
<div id="schedule3_day1" class="tab-pane fade active in">
<!-- Accordion start -->
<div class="panel-group" id="schedule3_day1_timeline">
<div class="panel schedule-item">
<a data-toggle="collapse" href="#schedule3_day1_time0" class="schedule-item-toggle">
<strong class="time highlight">4:00 PM - ...</strong>
<div class="lecture-icon-wrapper"><span class="fa fa-bars"></span></div>
<h6 class="title">Check-in</h6>
</a>
<div id="schedule3_day1_time0" class="panel-collapse collapse in schedule-item-body">
<p class="description">Upon arrival at <a href="https://www.florealgroup.be/en/holiday-parc/floreal-la-roche-en-ardenne">Hotel Floreal @ LA Roche</a>, you need to check in at the
hotel to get your room. There is, of course, no fixed timeslot for this. There will probably be some people who have arrived early; you might find them in the hotel bar located downstairs from the lobby! Or it will be posted on Slack where everyone is gathering.</p>
</div>
</div>
<!-- Lecture start -->
<div class="panel schedule-item">
<a data-toggle="collapse" href="#schedule3_day1_time1" class="schedule-item-toggle">
<strong class="time highlight">7:00 PM</strong>
<div class="lecture-icon-wrapper"><span class="fa fa-cutlery"></span></div>
<h6 class="title">Walking diner</h6>
</a>
<div id="schedule3_day1_time1" class="panel-collapse collapse in schedule-item-body">
<p class="description">When you are checked in to your room, it is time to strengthen the body. There is a walking diner in the evening before we get together in the conference room to kick off socrates.</p>
</div>
</div>
<!-- Lecture end -->
<!-- Lecture start -->
<div class="panel schedule-item">
<a data-toggle="collapse" href="#schedule3_day1_time2" class="schedule-item-toggle collapsed">
<strong class="time highlight">8:30 PM - 9:00 PM</strong>
<div class="lecture-icon-wrapper"><span class="fa fa-bars"></span></div>
<h6 class="title">Kick off</h6>
</a>
<div id="schedule3_day1_time2" class="panel-collapse collapse in schedule-item-body">
<p class="description">Official opening of this edition of SoCraTes BE with a warm up session to get all the brains fired
up!</p>
</div>
<!-- Lecture end -->
</div>
<!-- Lecture start -->
<div class="panel schedule-item">
<a data-toggle="collapse" href="#schedule3_day1_time3" class="schedule-item-toggle collapsed">
<strong class="time highlight">9:00 PM - 10:00 PM</strong>
<div class="lecture-icon-wrapper"><span class="fa fa-bars"></span></div>
<h6 class="title">Lightning talks</h6>
</a>
<div id="schedule3_day1_time3" class="panel-collapse collapse in schedule-item-body">
<p class="description">During this timeslot we invite all participants who feel like sharing a short session on any
topic to
take the stage.</p></div>
</div>
<!-- Lecture end -->
</div>
<!-- Accordion end -->
</div>
<!-- Day 1 content end -->
<!-- Day 2 content start -->
<div id="schedule3_day2" class="tab-pane fade in">
<!-- Accordion start -->
<div class="panel-group" id="schedule3_day2_timeline">
<!-- Lecture start -->
<div class="panel schedule-item">
<a data-toggle="collapse" href="#schedule3_day2_time1" class="schedule-item-toggle">
<strong class="time highlight">7:30 AM - 8:45 AM</strong>
<div class="lecture-icon-wrapper"><span class="fa fa-coffee"></span></div>
<h6 class="title">Breakfast</h6>
</a>
<div id="schedule3_day2_time1" class="panel-collapse collapse in schedule-item-body">
<p class="description">We start the day with a good breakfast</p>
</div>
</div>
<!-- Lecture end -->
<!-- Lecture start -->
<div class="panel schedule-item">
<a data-toggle="collapse" href="#schedule3_day2_time3" class="schedule-item-toggle collapsed">
<strong class="time highlight">09:00 AM - 10:30 AM</strong>
<div class="lecture-icon-wrapper"><span class="fa fa-bars"></div>
<h6 class="title">Market place</h6>
</a>
<div id="schedule3_day2_time3" class="panel-collapse collapse in schedule-item-body">
<p class="description">Time for everyone to write down their sessions and pick a slot on the market place.</p>
</div>
</div>
<!-- Lecture end -->
<!-- Lecture start -->
<div class="panel schedule-item">
<a data-toggle="collapse" href="#schedule3_day2_time4" class="schedule-item-toggle collapsed">
<strong class="time highlight">10:30 AM - 12:30 PM</strong>
<div class="lecture-icon-wrapper"><span class="fa fa-bars"></div>
<h6 class="title">Sessions</h6>
</a>
<div id="schedule3_day2_time4" class="panel-collapse collapse in schedule-item-body">
<p class="description">The sessions are one hour long.</p>
</div>
</div>
<!-- Lecture end -->
<!-- Lecture start -->
<div class="panel schedule-item">
<a data-toggle="collapse" href="#schedule3_day2_time5" class="schedule-item-toggle collapsed">
<strong class="time highlight">12:30 PM - 1:30 PM</strong>
<div class="lecture-icon-wrapper"><span class="fa fa-cutlery"></span></div>
<h6 class="title">Lunch</h6>
</a>
<div id="schedule3_day2_time5" class="panel-collapse collapse in schedule-item-body">
<p class="description">Time to refuel.</p>
</div>
</div>
<!-- Lecture end -->
<!-- Lecture start -->
<div class="panel schedule-item">
<a data-toggle="collapse" href="#schedule3_day2_time6" class="schedule-item-toggle collapsed">
<strong class="time highlight">1:30 PM - 6:30 PM</strong>
<div class="lecture-icon-wrapper"><span class="fa fa-bars"></div>
<h6 class="title">Sessions</h6>
</a>
<div id="schedule3_day2_time6" class="panel-collapse collapse in schedule-item-body">
<p class="description">The sessions are one hour long.</p>
</div>
</div>
<!-- Lecture end -->
<!-- Lecture start -->
<div class="panel schedule-item">
<a data-toggle="collapse" href="#schedule3_day2_time7" class="schedule-item-toggle collapsed">
<strong class="time highlight">6:30 PM - 7:00 PM</strong>
<div class="lecture-icon-wrapper"><span class="fa fa-bars"></div>
<h6 class="title">Wrap up</h6>
</a>
<div id="schedule3_day2_time7" class="panel-collapse collapse in schedule-item-body">
<p class="description">Time to wrap up the first day of SoCraTes BE!</p>
</div>
</div>
<!-- Lecture end -->
<!-- Lecture start -->
<div class="panel schedule-item">
<a data-toggle="collapse" href="#schedule3_day2_time8" class="schedule-item-toggle collapsed">
<strong class="time highlight">7:00 PM - 8:00 PM</strong>
<div class="lecture-icon-wrapper"><span class="fa fa-cutlery"></span></div>
<h6 class="title">Dinner</h6>
</a>
<div id="schedule3_day2_time8" class="panel-collapse collapse in schedule-item-body">
<p class="description">We end the day with dinner. </p>
</div>
</div>
<!-- Lecture end -->
<!-- Lecture start -->
<div class="panel schedule-item">
<a data-toggle="collapse" href="#schedule3_day3_time7" class="schedule-item-toggle collapsed">
<strong class="time highlight">8:00 PM - 00:00 PM</strong>
<div class="lecture-icon-wrapper"><span class="fa fa-bars"></div>
<h6 class="title">Evening activities</h6>
</a>
<div id="schedule3_day3_time7" class="panel-collapse collapse in schedule-item-body">
<p class="description">Time to code, play, sing, play music, dance or whatever else you want to do during the evening.</p>
</div>
</div>
<!-- Lecture end -->
</div>
<!-- Accordion end -->
</div>
<!-- Day 2 content end -->
<!-- Day 3 content start -->
<div id="schedule3_day3" class="tab-pane fade in">
<!-- Accordion start -->
<div class="panel-group" id="schedule3_day3_timeline">
<!-- Lecture start -->
<div class="panel schedule-item">
<a data-toggle="collapse" href="#schedule3_day3_time1" class="schedule-item-toggle">
<strong class="time highlight">7:30 AM - 9:00 AM</strong>
<div class="lecture-icon-wrapper"><span class="fa fa-coffee"></span></div>
<h6 class="title">Breakfast</h6>
</a>
<div id="schedule3_day3_time1" class="panel-collapse collapse in schedule-item-body">
<p class="description">We start the day with a good breakfast</p>
</div>
</div>
<!-- Lecture end -->
<!-- Lecture start -->
<div class="panel schedule-item">
<a data-toggle="collapse" href="#schedule3_day3_time3" class="schedule-item-toggle collapsed">
<strong class="time highlight">9:00 AM - 10:30 AM</strong>
<div class="lecture-icon-wrapper"><span class="fa fa-bars"></div>
<h6 class="title">Market place</h6>
</a>
<div id="schedule3_day3_time3" class="panel-collapse collapse in schedule-item-body">
<p class="description">Time for everyone to write down their sessions and pick a slot on the market place.</p>
</div>
</div>
<!-- Lecture end -->
<!-- Lecture start -->
<div class="panel schedule-item">
<a data-toggle="collapse" href="#schedule3_day3_time4" class="schedule-item-toggle collapsed">
<strong class="time highlight">10:30 AM - 12:30 PM</strong>
<div class="lecture-icon-wrapper"><span class="fa fa-bars"></div>
<h6 class="title">Sessions</h6>
</a>
<div id="schedule3_day3_time4" class="panel-collapse collapse in schedule-item-body">
<p class="description">The sessions are one hour long.</p>
</div>
</div>
<!-- Lecture end -->
<!-- Lecture start -->
<div class="panel schedule-item">
<a data-toggle="collapse" href="#schedule3_day3_time5" class="schedule-item-toggle collapsed">
<strong class="time highlight">12:30 PM - 1:30 PM</strong>
<div class="lecture-icon-wrapper"><span class="fa fa-cutlery"></span></div>
<h6 class="title">Lunch</h6>
</a>
<div id="schedule3_day3_time5" class="panel-collapse collapse in schedule-item-body">
<p class="description">Time to refuel.</p>
</div>
</div>
<!-- Lecture end -->
<!-- Lecture start -->
<div class="panel schedule-item">
<a data-toggle="collapse" href="#schedule3_day3_time6" class="schedule-item-toggle collapsed">
<strong class="time highlight">1:30 PM - 6:30 PM</strong>
<div class="lecture-icon-wrapper"><span class="fa fa-bars"></div>
<h6 class="title">Sessions</h6>
</a>
<div id="schedule3_day3_time6" class="panel-collapse collapse in schedule-item-body">
<p class="description">The sessions are one hour long.</p>
</div>
</div>
<!-- Lecture end -->
<!-- Lecture start -->
<div class="panel schedule-item">
<a data-toggle="collapse" href="#schedule3_day3_time7" class="schedule-item-toggle collapsed">
<strong class="time highlight">6:30 PM - 7:00 PM</strong>
<div class="lecture-icon-wrapper"><span class="fa fa-bars"></div>
<h6 class="title">Wrap up</h6>
</a>
<div id="schedule3_day3_time7" class="panel-collapse collapse in schedule-item-body">
<p class="description">Time to wrap up the second day of SoCraTes BE!</p>
</div>
</div>
<!-- Lecture end -->
<!-- Lecture start -->
<div class="panel schedule-item">
<a data-toggle="collapse" href="#schedule3_day3_time8" class="schedule-item-toggle collapsed">
<strong class="time highlight">7:00 PM - 8:00 PM</strong>
<div class="lecture-icon-wrapper"><span class="fa fa-cutlery"></span></div>
<h6 class="title">Dinner</h6>
</a>
<div id="schedule3_day3_time8" class="panel-collapse collapse in schedule-item-body">
<p class="description">We end the day with dinner. </p>
</div>
</div>
<!-- Lecture end -->
<!-- Lecture start -->
<div class="panel schedule-item">
<a data-toggle="collapse" href="#schedule3_day3_time7" class="schedule-item-toggle collapsed">
<strong class="time highlight">8:00 PM - 00:00 PM</strong>
<div class="lecture-icon-wrapper"><span class="fa fa-bars"></div>
<h6 class="title">Evening activities</h6>
</a>
<div id="schedule3_day3_time7" class="panel-collapse collapse in schedule-item-body">
<p class="description">Time to code, play, sing, play music, dance or whatever else you want to do during the evening.</p>
</div>
</div>
<!-- Lecture end -->
</div>
<!-- Accordion end -->
</div>
<!-- Day 3 content end -->
<!-- Day 4 content start -->
<div id="schedule3_day4" class="tab-pane fade in">
<!-- Accordion start -->
<div class="panel-group" id="schedule3_day1_timeline">
<!-- Lecture start -->
<div class="panel schedule-item">
<a data-toggle="collapse" href="#schedule3_day4_time1" class="schedule-item-toggle">
<strong class="time highlight">8:00 AM - 10:00 AM</strong>
<div class="lecture-icon-wrapper"><span class="fa fa-coffee"></span></div>
<h6 class="title">Breakfast</h6>
</a>
<div id="schedule3_day4_time1" class="panel-collapse collapse in schedule-item-body">
<p class="description">We start the day with a good breakfast</p>
</div>
</div>
<!-- Lecture end -->
<!-- Lecture start -->
<div class="panel schedule-item">
<a data-toggle="collapse" href="#schedule3_day4_time2" class="schedule-item-toggle collapsed">
<strong class="time highlight">10:00 AM - 11:00 AM</strong>
<div class="lecture-icon-wrapper"><span class="fa fa-bars"></div>
<h6 class="title">Checkout</h6>
</a>
<div id="schedule3_day4_time2" class="panel-collapse collapse in schedule-item-body">
<p class="description">Time to checkout!</p>
</div>
</div>
<!-- Lecture end -->
</div>
<!-- Accordion end -->
</div>
<!-- Day 4 content end -->
</div>
<!-- First level content end -->
</div>
<!-- Schedule end -->
</div>
</div>
</section>
<section id="gallery" class="section bg-cover overlay bg4 align-center">
<div class="container">
<span class="icon section-icon icon-badges-votes-01"></span>
<h3 class="highlight heading">Previous events</h3>
<p class="text-alt">You can find a small report of the 2022 edition <a href="https://www.tripled.io/10/07/2022/Socrates22/">here</a>.</p>
<p class="text-alt">A great way to learn what it is all about is to join us at one of our regular <a
href="https://www.meetup.com/socratesbe/">meetups</a></p>
<br/>
<div class="gallery masonry">
<!-- 2022 -->
<span class="masonry-item">
<a href="#" class="gallery-thumb-link" data-modal-link="gallery-9">
<img src="assets/img/gallery/socrates-2022-1-thumb.jpg" alt="">
</a>