-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschedule.html
967 lines (785 loc) · 80.9 KB
/
schedule.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
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<!-- Mirrored from 2016.drupalaton.hu/schedule by HTTrack Website Copier/3.x [XR&CO'2014], Sun, 05 Mar 2017 14:56:33 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=utf-8" /><!-- /Added by HTTrack -->
<head profile="http://www.w3.org/1999/xhtml/vocab">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="shortcut icon" href="sites/default/files/drupalalton_logo_t.png" type="image/png" />
<meta name="generator" content="Drupal 7 (http://drupal.org)" />
<link rel="canonical" href="schedule" />
<link rel="shortlink" href="schedule" />
<meta property="og:site_name" content="Drupalaton" />
<meta property="og:type" content="website" />
<meta property="og:url" content="schedule" />
<meta property="og:title" content="Schedule" />
<meta property="og:image" content="http://2015.drupalaton.hu/profiles/drupalaton_profile/themes/drupalaton_theme/img/apple-touch-icon.png" />
<meta property="og:image:secure_url" content="https://2015.drupalaton.hu/profiles/drupalaton_profile/themes/drupalaton_theme/img/apple-touch-icon.png" />
<meta property="og:latitude" content="46.7498745" />
<meta property="og:longitude" content="17.2419545" />
<meta property="og:locality" content="Keszthely" />
<meta property="og:postal_code" content="8360" />
<meta property="og:country_name" content="Hungary" />
<meta property="og:email" content="[email protected]" />
<title>Schedule | Drupalaton</title>
<style>
@import url("modules/system/system.base0ea2.css?obhy8a");
</style>
<style media="screen">
@import url("sites/all/modules/contrib/codefilter/codefilter0ea2.css?obhy8a");
</style>
<style>
@import url("modules/field/theme/field0ea2.css?obhy8a");
@import url("sites/all/modules/contrib/scald/modules/fields/mee/css/editor-global0ea2.css?obhy8a");
@import url("modules/node/node0ea2.css?obhy8a");
@import url("sites/all/modules/contrib/views/css/views0ea2.css?obhy8a");
@import url("sites/all/modules/contrib/ckeditor/css/ckeditor0ea2.css?obhy8a");
</style>
<style>
@import url("sites/all/modules/contrib/ctools/css/ctools0ea2.css?obhy8a");
@import url("sites/all/modules/contrib/panels/css/panels0ea2.css?obhy8a");
@import url("sites/all/modules/contrib/panels/plugins/layouts/flexible/flexible0ea2.css?obhy8a");
</style>
<style>.panels-flexible-new .panels-flexible-region {
padding: 0;
}
.panels-flexible-new .panels-flexible-region-inside {
padding-right: 0.5em;
padding-left: 0.5em;
}
.panels-flexible-new .panels-flexible-region-inside-first {
padding-left: 0;
}
.panels-flexible-new .panels-flexible-region-inside-last {
padding-right: 0;
}
.panels-flexible-new .panels-flexible-column {
padding: 0;
}
.panels-flexible-new .panels-flexible-column-inside {
padding-right: 0.5em;
padding-left: 0.5em;
}
.panels-flexible-new .panels-flexible-column-inside-first {
padding-left: 0;
}
.panels-flexible-new .panels-flexible-column-inside-last {
padding-right: 0;
}
.panels-flexible-new .panels-flexible-row {
padding: 0 0 0.5em 0;
margin: 0;
}
.panels-flexible-new .panels-flexible-row-last {
padding-bottom: 0;
}
.panels-flexible-column-new-main {
float: left;
width: 99.0000%;
}
.panels-flexible-new-inside {
padding-right: 0px;
}
.panels-flexible-new {
width: auto;
}
.panels-flexible-region-new-center {
float: left;
width: 99.0000%;
}
.panels-flexible-row-new-main-row-inside {
padding-right: 0px;
}
</style>
<link type="text/css" rel="stylesheet" href="http://cdn.jsdelivr.net/bootstrap/3.3.5/css/bootstrap.css" media="all" />
<style>
@import url("sites/all/themes/bootstrap/css/3.3.5/overrides.min0ea2.css?obhy8a");
@import url("profiles/drupalaton_profile/themes/drupalaton_theme/css/style0ea2.css?obhy8a");
</style>
<link href='http://fonts.googleapis.com/css?family=Oswald:400,300,700|Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800&subset=latin,latin-ext' rel='stylesheet' type='text/css'>
<!--[if lt IE 9]>
<![endif]-->
<!--[if IE]>
<link rel="stylesheet" type="text/css" href="/profiles/drupalaton_profile/themes/drupalaton_theme/css/ie.css" />
<script type="text/javascript" src="/profiles/drupalaton_profile/themes/drupalaton_theme/lib/respond/src/respond.js"></script>
<![endif]-->
<!-- HTML5 element support for IE6-8 -->
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<script src="sites/all/modules/contrib/jquery_update/replace/jquery/1.9/jquery.min4b17.js?v=1.9.1"></script>
<script src="misc/jquery.once7839.js?v=1.2"></script>
<script src="misc/drupal0ea2.js?obhy8a"></script>
<script src="http://cdn.jsdelivr.net/bootstrap/3.3.5/js/bootstrap.js"></script>
<script src="sites/all/modules/contrib/codefilter/codefilter0ea2.js?obhy8a"></script>
<script src="sites/all/modules/contrib/scald/modules/providers/scald_image/scald_image0ea2.js?obhy8a"></script>
<script src="sites/all/modules/contrib/google_analytics/googleanalytics0ea2.js?obhy8a"></script>
<script src="sites/all/modules/contrib/field_group/field_group0ea2.js?obhy8a"></script>
<script>(function(i,s,o,g,r,a,m){i["GoogleAnalyticsObject"]=r;i[r]=i[r]||function(){(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)})(window,document,"script","http://www.google-analytics.com/analytics.js","ga");ga("create", "UA-40638603-1", {"cookieDomain":"auto"});ga("set", "anonymizeIp", true);ga("send", "pageview");</script>
<script src="profiles/drupalaton_profile/themes/drupalaton_theme/js/scrollorama0ea2.js?obhy8a"></script>
<script src="profiles/drupalaton_profile/themes/drupalaton_theme/js/make-the-site-fancy0ea2.js?obhy8a"></script>
<script>jQuery.extend(Drupal.settings, {"basePath":"\/","pathPrefix":"","ajaxPageState":{"theme":"drupalaton_theme","theme_token":"Itvv-1J4GV4ePX2a1SjoK-ug4Gmz01-d-n8BTToYkqE","js":{"sites\/all\/themes\/bootstrap\/js\/bootstrap.js":1,"sites\/all\/modules\/contrib\/jquery_update\/replace\/jquery\/1.9\/jquery.min.js":1,"misc\/jquery.once.js":1,"misc\/drupal.js":1,"\/\/cdn.jsdelivr.net\/bootstrap\/3.3.5\/js\/bootstrap.js":1,"sites\/all\/modules\/contrib\/codefilter\/codefilter.js":1,"sites\/all\/modules\/contrib\/scald\/modules\/providers\/scald_image\/scald_image.js":1,"sites\/all\/modules\/contrib\/google_analytics\/googleanalytics.js":1,"sites\/all\/modules\/contrib\/field_group\/field_group.js":1,"0":1,"profiles\/drupalaton_profile\/themes\/drupalaton_theme\/js\/scrollorama.js":1,"profiles\/drupalaton_profile\/themes\/drupalaton_theme\/js\/make-the-site-fancy.js":1},"css":{"modules\/system\/system.base.css":1,"sites\/all\/modules\/contrib\/codefilter\/codefilter.css":1,"modules\/field\/theme\/field.css":1,"sites\/all\/modules\/contrib\/scald\/modules\/fields\/mee\/css\/editor-global.css":1,"modules\/node\/node.css":1,"sites\/all\/modules\/contrib\/views\/css\/views.css":1,"sites\/all\/modules\/contrib\/ckeditor\/css\/ckeditor.css":1,"sites\/all\/modules\/contrib\/ctools\/css\/ctools.css":1,"sites\/all\/modules\/contrib\/panels\/css\/panels.css":1,"sites\/all\/modules\/contrib\/panels\/plugins\/layouts\/flexible\/flexible.css":1,"0":1,"\/\/cdn.jsdelivr.net\/bootstrap\/3.3.5\/css\/bootstrap.css":1,"sites\/all\/themes\/bootstrap\/css\/3.3.5\/overrides.min.css":1,"profiles\/drupalaton_profile\/themes\/drupalaton_theme\/css\/style.css":1}},"field_group":{"div":"schedule"},"googleanalytics":{"trackOutbound":1,"trackMailto":1,"trackDownload":1,"trackDownloadExtensions":"7z|aac|arc|arj|asf|asx|avi|bin|csv|doc(x|m)?|dot(x|m)?|exe|flv|gif|gz|gzip|hqx|jar|jpe?g|js|mp(2|3|4|e?g)|mov(ie)?|msi|msp|pdf|phps|png|ppt(x|m)?|pot(x|m)?|pps(x|m)?|ppam|sld(x|m)?|thmx|qtm?|ra(m|r)?|sea|sit|tar|tgz|torrent|txt|wav|wma|wmv|wpd|xls(x|m|b)?|xlt(x|m)|xlam|xml|z|zip"},"bootstrap":{"anchorsFix":"0","anchorsSmoothScrolling":"0","formHasError":1,"popoverEnabled":1,"popoverOptions":{"animation":1,"html":0,"placement":"right","selector":"","trigger":"click","triggerAutoclose":1,"title":"","content":"","delay":0,"container":"body"},"tooltipEnabled":1,"tooltipOptions":{"animation":1,"html":0,"placement":"auto left","selector":"","trigger":"hover focus","delay":0,"container":"body"}}});</script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta property="fb:app_id" content="372862979453673">
<meta name="google-site-verification" content="OQkJo4hICfIbZbQxvcU6c3Z3GhbQaEmD7KIEwqXZjZM" />
</head>
<body class="html not-front not-logged-in no-sidebars page-schedule win desktop navbar-is-fixed-top" >
<div id="skip-link">
<a href="#main-content" class="element-invisible element-focusable">Skip to main content</a>
</div>
<div class="global">
<header id="navbar" role="banner" class="navbar navbar-fixed-top navbar-default">
<div class="container">
<!-- .btn-navbar is used as the toggle for collapsed navbar content -->
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<div class="navbar-collapse collapse">
<nav role="navigation">
<ul class="menu nav navbar-nav"><li class="first expanded dropdown"><a href="about" data-target="#" class="dropdown-toggle" data-toggle="dropdown">About <span class="caret"></span></a><ul class="dropdown-menu"><li class="first leaf"><a href="venue">Venue</a></li>
<li class="leaf"><a href="accomodation">Accomodation</a></li>
<li class="leaf"><a href="map" title="">Map</a></li>
<li class="leaf"><a href="contact">Contact</a></li>
<li class="last leaf"><a href="code-of-conduct">Code of conduct</a></li>
</ul></li>
<li class="leaf active-trail active"><a href="schedule" title="" class="active-trail active">Schedule</a></li>
<li class="expanded dropdown"><a href="sponsors" title="" data-target="#" class="dropdown-toggle" data-toggle="dropdown">Sponsors <span class="caret"></span></a><ul class="dropdown-menu"><li class="first last leaf"><a href="sponsor-packages">Sponsor packages</a></li>
</ul></li>
<li class="leaf"><a href="attendees">Attendees</a></li>
<li class="leaf"><a href="volunteers" title="">Volunteers</a></li>
<li class="last leaf"><a href="badges">Badges</a></li>
</ul> </nav>
</div>
</div>
</header>
<div class="landscape">
<div class="hills"></div>
<div class="clouds scrollorama">
<div id="cloud1" class="cloud cloud1 cloud-left"></div>
<div class="cloud cloud2 cloud-left"></div>
<div class="cloud cloud3 cloud-left"></div>
<div class="cloud cloud4 cloud-left"></div>
<div class="cloud cloud5 cloud-right"></div>
<div class="cloud cloud6 cloud-right"></div>
<div class="cloud cloud7 cloud-right"></div>
<div class="cloud cloud8 cloud-right"></div>
<div class="cloud cloud9 cloud-right"></div>
<div class="cloud cloud10 cloud-right"></div>
</div>
<div class="boats scrollorama ">
<div id="smallboat" class="boat small"></div>
<div id="bigboat" class="boat big"></div>
</div>
<div class="logo">
<div class="logo-inner">
<img alt="Drupalaton logo" src="profiles/drupalaton_profile/themes/drupalaton_theme/logo.png">
</div>
</div>
<div class="lake"></div>
<div class="logo-link">
<div class="logo-link-inner">
<a itemprop="name" title="Drupalaton" href="/"></a>
</div>
</div>
</div><!-- /.landscape-->
<div id="main-wrapper"><div id="main" class="clearfix">
<div id="content" class="column"><div class="section container_12">
<a id="main-content"></a>
<h1 class="title" id="page-title">Schedule</h1> <div class="tabs"></div> <div class="region region-content">
<div class="panel-flexible panels-flexible-new clearfix" >
<div class="panel-flexible-inside panels-flexible-new-inside">
<div class="panels-flexible-region panels-flexible-region-new-center panels-flexible-region-first panels-flexible-region-last">
<div class="inside panels-flexible-region-inside panels-flexible-region-new-center-inside panels-flexible-region-inside-first panels-flexible-region-inside-last">
<div class="panel-pane pane-node" >
<div class="pane-content">
<article id="node-61" class="node node-page clearfix" about="/node/61" typeof="sioc:Item foaf:Document">
<header>
<span property="dc:title" content="" class="rdf-meta element-hidden"></span> </header>
<div class="field field-name-body field-type-text-with-summary field-label-hidden"><div class="field-items"><div class="field-item even" property="content:encoded"><p dir="ltr" id="top">Enjoy our programme! Please observe <a href="code-of-conduct">our code of conduct</a> throughout the whole event.</p>
<p dir="ltr"><strong>Thursday</strong></p>
<table class="program">
<thead>
<tr>
<th width="144px"> </th>
<th width="300px">Brainsum</th>
<th width="300px">Drupalaton</th>
<th>Sprint room</th>
</tr>
</thead>
<tbody>
<tr>
<td>10:00 - 10:30</td>
<td>Opening words</td>
<td> </td>
<td><a href="sprint">Sprint</a></td>
</tr>
<tr>
<td>10:30 - 12:00</td>
<td><a href="#speaker-166">Pieter Frenssen: Working with REST APIs</a></td>
<td><a href="#speaker-206">Floris Van Geel: Spatial Drupal</a></td>
<td><a href="sprint">Sprint</a></td>
</tr>
<tr>
<td>12:00 - 13:30</td>
<td colspan="2">Lunch (90 minutes)</td>
<td><a href="sprint">Sprint</a></td>
</tr>
<tr>
<td>13:30 - 15:00</td>
<td rowspan="3"><a href="#speaker-171">Ruben Teijeiro: Headless Drupal 8 Hands-on Workshop</a></td>
<td><a href="#speaker-151">Tamás Hajas: Adventures with Twig</a></td>
<td><a href="sprint">Sprint</a></td>
</tr>
<tr>
<td>15:00 - 15:45</td>
<td><a href="#speaker-216">Tamer Zoubi: History of Drupal (aka from Drop 1.0 to Drupal 8.0)</a></td>
<td><a href="sprint">Sprint</a></td>
</tr>
<tr>
<td>15:45 - 16:30</td>
<td><a href="#speaker-191">Lucian Hangea: Build and ship Drupal websites with Docker</a></td>
<td><a href="sprint">Sprint</a> (room until 20:00)</td>
</tr>
</tbody>
</table>
<h3><strong>Friday</strong></h3>
<table class="program">
<thead>
<tr>
<th width="144px"> </th>
<th width="300px">Brainsum</th>
<th width="300px">Drupalaton</th>
<th>Sprint room</th>
</tr>
</thead>
<tbody>
<tr>
<td>8:00 - 9:00</td>
<td colspan="3"><a href="morning-run" target="_blank">Good morning runners!</a></td>
</tr>
<tr>
<td>10:30 - 12:00</td>
<td><a href="#speaker-106">Théodore Biadala: Progressive web apps</a></td>
<td><a href="#speaker-221">Péter Pónya, Tamás Szanyi, Rubén Teijeiro: Drupal 8 Media</a></td>
<td><a href="sprint">Sprint</a></td>
</tr>
<tr>
<td>12:00 - 13:30</td>
<td colspan="2">Lunch (90 min)</td>
<td><a href="sprint">Sprint</a></td>
</tr>
<tr>
<td>13:30 - 15:00</td>
<td rowspan="2"><a href="#speaker-111">Sebastian Siemssen: Decoupling Drupal with GraphQL & Relay</a></td>
<td><a href="#speaker-201">Bojan Zivanovic: Creating online stores with Commerce 2.x on Drupal 8</a></td>
<td><a href="sprint">Sprint</a></td>
</tr>
<tr>
<td>15:00 - 16:30</td>
<td><a href="#speaker-211">Fabian Bircher: Configuration Management: theory and practice</a></td>
<td><a href="sprint">Sprint (room until 20:00)</a></td>
</tr>
<tr>
<td>18:45 - 21:00</td>
<td colspan="3"><a href="cruise-party">CRUISE PARTY!</a></td>
</tr>
</tbody>
</table>
<h3><strong>Saturday</strong></h3>
<table class="program">
<thead>
<tr>
<th width="144px"> </th>
<th width="300px">Brainsum</th>
<th width="300px">Drupalaton</th>
<th>Sprint room</th>
</tr>
</thead>
<tbody>
<tr>
<td>8:00 - 9:00</td>
<td colspan="3"><a href="morning-run" target="_blank">Good morning runners!</a></td>
</tr>
<tr>
<td>11:00 - 12:00</td>
<td><a href="#speaker-196">Károly Négyesi: Migrate, past, present and future</a></td>
<td><a href="#speaker-146">Roman Paska: People management</a></td>
<td><a href="sprint">Sprint</a></td>
</tr>
<tr>
<td>12:00 - 12:10</td>
<td colspan="3">Group photo!</td>
</tr>
<tr>
<td>12:10 - 13:30</td>
<td colspan="2">Lunch (80 min)</td>
<td><a href="sprint">Sprint</a></td>
</tr>
<tr>
<td>13:30 - 15:00</td>
<td rowspan="2"><a href="#speaker-181">Christian López Espínola: Drupal 8 Multilingual Hands-on Site Building</a></td>
<td><a href="#speaker-141">Bart Feenstra: Defensive Programming</a></td>
<td><a href="sprint">Sprint</a></td>
</tr>
<tr>
<td>15:00 - 16:30</td>
<td><a href="#speaker-156">Czövek András: Caching in Drupal 8</a></td>
<td><a href="sprint">Sprint (room until 20:00)</a></td>
</tr>
<tr>
<td>19:00</td>
<td colspan="3">SURPRISE PARTY!</td>
</tr>
</tbody>
</table>
<h3><strong>Sunday</strong></h3>
<table class="program">
<thead>
<tr>
<th width="144px"> </th>
<th width="300px">Brainsum</th>
<th width="300px">Drupalaton</th>
<th>Sprint room</th>
</tr>
</thead>
<tbody>
<tr>
<td>10:00 - 20:00</td>
<td>No workshops</td>
<td>No workshops</td>
<td><a href="sprint">Sprint</a></td>
</tr>
</tbody>
</table>
<p>Sprinters may continue working after 20:00 on all days in the hotel's atrium.</p>
</div></div></div> <footer>
</footer>
</article>
</div>
</div>
<div class="panel-separator"></div><div class="panel-pane pane-views-panes pane-sessions-panel-pane-1" >
<h2 class="pane-title">
Sessions </h2>
<div class="pane-content">
<div class="view view-sessions view-id-sessions view-display-id-panel_pane_1 view-dom-id-02f13038a3d2a22cbb42dc812d94cc57">
<div class="view-content">
<div class="item-list"> <ul> <li class="views-row views-row-1 views-row-odd views-row-first"><div about="/node/166" typeof="sioc:Item foaf:Document" class="ds-2col-stacked-fluid node node-session view-mode-schedule clearfix">
<div class="group-header">
<div class="field field-name-node-link-to-schedule field-type-ds field-label-hidden"><div class="field-items"><div class="field-item even"><div id="speaker-166"></div></div></div></div><div class="field field-name-title field-type-ds field-label-hidden"><div class="field-items"><div class="field-item even" property="dc:title"><h3>Working with REST APIs</h3></div></div></div><div class="group-track-info field-group-div"><span class="field field-name-field-session-track-topic field-type-list-text field-label-hidden" ><span ><span class="odd first last" >Development</span></span></span><span class="field field-name-field-session-skill field-type-list-text field-label-hidden" >, <span ><span class="odd first last" >Beginner</span></span></span><span class="field field-name-field-session-length field-type-list-text field-label-hidden" > (<span ><span class="odd first last" >90 minutes</span></span></span>)</div> </div>
<div class="group-left col-xs-12 col-sm-3 col-md-3 col-lg-3">
<div class="field field-name-field-session-speaker-image field-type-image field-label-hidden"><div class="field-items"><div class="field-item even"><img typeof="foaf:Image" class="img-responsive" src="sites/default/files/styles/attendees/public/pfrenssen_1_0bfac.jpg?itok=fsNc6ofJ" width="230" height="230" alt="" /></div></div></div> </div>
<div class="group-right col-xs-12 col-sm-9 col-md-9 col-lg-9">
<div class="group-speaker-name field-group-div speaker-name"><span class="field field-name-field-session-firstname field-type-text field-label-hidden" >by <span ><span class="odd first last" >Pieter</span></span></span><span class="field field-name-field-session-lastname field-type-text field-label-hidden" > <span ><span class="odd first last" >Frenssen</span></span></span></div><div class="field field-name-field-session-summary-full field-type-text-long field-label-hidden"><div class="field-items"><div class="field-item even"><p><strong>Topics:</strong></p>
<ul>
<li>What is REST?</li>
<li>Why use REST?</li>
<li>Using a REST API through the browser</li>
<li>REST clients</li>
<li>Using curl to do requests from the console</li>
<li>Consuming a REST service with Guzzle in Drupal</li>
<li>Mapping REST data on entities</li>
<li>Exposing data using the RESTful Web Services Module</li>
<li>The REST UI contributed module</li>
<li>Best practices for designing a REST service</li>
<li>Returning HTTP responses</li>
<li>JSON or XML?</li>
<li>The HAL module</li>
<li>HTTP Basic Authentication</li>
<li>Create a REST endpoint with Views</li>
<li>Create a REST endpoint programmatically</li>
</ul>
<p dir="ltr"><strong>Recommended to have:</strong></p>
<ul>
<li dir="ltr">
<p dir="ltr">A working Drupal 8, latest version ─ not mandatory</p>
</li>
</ul>
<p dir="ltr"><strong>Required knowledge:</strong></p>
<ul>
<li dir="ltr">
<p dir="ltr">Basic skills with setting up a webserver and configuring a database</p>
</li>
<li dir="ltr">
<p dir="ltr">some experience with PHP</p>
</li>
<li dir="ltr">Drupal 8</li>
</ul>
<p> </p>
</div></div></div> </div>
<div class="group-footer">
</div>
</div>
</li>
<li class="views-row views-row-2 views-row-even"><div about="/node/206" typeof="sioc:Item foaf:Document" class="ds-2col-stacked-fluid node node-session view-mode-schedule clearfix">
<div class="group-header">
<div class="field field-name-node-link-to-schedule field-type-ds field-label-hidden"><div class="field-items"><div class="field-item even"><div id="speaker-206"></div></div></div></div><div class="field field-name-title field-type-ds field-label-hidden"><div class="field-items"><div class="field-item even" property="dc:title"><h3>Spatial Drupal</h3></div></div></div><div class="group-track-info field-group-div"><span class="field field-name-field-session-track-topic field-type-list-text field-label-hidden" ><span ><span class="odd first last" >Business</span></span></span><span class="field field-name-field-session-skill field-type-list-text field-label-hidden" >, <span ><span class="odd first last" >Intermediate</span></span></span><span class="field field-name-field-session-length field-type-list-text field-label-hidden" > (<span ><span class="odd first last" >90 minutes</span></span></span>)</div> </div>
<div class="group-left col-xs-12 col-sm-3 col-md-3 col-lg-3">
<div class="field field-name-field-session-speaker-image field-type-image field-label-hidden"><div class="field-items"><div class="field-item even"><img typeof="foaf:Image" class="img-responsive" src="sites/default/files/styles/attendees/public/0036489167c.jpg?itok=RJt2NjIc" width="230" height="230" alt="" /></div></div></div><div class="field field-name-field-profile-job-title field-type-text field-label-hidden"><div class="field-items"><div class="field-item even">Drupal Entrepeneur</div></div></div><div class="field field-name-field-profile-organization field-type-text field-label-hidden"><div class="field-items"><div class="field-item even">040Lab</div></div></div> </div>
<div class="group-right col-xs-12 col-sm-9 col-md-9 col-lg-9">
<div class="group-speaker-name field-group-div speaker-name"><span class="field field-name-field-session-firstname field-type-text field-label-hidden" >by <span ><span class="odd first last" >Floris</span></span></span><span class="field field-name-field-session-lastname field-type-text field-label-hidden" > <span ><span class="odd first last" >van Geel</span></span></span></div><div class="field field-name-field-session-summary-full field-type-text-long field-label-hidden"><div class="field-items"><div class="field-item even"><p>Mapping is a very powerful yet neglected aspect of Drupal site building. In most applications we see plotted flags on a map to the nearest restaurant or beer place. The contributed landscape of Drupal modules offers a broad variety of tools, with a few patches we are able to produce rich data applications.</p>
<p>For the past two years we've been collaborating with the open source GIS and Building information community. Utilising the potential of Open Source and Open Standards.</p>
<p>Where Geography meets infrastructural works, city planning and individual building architecture to utilise Drupal as a collaboration platform. Building Information Model, this project emerged from a research paper committed to the DDSS conference 2014 Organised by the Technical University of Eindhoven. It contributes to the development of <a href="https://en.wikipedia.org/wiki/Industry_Foundation_Classes" rel="nofollow">IFC</a> based web applications in practice and demonstrates a way of linking machine to human readable data, thus making the data accessible to people without the knowledge of Computer Aided Design (CAD) software.</p>
<p>The workshop will be about cartaro, the updated repository can be found at: <a href="https://open.040lab.com/workshop/geoworkshop">https://open.040lab.com/workshop/geoworkshop</a><br />
Slides can be found at <a href="https://drupalaton2016.040lab.com/">https://drupalaton2016.040lab.com/</a></p>
<p>This will not be a showcase session, it will focus on the site building and architecture. Democratising complex information structures and next generation Drupal Systems.</p>
</div></div></div> </div>
<div class="group-footer">
</div>
</div>
</li>
<li class="views-row views-row-3 views-row-odd"><div about="/node/171" typeof="sioc:Item foaf:Document" class="ds-2col-stacked-fluid node node-session view-mode-schedule clearfix">
<div class="group-header">
<div class="field field-name-node-link-to-schedule field-type-ds field-label-hidden"><div class="field-items"><div class="field-item even"><div id="speaker-171"></div></div></div></div><div class="field field-name-title field-type-ds field-label-hidden"><div class="field-items"><div class="field-item even" property="dc:title"><h3>Headless Drupal 8 Hands-on Workshop</h3></div></div></div><div class="group-track-info field-group-div"><span class="field field-name-field-session-track-topic field-type-list-text field-label-hidden" ><span ><span class="odd first last" >Sitebuilding</span></span></span><span class="field field-name-field-session-skill field-type-list-text field-label-hidden" >, <span ><span class="odd first last" >Intermediate</span></span></span><span class="field field-name-field-session-length field-type-list-text field-label-hidden" > (<span ><span class="odd first last" >180 minutes</span></span></span>)</div> </div>
<div class="group-left col-xs-12 col-sm-3 col-md-3 col-lg-3">
<div class="field field-name-field-session-speaker-image field-type-image field-label-hidden"><div class="field-items"><div class="field-item even"><img typeof="foaf:Image" class="img-responsive" src="sites/default/files/styles/attendees/public/profile_0983d.png?itok=qJdTzyuR" width="230" height="230" alt="" /></div></div></div><div class="field field-name-field-profile-job-title field-type-text field-label-hidden"><div class="field-items"><div class="field-item even">Drupal Hero</div></div></div><div class="field field-name-field-profile-organization field-type-text field-label-hidden"><div class="field-items"><div class="field-item even">Tieto</div></div></div> </div>
<div class="group-right col-xs-12 col-sm-9 col-md-9 col-lg-9">
<div class="group-speaker-name field-group-div speaker-name"><span class="field field-name-field-session-firstname field-type-text field-label-hidden" >by <span ><span class="odd first last" >Ruben</span></span></span><span class="field field-name-field-session-lastname field-type-text field-label-hidden" > <span ><span class="odd first last" >Teijeiro</span></span></span></div><div class="field field-name-field-session-summary-full field-type-text-long field-label-hidden"><div class="field-items"><div class="field-item even"><p>"The front-end moves faster than Drupal, whether Drupal likes it or not" This reference from "The state of the Front-end" session at DrupalCon Amsterdam explains that we need different ways to retrieve content from a Drupal site for an easy integration with new front-end frameworks and other 3rd-party applications. This allows non-experienced front-end developers to start theming Drupal using the tools they are used to, providing at the same time multiple integrations with other platforms through APIs. Currently there is a debate about how to achieve this and what direction Drupal will take in the future. In this workshop there will be explained different approaches to solve common problems and what possible solutions are provided by Drupal and its contributed modules. You can join this discussion, share your thoughts and experiences with others, and help Drupal to go on the right track.</p>
<p dir="ltr"><strong>Recommended to have:</strong></p>
<ul>
<li dir="ltr">A working Drupal 8, latest version ─ not mandatory, anyone is welcomed :)</li>
</ul>
</div></div></div> </div>
<div class="group-footer">
</div>
</div>
</li>
<li class="views-row views-row-4 views-row-even"><div about="/node/151" typeof="sioc:Item foaf:Document" class="ds-2col-stacked-fluid node node-session view-mode-schedule clearfix">
<div class="group-header">
<div class="field field-name-node-link-to-schedule field-type-ds field-label-hidden"><div class="field-items"><div class="field-item even"><div id="speaker-151"></div></div></div></div><div class="field field-name-title field-type-ds field-label-hidden"><div class="field-items"><div class="field-item even" property="dc:title"><h3>Adventures with Twig</h3></div></div></div><div class="group-track-info field-group-div"><span class="field field-name-field-session-track-topic field-type-list-text field-label-hidden" ><span ><span class="odd first last" >Frontend / UX</span></span></span><span class="field field-name-field-session-skill field-type-list-text field-label-hidden" >, <span ><span class="odd first last" >Intermediate</span></span></span><span class="field field-name-field-session-length field-type-list-text field-label-hidden" > (<span ><span class="odd first last" >90 minutes</span></span></span>)</div> </div>
<div class="group-left col-xs-12 col-sm-3 col-md-3 col-lg-3">
<div class="field field-name-field-session-speaker-image field-type-image field-label-hidden"><div class="field-items"><div class="field-item even"><img typeof="foaf:Image" class="img-responsive" src="sites/default/files/styles/attendees/public/tamas-hajas-840_0_030e9.jpg?itok=SditWtcW" width="230" height="230" alt="" /></div></div></div><div class="field field-name-field-profile-job-title field-type-text field-label-hidden"><div class="field-items"><div class="field-item even">Drupal / Web PM & Frontend Dev</div></div></div><div class="field field-name-field-profile-organization field-type-text field-label-hidden"><div class="field-items"><div class="field-item even">Integral Vision Ltd.</div></div></div> </div>
<div class="group-right col-xs-12 col-sm-9 col-md-9 col-lg-9">
<div class="group-speaker-name field-group-div speaker-name"><span class="field field-name-field-session-firstname field-type-text field-label-hidden" >by <span ><span class="odd first last" >Tamás</span></span></span><span class="field field-name-field-session-lastname field-type-text field-label-hidden" > <span ><span class="odd first last" >Hajas</span></span></span></div><div class="field field-name-field-session-summary-full field-type-text-long field-label-hidden"><div class="field-items"><div class="field-item even"><p>So you know the basics of Twig and able modify your Drupal 8 templates to your simple needs. But you still not feel what the "big deal" is with Twig and you are not sure that it worth the switch from PHPTemplate. Thats OK. I'll show you some interesting examples about the possibilities of twig and best practices too. After the session your Drupal 8 theming practice will be more interesting and more effective.</p>
<p><strong>Participants will need to have:</strong></p>
<p>A working Drupal 8 install and a code editor.</p>
<p> </p>
</div></div></div> </div>
<div class="group-footer">
</div>
</div>
</li>
<li class="views-row views-row-5 views-row-odd"><div about="/node/216" typeof="sioc:Item foaf:Document" class="ds-2col-stacked-fluid node node-session view-mode-schedule clearfix">
<div class="group-header">
<div class="field field-name-node-link-to-schedule field-type-ds field-label-hidden"><div class="field-items"><div class="field-item even"><div id="speaker-216"></div></div></div></div><div class="field field-name-title field-type-ds field-label-hidden"><div class="field-items"><div class="field-item even" property="dc:title"><h3>History of Drupal (aka from Drop 1.0 to Drupal 8.0)</h3></div></div></div><div class="group-track-info field-group-div"><span class="field field-name-field-session-track-topic field-type-list-text field-label-hidden" ><span ><span class="odd first last" >Sitebuilding</span></span></span><span class="field field-name-field-session-skill field-type-list-text field-label-hidden" >, <span ><span class="odd first last" >Beginner</span></span></span><span class="field field-name-field-session-length field-type-list-text field-label-hidden" > (<span ><span class="odd first last" >45 minutes</span></span></span>)</div> </div>
<div class="group-left col-xs-12 col-sm-3 col-md-3 col-lg-3">
<div class="field field-name-field-session-speaker-image field-type-image field-label-hidden"><div class="field-items"><div class="field-item even"><img typeof="foaf:Image" class="img-responsive" src="sites/default/files/styles/attendees/public/13533232_10153431137517242_4325173146566050924_n_14675.jpg?itok=-BJpK8oe" width="230" height="230" alt="" /></div></div></div><div class="field field-name-field-profile-job-title field-type-text field-label-hidden"><div class="field-items"><div class="field-item even">CTO</div></div></div><div class="field field-name-field-profile-organization field-type-text field-label-hidden"><div class="field-items"><div class="field-item even">WEBSOLUTIONS | HR</div></div></div> </div>
<div class="group-right col-xs-12 col-sm-9 col-md-9 col-lg-9">
<div class="group-speaker-name field-group-div speaker-name"><span class="field field-name-field-session-firstname field-type-text field-label-hidden" >by <span ><span class="odd first last" >Tamer</span></span></span><span class="field field-name-field-session-lastname field-type-text field-label-hidden" > <span ><span class="odd first last" >Zoubi</span></span></span></div><div class="field field-name-field-session-summary-full field-type-text-long field-label-hidden"><div class="field-items"><div class="field-item even"><p>Recently Drupal celebrated its 15th birthday and while everybody is busy with learning Drupal 8 we would like to stop and take a look at where our beloved system emerged from 15 years ago. Most of the people don’t know about history of Drupal and how it evolved from message board platform (Drop 1.0) to a fully scaled enterprise level CMS (Drupal 8.0). Did you know some of key features of Drupal like modules, nodes, watchdog and multilingual support where available since Drupal 2.0? We will look back and see: Web before Drupal How Drupal survived massive changes in web industry? Why and how was Drupal created? Tour through Drupal 1.0 to 8.0 and lookback of how key Drupal features we use today (eg: concept of modules, nodes and multilingual support) evolved over time Drupal in future Through a look in history, after this session you will have better understanding why some of Drupal architecture is done in the way it is. This is improved version of my presentation held at DrupalCamp London: <a href="http://websolutions.hr/drupal-history">http://websolutions.hr/drupal-history</a></p>
</div></div></div> </div>
<div class="group-footer">
</div>
</div>
</li>
<li class="views-row views-row-6 views-row-even"><div about="/node/191" typeof="sioc:Item foaf:Document" class="ds-2col-stacked-fluid node node-session view-mode-schedule clearfix">
<div class="group-header">
<div class="field field-name-node-link-to-schedule field-type-ds field-label-hidden"><div class="field-items"><div class="field-item even"><div id="speaker-191"></div></div></div></div><div class="field field-name-title field-type-ds field-label-hidden"><div class="field-items"><div class="field-item even" property="dc:title"><h3>Build and ship Drupal websites with Docker</h3></div></div></div><div class="group-track-info field-group-div"><span class="field field-name-field-session-track-topic field-type-list-text field-label-hidden" ><span ><span class="odd first last" >Development</span></span></span><span class="field field-name-field-session-skill field-type-list-text field-label-hidden" >, <span ><span class="odd first last" >Beginner</span></span></span><span class="field field-name-field-session-length field-type-list-text field-label-hidden" > (<span ><span class="odd first last" >45 minutes</span></span></span>)</div> </div>
<div class="group-left col-xs-12 col-sm-3 col-md-3 col-lg-3">
<div class="field field-name-field-session-speaker-image field-type-image field-label-hidden"><div class="field-items"><div class="field-item even"><img typeof="foaf:Image" class="img-responsive" src="sites/default/files/styles/attendees/public/profile_pic_hangea_lucian1007.jpg?itok=y7Z8EHBV" width="230" height="230" alt="" /></div></div></div><div class="field field-name-field-profile-job-title field-type-text field-label-hidden"><div class="field-items"><div class="field-item even">Web developer</div></div></div><div class="field field-name-field-profile-organization field-type-text field-label-hidden"><div class="field-items"><div class="field-item even">Pitech+Plus</div></div></div> </div>
<div class="group-right col-xs-12 col-sm-9 col-md-9 col-lg-9">
<div class="group-speaker-name field-group-div speaker-name"><span class="field field-name-field-session-firstname field-type-text field-label-hidden" >by <span ><span class="odd first last" >Lucian</span></span></span><span class="field field-name-field-session-lastname field-type-text field-label-hidden" > <span ><span class="odd first last" >Hangea</span></span></span></div><div class="field field-name-field-session-summary-full field-type-text-long field-label-hidden"><div class="field-items"><div class="field-item even"><p>In this session we are going to explore together what are the advantages of using containers - Docker in particular - in the process of building and deploying applications. We will see how Docker helps in solving some of the classical issues encountered when developing and deploying software applications and we will compare Docker with virtual machines. The second part of the presentation is focused towards the more practical side of things and we will see together how to build a complete environment for Drupal with Docker and Docker compose.</p>
</div></div></div> </div>
<div class="group-footer">
</div>
</div>
</li>
<li class="views-row views-row-7 views-row-odd"><div about="/node/106" typeof="sioc:Item foaf:Document" class="ds-2col-stacked-fluid node node-session view-mode-schedule clearfix">
<div class="group-header">
<div class="field field-name-node-link-to-schedule field-type-ds field-label-hidden"><div class="field-items"><div class="field-item even"><div id="speaker-106"></div></div></div></div><div class="field field-name-title field-type-ds field-label-hidden"><div class="field-items"><div class="field-item even" property="dc:title"><h3>Progressive web apps</h3></div></div></div><div class="group-track-info field-group-div"><span class="field field-name-field-session-track-topic field-type-list-text field-label-hidden" ><span ><span class="odd first last" >Frontend / UX</span></span></span><span class="field field-name-field-session-skill field-type-list-text field-label-hidden" >, <span ><span class="odd first last" >Advanced</span></span></span><span class="field field-name-field-session-length field-type-list-text field-label-hidden" > (<span ><span class="odd first last" >90 minutes</span></span></span>)</div> </div>
<div class="group-left col-xs-12 col-sm-3 col-md-3 col-lg-3">
<div class="field field-name-field-session-speaker-image field-type-image field-label-hidden"><div class="field-items"><div class="field-item even"><img typeof="foaf:Image" class="img-responsive" src="sites/default/files/styles/attendees/public/nod_019c6.jpg?itok=RzizV8An" width="230" height="230" alt="" /></div></div></div><div class="field field-name-field-profile-job-title field-type-text field-label-hidden"><div class="field-items"><div class="field-item even">Senior Performance Engineer</div></div></div><div class="field field-name-field-profile-organization field-type-text field-label-hidden"><div class="field-items"><div class="field-item even">Tag1</div></div></div> </div>
<div class="group-right col-xs-12 col-sm-9 col-md-9 col-lg-9">
<div class="group-speaker-name field-group-div speaker-name"><span class="field field-name-field-session-firstname field-type-text field-label-hidden" >by <span ><span class="odd first last" >Théodore</span></span></span><span class="field field-name-field-session-lastname field-type-text field-label-hidden" > <span ><span class="odd first last" >Biadala</span></span></span><span class="field field-name-field-session-speaker-nick field-type-text field-label-hidden" > (<span ><span class="odd first last" >nod_</span></span></span>)</div><div class="field field-name-field-session-summary-full field-type-text-long field-label-hidden"><div class="field-items"><div class="field-item even"><p>This session will explain what progressive web apps are and why they are the best thing to happen in browsers since Ajax. By the end of the session the audience will know how progressive web apps work, what is a serviceworker and how it can be used to provide offline capabilities to a website as well as overall performance improvement. The session will introduce the JavaScript prerequisites for using serviceworkers such as: Promises, fetch, Response/Request and Cache objects. Mobile functionalities PWA enables such as: background sync and push notification will be explained. Ideally if there is time to prepare, background sync on top of RELAXed Web Services module will be demoed.</p>
<p dir="ltr"><strong>Participants will need to have:</strong></p>
<ul>
<li dir="ltr">
<p dir="ltr">Latest version of Google Chrome</p>
</li>
<li dir="ltr">
<p dir="ltr">A local webserver running on <a href="http://localhost/">http://localhost</a> on the port 80 (no custom local domains)</p>
</li>
<li dir="ltr">
<p dir="ltr">A local clone of this repository: <a href="https://github.com/theodoreb/pwa-workshop">https://github.com/theodoreb/pwa-workshop</a></p>
</li>
<li dir="ltr">
<p dir="ltr"><a href="http://localhost/">http://localhost</a> pointing to this local clone of the repo</p>
</li>
</ul>
<p dir="ltr"><strong>Recommended to have:</strong></p>
<ul>
<li dir="ltr">
<p dir="ltr">A working Drupal 7, latest version</p>
</li>
<li dir="ltr">
<p dir="ltr">PWA module installed: <a href="https://www.drupal.org/project/pwa">https://www.drupal.org/project/pwa</a></p>
</li>
</ul>
<p dir="ltr">Further preparations will be done together: <a href="https://github.com/theodoreb/pwa-workshop#requirements">https://github.com/theodoreb/pwa-workshop#requirements</a></p>
</div></div></div> </div>
<div class="group-footer">
</div>
</div>
</li>
<li class="views-row views-row-8 views-row-even"><div about="/node/221" typeof="sioc:Item foaf:Document" class="ds-2col-stacked-fluid node node-session view-mode-schedule clearfix">
<div class="group-header">
<div class="field field-name-node-link-to-schedule field-type-ds field-label-hidden"><div class="field-items"><div class="field-item even"><div id="speaker-221"></div></div></div></div><div class="field field-name-title field-type-ds field-label-hidden"><div class="field-items"><div class="field-item even" property="dc:title"><h3>Drupal 8 Media</h3></div></div></div><div class="group-track-info field-group-div"><span class="field field-name-field-session-track-topic field-type-list-text field-label-hidden" ><span ><span class="odd first last" >Sitebuilding</span></span></span><span class="field field-name-field-session-skill field-type-list-text field-label-hidden" >, <span ><span class="odd first last" >Intermediate</span></span></span><span class="field field-name-field-session-length field-type-list-text field-label-hidden" > (<span ><span class="odd first last" >90 minutes</span></span></span>)</div> </div>
<div class="group-left col-xs-12 col-sm-3 col-md-3 col-lg-3">
<div class="field field-name-field-session-speaker-image field-type-image field-label-hidden"><div class="field-items"><div class="field-item even"><img typeof="foaf:Image" class="img-responsive" src="sites/default/files/styles/attendees/public/pedro-skype-profile_08fa9.jpg?itok=4TcHp1Sj" width="230" height="230" alt="" /></div></div></div><div class="field field-name-field-profile-job-title field-type-text field-label-hidden"><div class="field-items"><div class="field-item even">CTO</div></div></div><div class="field field-name-field-profile-organization field-type-text field-label-hidden"><div class="field-items"><div class="field-item even">Brainsum</div></div></div> </div>
<div class="group-right col-xs-12 col-sm-9 col-md-9 col-lg-9">
<div class="group-speaker-name field-group-div speaker-name"><span class="field field-name-field-session-firstname field-type-text field-label-hidden" >by <span ><span class="odd first last" >Peter</span></span></span><span class="field field-name-field-session-lastname field-type-text field-label-hidden" > <span ><span class="odd first last" >Ponya</span></span></span><span class="field field-name-field-session-co-presenters field-type-text field-label-hidden" >, <span ><span class="odd first last" >Tamás Szanyi, Rubén Teijeiro Suárez</span></span></span></div><div class="field field-name-field-session-summary-full field-type-text-long field-label-hidden"><div class="field-items"><div class="field-item even"><p>We had the chance to setup a Drupal 8 Media demo site for one of our clients and we were surprised how advanced and usable the Drupal 8 Media management already is. This practical session tries to show the concept and the already existing and usable powerful features of the media module and related modules. We will build a site together with features like central media asset management, "unbreakable" dynamic layouts and easy to setup responsive images cropped accordingly. A lot of interesting things are happening around Media. We will try to give you an overview of the current status and let you know which tools are already ready to use.</p>
<p>
Please prepare to the workshop with a fresh clean Drupal 8.1.8 standard profile installation and also please clone this repository prior to the workshop to avoid issues with the internet connection: <a href="https://github.com/brainsum/d8media" target="_blank">https://github.com/brainsum/d8media</a></p>
</div></div></div> </div>
<div class="group-footer">
</div>
</div>
</li>
<li class="views-row views-row-9 views-row-odd"><div about="/node/111" typeof="sioc:Item foaf:Document" class="ds-2col-stacked-fluid node node-session view-mode-schedule clearfix">
<div class="group-header">
<div class="field field-name-node-link-to-schedule field-type-ds field-label-hidden"><div class="field-items"><div class="field-item even"><div id="speaker-111"></div></div></div></div><div class="field field-name-title field-type-ds field-label-hidden"><div class="field-items"><div class="field-item even" property="dc:title"><h3>Decoupling Drupal with GraphQL & Relay</h3></div></div></div><div class="group-track-info field-group-div"><span class="field field-name-field-session-track-topic field-type-list-text field-label-hidden" ><span ><span class="odd first last" >Development</span></span></span><span class="field field-name-field-session-skill field-type-list-text field-label-hidden" >, <span ><span class="odd first last" >Beginner</span></span></span><span class="field field-name-field-session-length field-type-list-text field-label-hidden" > (<span ><span class="odd first last" >180 minutes</span></span></span>)</div> </div>
<div class="group-left col-xs-12 col-sm-3 col-md-3 col-lg-3">
<div class="field field-name-field-session-speaker-image field-type-image field-label-hidden"><div class="field-items"><div class="field-item even"><img typeof="foaf:Image" class="img-responsive" src="sites/default/files/styles/attendees/public/fubhy_092d5.jpg?itok=Ebf9zmn-" width="230" height="230" alt="" /></div></div></div><div class="field field-name-field-profile-job-title field-type-text field-label-hidden"><div class="field-items"><div class="field-item even">Lead Backend</div></div></div><div class="field field-name-field-profile-organization field-type-text field-label-hidden"><div class="field-items"><div class="field-item even">Amazee Labs</div></div></div> </div>
<div class="group-right col-xs-12 col-sm-9 col-md-9 col-lg-9">
<div class="group-speaker-name field-group-div speaker-name"><span class="field field-name-field-session-firstname field-type-text field-label-hidden" >by <span ><span class="odd first last" >Sebastian</span></span></span><span class="field field-name-field-session-lastname field-type-text field-label-hidden" > <span ><span class="odd first last" >Siemssen</span></span></span><span class="field field-name-field-session-speaker-nick field-type-text field-label-hidden" > (<span ><span class="odd first last" >fubhy</span></span></span>)</div><div class="field field-name-field-session-summary-full field-type-text-long field-label-hidden"><div class="field-items"><div class="field-item even"><p>During the work shop we will be building a rich JavaScript web application using Drupal as a fully decoupled data hub. We will be using technologies like React, Relay and GraphQL starting from a powerful React application scaffold ready to be deployed on top of your Drupal backend. In order to attend and participate in the workshop you will have to prepare your local development environments, install the pre-requisites (to be announced) and ensure that the project scaffold is functioning properly. We will provide you with the React application scaffold and a fully prepared Drupal 8 environment running inside amazee.io to make the set up process as smooth as possible. Here's a list of fancy buzz-words that we will be covering during the workshop: - Server Side Rendering (Univeral / Isomorphic Rendering) - Service Workers - React - Relay - GraphQL - Webpack - Babel - Code chunking - ES6/7 - CSS Modules - Unit Testing</p>
<p dir="ltr"><strong>Participants will need to have:</strong></p>
<ul>
<li dir="ltr">
<p dir="ltr">Docker and Docker-Compose installed <em>(or a Drupal Docker environment based on AmazeeIO and a standalone Node Docker environment alternatively in case of problems with installing Node and npm natively)</em></p>
</li>
</ul>
<p dir="ltr"><strong>Recommended to have:</strong></p>
<ul>
<li dir="ltr">
<p dir="ltr">Drupal Docker AmazeeIO environment (see instructions: <a href="https://docs.amazee.io/">https://docs.amazee.io</a>)</p>
</li>
<li dir="ltr">
<p dir="ltr">Node and Node Package Manager installed natively on the host environment</p>
</li>
</ul>
<p>Best way to do that is to use NVM: <a href="https://github.com/creationix/nvm">https://github.com/creationix/nvm</a>. The install script / command can be found in the README of the repository).</p>
</div></div></div> </div>
<div class="group-footer">
</div>
</div>
</li>
<li class="views-row views-row-10 views-row-even"><div about="/node/201" typeof="sioc:Item foaf:Document" class="ds-2col-stacked-fluid node node-session view-mode-schedule clearfix">
<div class="group-header">
<div class="field field-name-node-link-to-schedule field-type-ds field-label-hidden"><div class="field-items"><div class="field-item even"><div id="speaker-201"></div></div></div></div><div class="field field-name-title field-type-ds field-label-hidden"><div class="field-items"><div class="field-item even" property="dc:title"><h3>Creating online stores with Commerce 2.x on Drupal 8</h3></div></div></div><div class="group-track-info field-group-div"><span class="field field-name-field-session-track-topic field-type-list-text field-label-hidden" ><span ><span class="odd first last" >Sitebuilding</span></span></span><span class="field field-name-field-session-skill field-type-list-text field-label-hidden" >, <span ><span class="odd first last" >Intermediate</span></span></span><span class="field field-name-field-session-length field-type-list-text field-label-hidden" > (<span ><span class="odd first last" >90 minutes</span></span></span>)</div> </div>
<div class="group-left col-xs-12 col-sm-3 col-md-3 col-lg-3">
<div class="field field-name-field-session-speaker-image field-type-image field-label-hidden"><div class="field-items"><div class="field-item even"><img typeof="foaf:Image" class="img-responsive" src="sites/default/files/styles/attendees/public/3581473_300x3003157.jpg?itok=9o0R5EMb" width="230" height="230" alt="" /></div></div></div><div class="field field-name-field-profile-job-title field-type-text field-label-hidden"><div class="field-items"><div class="field-item even">Lead Developer</div></div></div><div class="field field-name-field-profile-organization field-type-text field-label-hidden"><div class="field-items"><div class="field-item even">Commerce Guys</div></div></div> </div>
<div class="group-right col-xs-12 col-sm-9 col-md-9 col-lg-9">
<div class="group-speaker-name field-group-div speaker-name"><span class="field field-name-field-session-firstname field-type-text field-label-hidden" >by <span ><span class="odd first last" >Bojan</span></span></span><span class="field field-name-field-session-lastname field-type-text field-label-hidden" > <span ><span class="odd first last" >Zivanovic</span></span></span></div><div class="field field-name-field-session-summary-full field-type-text-long field-label-hidden"><div class="field-items"><div class="field-item even"><p>Commerce 2.x development began with a code sprint in July 2014. We first released a handful of standalone PHP libraries (e.g. for currency formatting and addressing) and then created modules that make use of them, such as the new Address module. Finally, we rebuilt Drupal Commerce itself from the ground up, taking full advantage of Drupal 8's new features -- and even improving them in turn! With a beta on the horizon, come learn how we've engineered Commerce 2.x to make it simpler to solve some of the hardest parts of eCommerce on Drupal 8. You do not need prior experience with Drupal Commerce to attend, but some familiarity with Drupal 8 and common challenges in eCommerce will help you get the most out of the material. We will include both instruction and demonstration of topics including: - Installing Drupal Commerce and its dependencies - Creating and configuring one or multiple stores - Full support for currency and address formatting - Adding product pages and their variants - Customizing Add to Cart forms and Line Items - Configuring the redesigned Checkout form - Managing Orders and their workflows - We'll close with an overview of the roadmap and status of the contributed module ecosystem. We'll make sure everyone knows how to start contributing to Commerce 2.x - there's always more to do! ; )</p>
<p><strong>Participants will need to have:</strong></p>
<p>A working Drupal 8 with Commerce: <a href="http://docs.drupalcommerce.org/v2/install" target="_blank">docs.drupalcommerce.org/v2/install</a></p>
<p>At least a working LAMP stack.</p>
</div></div></div> </div>
<div class="group-footer">
</div>
</div>
</li>
<li class="views-row views-row-11 views-row-odd"><div about="/node/211" typeof="sioc:Item foaf:Document" class="ds-2col-stacked-fluid node node-session view-mode-schedule clearfix">
<div class="group-header">
<div class="field field-name-node-link-to-schedule field-type-ds field-label-hidden"><div class="field-items"><div class="field-item even"><div id="speaker-211"></div></div></div></div><div class="field field-name-title field-type-ds field-label-hidden"><div class="field-items"><div class="field-item even" property="dc:title"><h3>Configuration Management: theory and practice</h3></div></div></div><div class="group-track-info field-group-div"><span class="field field-name-field-session-track-topic field-type-list-text field-label-hidden" ><span ><span class="odd first last" >Sitebuilding</span></span></span><span class="field field-name-field-session-skill field-type-list-text field-label-hidden" >, <span ><span class="odd first last" >Intermediate</span></span></span><span class="field field-name-field-session-length field-type-list-text field-label-hidden" > (<span ><span class="odd first last" >90 minutes</span></span></span>)</div> </div>
<div class="group-left col-xs-12 col-sm-3 col-md-3 col-lg-3">
<div class="field field-name-field-session-speaker-image field-type-image field-label-hidden"><div class="field-items"><div class="field-item even"><img typeof="foaf:Image" class="img-responsive" src="sites/default/files/styles/attendees/public/fabian_portrait239d.png?itok=0w67hUlb" width="230" height="230" alt="" /></div></div></div><div class="field field-name-field-profile-job-title field-type-text field-label-hidden"><div class="field-items"><div class="field-item even">Developer</div></div></div><div class="field field-name-field-profile-organization field-type-text field-label-hidden"><div class="field-items"><div class="field-item even">Nuvole</div></div></div> </div>
<div class="group-right col-xs-12 col-sm-9 col-md-9 col-lg-9">
<div class="group-speaker-name field-group-div speaker-name"><span class="field field-name-field-session-firstname field-type-text field-label-hidden" >by <span ><span class="odd first last" >Fabian</span></span></span><span class="field field-name-field-session-lastname field-type-text field-label-hidden" > <span ><span class="odd first last" >Bircher</span></span></span></div><div class="field field-name-field-session-summary-full field-type-text-long field-label-hidden"><div class="field-items"><div class="field-item even"><p>Developers often want to use Configuration Management outside its intended use case. New workflows and practices have to be established. We'll see some examples from real projects, and outline a list of possible future improvements that can make Configuration Management better suitable for the developers' needs. Track: between site building and development Skill level: Intermediate to advanced (second half)</p>
<p dir="ltr"><strong>Participants will need to have:</strong></p>
<ul>
<li dir="ltr">
<p dir="ltr">A working Drupal 8 with drush</p>
</li>
</ul>
<p dir="ltr"><strong>Recommended to have:</strong></p>
<ul>
<li dir="ltr">
<p dir="ltr">Git installed</p>
</li>
<li dir="ltr">
<p dir="ltr">Composer installed</p>
</li>
</ul>
<p dir="ltr"><strong>Required knowledge:</strong></p>
<ul>
<li dir="ltr">
<p dir="ltr">How to install Drupal 8</p>
</li>
<li dir="ltr">
<p dir="ltr">How to install modules</p>
</li>
</ul>
</div></div></div> </div>
<div class="group-footer">
</div>
</div>
</li>
<li class="views-row views-row-12 views-row-even"><div about="/node/196" typeof="sioc:Item foaf:Document" class="ds-2col-stacked-fluid node node-session view-mode-schedule clearfix">
<div class="group-header">
<div class="field field-name-node-link-to-schedule field-type-ds field-label-hidden"><div class="field-items"><div class="field-item even"><div id="speaker-196"></div></div></div></div><div class="field field-name-title field-type-ds field-label-hidden"><div class="field-items"><div class="field-item even" property="dc:title"><h3>Migrate, past, present and future</h3></div></div></div><div class="group-track-info field-group-div"><span class="field field-name-field-session-track-topic field-type-list-text field-label-hidden" ><span ><span class="odd first last" >Development</span></span></span><span class="field field-name-field-session-skill field-type-list-text field-label-hidden" >, <span ><span class="odd first last" >Advanced</span></span></span><span class="field field-name-field-session-length field-type-list-text field-label-hidden" > (<span ><span class="odd first last" >45 minutes</span></span></span>)</div> </div>
<div class="group-left col-xs-12 col-sm-3 col-md-3 col-lg-3">
<div class="field field-name-field-session-speaker-image field-type-image field-label-hidden"><div class="field-items"><div class="field-item even"><img typeof="foaf:Image" class="img-responsive" src="sites/default/files/styles/attendees/public/chxcaa8b26e.png?itok=ZwHegNgi" width="230" height="230" alt="" /></div></div></div><div class="field field-name-field-profile-job-title field-type-text field-label-hidden"><div class="field-items"><div class="field-item even">Founder, Tech Lead</div></div></div><div class="field field-name-field-profile-organization field-type-text field-label-hidden"><div class="field-items"><div class="field-item even">Migrate Rocks</div></div></div> </div>
<div class="group-right col-xs-12 col-sm-9 col-md-9 col-lg-9">
<div class="group-speaker-name field-group-div speaker-name"><span class="field field-name-field-session-firstname field-type-text field-label-hidden" >by <span ><span class="odd first last" >Karoly</span></span></span><span class="field field-name-field-session-lastname field-type-text field-label-hidden" > <span ><span class="odd first last" >Negyesi</span></span></span></div><div class="field field-name-field-session-summary-full field-type-text-long field-label-hidden"><div class="field-items"><div class="field-item even"><p>After architecting the Drupal 8 migrate API, doing a few full site migrations and starting a migrate consultancy I will talk about the journey, the high points (many), some of the obstacles we faced and fixed and some that are still waiting to be solved. This will be the first time I will be showing how I imagine the migrate source configuration in the future.</p>
</div></div></div> </div>
<div class="group-footer">
</div>
</div>
</li>
<li class="views-row views-row-13 views-row-odd"><div about="/node/146" typeof="sioc:Item foaf:Document" class="ds-2col-stacked-fluid node node-session view-mode-schedule clearfix">
<div class="group-header">
<div class="field field-name-node-link-to-schedule field-type-ds field-label-hidden"><div class="field-items"><div class="field-item even"><div id="speaker-146"></div></div></div></div><div class="field field-name-title field-type-ds field-label-hidden"><div class="field-items"><div class="field-item even" property="dc:title"><h3>People management</h3></div></div></div><div class="group-track-info field-group-div"><span class="field field-name-field-session-track-topic field-type-list-text field-label-hidden" ><span ><span class="odd first last" >Business</span></span></span><span class="field field-name-field-session-skill field-type-list-text field-label-hidden" >, <span ><span class="odd first last" >Intermediate</span></span></span><span class="field field-name-field-session-length field-type-list-text field-label-hidden" > (<span ><span class="odd first last" >90 minutes</span></span></span>)</div> </div>
<div class="group-left col-xs-12 col-sm-3 col-md-3 col-lg-3">
<div class="field field-name-field-session-speaker-image field-type-image field-label-hidden"><div class="field-items"><div class="field-item even"><img typeof="foaf:Image" class="img-responsive" src="sites/default/files/styles/attendees/public/roman_paska112e.jpg?itok=V2vYIWL9" width="230" height="230" alt="" /></div></div></div><div class="field field-name-field-profile-job-title field-type-text field-label-hidden"><div class="field-items"><div class="field-item even">Head of Web Development</div></div></div><div class="field field-name-field-profile-organization field-type-text field-label-hidden"><div class="field-items"><div class="field-item even">Lemberg Solutions</div></div></div> </div>
<div class="group-right col-xs-12 col-sm-9 col-md-9 col-lg-9">
<div class="group-speaker-name field-group-div speaker-name"><span class="field field-name-field-session-firstname field-type-text field-label-hidden" >by <span ><span class="odd first last" >Roman</span></span></span><span class="field field-name-field-session-lastname field-type-text field-label-hidden" > <span ><span class="odd first last" >Paska</span></span></span></div><div class="field field-name-field-session-summary-full field-type-text-long field-label-hidden"><div class="field-items"><div class="field-item even"><p>People are the most valuable asset any company could possibly have. This session provides couple tips on how to build a strong team, healthy, competitive and productive atmosphere and make everyone a little bit happier. Disclaimer: it's not about project management, it's not about development processes, tools or software. It's even not about Drupal itself. It's all about people.</p>
</div></div></div> </div>
<div class="group-footer">
</div>
</div>
</li>
<li class="views-row views-row-14 views-row-even"><div about="/node/181" typeof="sioc:Item foaf:Document" class="ds-2col-stacked-fluid node node-session view-mode-schedule clearfix">
<div class="group-header">
<div class="field field-name-node-link-to-schedule field-type-ds field-label-hidden"><div class="field-items"><div class="field-item even"><div id="speaker-181"></div></div></div></div><div class="field field-name-title field-type-ds field-label-hidden"><div class="field-items"><div class="field-item even" property="dc:title"><h3>Drupal 8 Multilingual Hands-on Site Building</h3></div></div></div><div class="group-track-info field-group-div"><span class="field field-name-field-session-track-topic field-type-list-text field-label-hidden" ><span ><span class="odd first last" >Sitebuilding</span></span></span><span class="field field-name-field-session-skill field-type-list-text field-label-hidden" >, <span ><span class="odd first last" >Beginner</span></span></span><span class="field field-name-field-session-length field-type-list-text field-label-hidden" > (<span ><span class="odd first last" >180 minutes</span></span></span>)</div> </div>
<div class="group-left col-xs-12 col-sm-3 col-md-3 col-lg-3">
<div class="field field-name-field-session-speaker-image field-type-image field-label-hidden"><div class="field-items"><div class="field-item even"><img typeof="foaf:Image" class="img-responsive" src="sites/default/files/styles/attendees/public/entertainment_0f6f1.png?itok=Y_IRTuj8" width="230" height="230" alt="" /></div></div></div><div class="field field-name-field-profile-job-title field-type-text field-label-hidden"><div class="field-items"><div class="field-item even">Senior Software Developer</div></div></div><div class="field field-name-field-profile-organization field-type-text field-label-hidden"><div class="field-items"><div class="field-item even">Lingotek</div></div></div> </div>
<div class="group-right col-xs-12 col-sm-9 col-md-9 col-lg-9">
<div class="group-speaker-name field-group-div speaker-name"><span class="field field-name-field-session-firstname field-type-text field-label-hidden" >by <span ><span class="odd first last" >Christian</span></span></span><span class="field field-name-field-session-lastname field-type-text field-label-hidden" > <span ><span class="odd first last" >López Espínola</span></span></span><span class="field field-name-field-session-speaker-nick field-type-text field-label-hidden" > (<span ><span class="odd first last" >Penyaskito</span></span></span>)</div><div class="field field-name-field-session-summary-full field-type-text-long field-label-hidden"><div class="field-items"><div class="field-item even"><p>Link to <a href="http://bit.ly/d8mi-lab-slides">presentation</a></p>
<p>Link to <a href="http://bit.ly/d8mi-lab-handout" target="_blank">handouts</a> </p>
<p>Drupal 8 has an amazing set of features and functionality in core! The improvements are so vast, you can set up a complete multilingual enabled site in a fraction of the time of a D7 site! It is AMAZING! Come take Drupal 8 and Drupal 8 multilingual for a spin with a group of D8 multilingual enthusiasts! We will be using a helpful do-it-yourself guide created and presented at DrupalCon Amsterdam, DrupalCon Bogota, and many regional camps. Or just dive right in with us and see what happens! Here's an overview of the workshop structure:</p>
<ul>
<li>A quick walk through of the Multilingual Demo project</li>
<li>Everyone installs and configures a Drupal 8 multilingual site!</li>
<li>This is a really open forum where you can ask questions along the way. Contributors to the D8 Multilingual improvements will be attending to lend a hand. :)</li>
<li>Here are some awesome things we will be setting up: Languages - Content Types - Taxonomy - Menus - Blocks - Views!!!</li>
</ul>
<p dir="ltr"><strong>Participants will need to have:</strong></p>
<ul>
<li dir="ltr">
<p dir="ltr">A working Drupal 8, latest version, fresh install, not customized yet</p>
</li>
</ul>
<p><strong>Preparations:</strong> set up a local Drupal 8 test site on your computer. Make sure it is at least Drupal 8.1.7 (but it can also be a 8.1.x or 8.2.x development version, that would be even better). If you are not able to set this up it would be great if you could let me know upfront, so we can try to work something out.</p>
</div></div></div> </div>
<div class="group-footer">
</div>
</div>
</li>
<li class="views-row views-row-15 views-row-odd"><div about="/node/141" typeof="sioc:Item foaf:Document" class="ds-2col-stacked-fluid node node-session view-mode-schedule clearfix">
<div class="group-header">
<div class="field field-name-node-link-to-schedule field-type-ds field-label-hidden"><div class="field-items"><div class="field-item even"><div id="speaker-141"></div></div></div></div><div class="field field-name-title field-type-ds field-label-hidden"><div class="field-items"><div class="field-item even" property="dc:title"><h3>Defensive Programming</h3></div></div></div><div class="group-track-info field-group-div"><span class="field field-name-field-session-track-topic field-type-list-text field-label-hidden" ><span ><span class="odd first last" >Development</span></span></span><span class="field field-name-field-session-skill field-type-list-text field-label-hidden" >, <span ><span class="odd first last" >Intermediate</span></span></span><span class="field field-name-field-session-length field-type-list-text field-label-hidden" > (<span ><span class="odd first last" >90 minutes</span></span></span>)</div> </div>
<div class="group-left col-xs-12 col-sm-3 col-md-3 col-lg-3">
<div class="field field-name-field-session-speaker-image field-type-image field-label-hidden"><div class="field-items"><div class="field-item even"><img typeof="foaf:Image" class="img-responsive" src="sites/default/files/styles/attendees/public/1376535_4940799698133_1759576724_n_0caeff5a9.jpg?itok=DXudARm3" width="230" height="230" alt="" /></div></div></div><div class="field field-name-field-profile-job-title field-type-text field-label-hidden"><div class="field-items"><div class="field-item even">Engineer</div></div></div><div class="field field-name-field-profile-organization field-type-text field-label-hidden"><div class="field-items"><div class="field-item even">Druid</div></div></div> </div>
<div class="group-right col-xs-12 col-sm-9 col-md-9 col-lg-9">
<div class="group-speaker-name field-group-div speaker-name"><span class="field field-name-field-session-firstname field-type-text field-label-hidden" >by <span ><span class="odd first last" >Bart</span></span></span><span class="field field-name-field-session-lastname field-type-text field-label-hidden" > <span ><span class="odd first last" >Feenstra</span></span></span></div><div class="field field-name-field-session-summary-full field-type-text-long field-label-hidden"><div class="field-items"><div class="field-item even"><p>As software developers, we know our software will fail; someone will use it in a way we did not anticipate, we will forget to properly check input, a process will time out, and we will make typos. For these reasons, and many more, people spend time and efforts on reproducing problems, and finding and fixing root causes. If this hasn’t caused too much of a delay, there may even be time to make sure these problems never show up again. It is inevitable. Or is it? This talk will take you through the concept of defensive programming, with its many helpful tools like exceptions, assertions, typing, and validation. It will elaborate on several programming techniques you can leverage to tell calling code about your problems, and to handle the problems of the code you call yourself. Defensive programming will help you write simpler and more maintainable software, that fails fast, early, and often. When problems do occur, they are reported in greater detail, making them easier to understand, and faster to fix. This limits the time spent fixing bugs, and lowers the chances of ‘random’ or obscure problems, making estimates more reliable.</p>
</div></div></div> </div>
<div class="group-footer">
</div>
</div>
</li>
<li class="views-row views-row-16 views-row-even views-row-last"><div about="/node/156" typeof="sioc:Item foaf:Document" class="ds-2col-stacked-fluid node node-session view-mode-schedule clearfix">
<div class="group-header">
<div class="field field-name-node-link-to-schedule field-type-ds field-label-hidden"><div class="field-items"><div class="field-item even"><div id="speaker-156"></div></div></div></div><div class="field field-name-title field-type-ds field-label-hidden"><div class="field-items"><div class="field-item even" property="dc:title"><h3>Caching in Drupal 8</h3></div></div></div><div class="group-track-info field-group-div"><span class="field field-name-field-session-track-topic field-type-list-text field-label-hidden" ><span ><span class="odd first last" >Development</span></span></span><span class="field field-name-field-session-skill field-type-list-text field-label-hidden" >, <span ><span class="odd first last" >Intermediate</span></span></span><span class="field field-name-field-session-length field-type-list-text field-label-hidden" > (<span ><span class="odd first last" >90 minutes</span></span></span>)</div> </div>
<div class="group-left col-xs-12 col-sm-3 col-md-3 col-lg-3">
<div class="field field-name-field-session-speaker-image field-type-image field-label-hidden"><div class="field-items"><div class="field-item even"><img typeof="foaf:Image" class="img-responsive" src="sites/default/files/styles/attendees/public/czovekandras_nagy_0504f.jpg?itok=7mLYlvjO" width="230" height="230" alt="" /></div></div></div><div class="field field-name-field-profile-job-title field-type-text field-label-hidden"><div class="field-items"><div class="field-item even">drupal developer</div></div></div><div class="field field-name-field-profile-organization field-type-text field-label-hidden"><div class="field-items"><div class="field-item even">Liip</div></div></div> </div>
<div class="group-right col-xs-12 col-sm-9 col-md-9 col-lg-9">
<div class="group-speaker-name field-group-div speaker-name"><span class="field field-name-field-session-firstname field-type-text field-label-hidden" >by <span ><span class="odd first last" >Czövek</span></span></span><span class="field field-name-field-session-lastname field-type-text field-label-hidden" > <span ><span class="odd first last" >András</span></span></span></div><div class="field field-name-field-session-summary-full field-type-text-long field-label-hidden"><div class="field-items"><div class="field-item even"><p>Performance has improved a lot in Drupal 8 due to the new and advanced Cache API. It allows developers to have much better control over the cache. In this workshop we will experiment with cache metatags, page cache and dynamic cache and will have a look at how big pipe works.</p>
<p dir="ltr"><strong>Participants will need to have:</strong></p>
<ul>
<li dir="ltr">
<p dir="ltr">A working Drupal 8, latest version</p>
</li>
</ul>
<p dir="ltr"><strong>Recommended to have:</strong></p>
<ul>
<li dir="ltr">
<p dir="ltr">A database viewer tool (eg. phpmyadmin, mysql workbench, etc.) prepared</p>
</li>
</ul>
<p dir="ltr">Further preparations will be done together: <a href="https://github.com/czigor/mycache#preparations-preferably-done-before-the-workshop">https://github.com/czigor/mycache#preparations-preferably-done-before-the-workshop</a></p>
</div></div></div> </div>
<div class="group-footer">
</div>
</div>
</li>
</ul></div> </div>
</div> </div>
</div>
</div>
</div>
</div>
</div>
</div>
</div></div> <!-- /.section, /#content -->
</div></div> <!-- /#main, /#main-wrapper -->
</div>
<div class="sponsors">
<div class="container_12 panel-pane">
<h2 class="pane-title">Sponsors</h2>
<div class="view view-sponsors view-id-sponsors view-display-id-block_1 view-dom-id-d27a4371e903fdeb5470b04ca1ddadfd">
<div class="view-content">
<div class="sponsor-row">
<h3>Diamond</h3>
<div class="views-row views-row-1 views-row-odd views-row-first views-row-last sor">
<div class="views-field views-field-field-sponsor-logo"> <div class="field-content"><a href="brainsum"><img typeof="foaf:Image" class="img-responsive" src="sites/default/files/brainsum-logo-rgb_2.png" width="334" height="70" alt="" /></a></div> </div> </div>
</div> </div>
</div> <div class="view view-sponsors view-id-sponsors view-display-id-block_2 view-dom-id-b2db5f59f87dc0380e818673dc47502e">
<div class="view-content">
<div class="sponsor-row">
<h3>Gold</h3>
<div class="views-row views-row-1 views-row-odd views-row-first sor">
<div class="views-field views-field-field-sponsor-logo"> <div class="field-content"><a href="amazee-labs"><img typeof="foaf:Image" class="img-responsive" src="sites/default/files/amazee-labs_logo_ohne-claim_transparent_180x90.png" width="180" height="96" alt="" /></a></div> </div> </div>
<div class="views-row views-row-2 views-row-even views-row-last sor">
<div class="views-field views-field-field-sponsor-logo"> <div class="field-content"><a href="pitech%2bplus"><img typeof="foaf:Image" class="img-responsive" src="sites/default/files/pitechpluslogo.png" width="223" height="58" alt="" /></a></div> </div> </div>
</div> </div>
</div> </div>
</div>
<div class="newsletter" id="newsletter">
<div class="container_12">
<!-- Begin MailChimp Signup Form -->
<div id="mc_embed_signup">
<form action="http://drupal.us11.list-manage.com/subscribe/post?u=ff68a3ec2c935522172f99425&id=284ae20c26" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate="">
<label for="mce-EMAIL">
<span class="first">Subscribe to our newsletter. </span>
<span class="last">Receive the latest updates.</span>
</label>
<input type="email" value="" name="EMAIL" class="email" id="mce-EMAIL" placeholder="email address" required>
<div><input type="submit" value="Subscribe" name="subscribe" id="mc-embedded-subscribe" class="button"></div>
</form>
</div>
<!--End mc_embed_signup-->
</div>
</div><!-- /.newsletter -->
<div class="twitter" id="twitter">
<div class="container_12">
<div>
<span class="first">You can also follow us</span>
<span class="second">on Twitter</span>
<span class="third"><a href="https://twitter.com/drupalaton" title="@Drupalaton on twitter">@Drupalaton</a> and #Drupalaton</span>
</div>
</div>
</div><!-- /.twitter -->
<div class="social" id="social">
<div class="container_12">
<p>
Share <span>drupalaton</span> on
<a href="https://twitter.com/intent/tweet?url=http%3A//www.drupalaton.hu&text=Drupal%20conf%20@%20Lake%20Balaton%20Hungary"><img src="profiles/drupalaton_profile/themes/drupalaton_theme/img/share_twitter.svg" alt="on Twitter" /></a> or on
<a href="http://www.facebook.com/sharer.php?u=http://drupalaton.hu&p[images][0]=http://drupalaton.hu/themes/drupalaton/img/drup_facebook.png"><img src="profiles/drupalaton_profile/themes/drupalaton_theme/img/share_facebook.svg" alt="on Facebook" /></a>
</p>
</div>
</div><!-- /.social -->
<div class="acquia-hosting" id="acquia-hosting">
<div class="container_12">
<p>Drupal community hosting powered by <a href="https://www.acquia.com/products-services/acquia-hosting">Acquia Cloud</a></p>
<a href="https://www.acquia.com/products-services/acquia-hosting">
<img id="acquia_logo" src="profiles/drupalaton_profile/themes/drupalaton_theme/img/acquia_logo.png" alt="Acquia Logo">
</a>
</div>
</div><!-- /.acquia-hosting -->
<script src="sites/all/themes/bootstrap/js/bootstrap0ea2.js?obhy8a"></script>
</body>
<!-- Mirrored from 2016.drupalaton.hu/schedule by HTTrack Website Copier/3.x [XR&CO'2014], Sun, 05 Mar 2017 14:56:52 GMT -->
</html>