-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwiki.schedule.xml
2996 lines (2996 loc) · 124 KB
/
wiki.schedule.xml
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
<schedule>
<conference>
<acronym>35C3-wiki</acronym>
<title>35. Chaos Communication Congress - Wiki</title>
<start>2018-12-27</start>
<end>2018-12-30</end>
<days>4</days>
<timeslot_duration>00:15</timeslot_duration>
</conference>
<day date="2018-12-27" index="1" end="2018-12-28T04:00:00+01:00" start="2018-12-27T06:00:00+01:00">
<room name="Assembly:Hardware Hacking Area">
<event id="1108" guid="4dd26602-bf1f-454f-bd0b-e3c51ebd4278">
<logo/>
<date>2018-12-27T19:30:00+01:00</date>
<start>19:30</start>
<duration>2:00</duration>
<room>Assembly:Hardware Hacking Area</room>
<slug/>
<title>Surface mount electronics assembly for terrified beginners</title>
<subtitle>Day 1, session 2</subtitle>
<track>self organized sessions</track>
<type>workshop</type>
<language>de</language>
<abstract/>
<description>Surface mount electronics for terrified beginners. Learn to assemble tiny parts on circuit boards by building a working power supply. Anyone can do it. Yes, even you who never touched anything electronic before. 90-100mins, 20€/kit, avoid caffeine immediately before. Max 21 participants per session, there is a PAPER!!1! signup list in the hardware hacking area.</description>
<persons>
<person id="0">
<url>https://events.ccc.de/congress/2018/wiki/index.php/User:Kliment</url>
<public_name>Kliment</public_name>
</person>
</persons>
<links>
<link>https://events.ccc.de/congress/2018/wiki/index.php/Session:Surface_mount_electronics_assembly_for_terrified_beginners</link>
</links>
</event>
<event id="1110" guid="2f307352-9447-4b63-bb9a-7ef8f38239d7">
<logo/>
<date>2018-12-27T15:00:00+01:00</date>
<start>15:00</start>
<duration>2:00</duration>
<room>Assembly:Hardware Hacking Area</room>
<slug/>
<title>Surface mount electronics assembly for terrified beginners</title>
<subtitle>Day 1, session 1</subtitle>
<track>self organized sessions</track>
<type>workshop</type>
<language>de</language>
<abstract/>
<description>Surface mount electronics for terrified beginners. Learn to assemble tiny parts on circuit boards by building a working power supply. Anyone can do it. Yes, even you who never touched anything electronic before. 90-100mins, 20€/kit, avoid caffeine immediately before. Max 21 participants per session, there is a PAPER!!1! signup list in the hardware hacking area.</description>
<persons>
<person id="0">
<url>https://events.ccc.de/congress/2018/wiki/index.php/User:Kliment</url>
<public_name>Kliment</public_name>
</person>
</persons>
<links>
<link>https://events.ccc.de/congress/2018/wiki/index.php/Session:Surface_mount_electronics_assembly_for_terrified_beginners</link>
</links>
</event>
</room>
<room name="Lecture room 11">
<event id="1010" guid="bae1b248-6635-4d95-ba6c-230eb6de24cd">
<logo/>
<date>2018-12-27T17:00:00+01:00</date>
<start>17:00</start>
<duration>1:30</duration>
<room>Lecture room 11</room>
<slug/>
<title>A/V Angel Meeting</title>
<subtitle>Day 1</subtitle>
<track>self organized sessions</track>
<type>discussion</type>
<language>de</language>
<abstract/>
<description>Daily Meetup for A/V Angels</description>
<persons>
<person id="0">
<url>https://events.ccc.de/congress/2018/wiki/index.php/User:Jwacalex</url>
<public_name>Jwacalex</public_name>
</person>
</persons>
<links>
<link>https://c3voc.de/</link>
<link>https://events.ccc.de/congress/2018/wiki/index.php/Session:A/V_Angel_Meeting</link>
</links>
</event>
<event id="1014" guid="bd96b262-3cab-4afd-a628-8b0631372fbb">
<logo/>
<date>2018-12-27T22:00:00+01:00</date>
<start>22:00</start>
<duration>1:59</duration>
<room>Lecture room 11</room>
<slug/>
<title>Advanced Bondage Workshop</title>
<subtitle/>
<track>self organized sessions</track>
<type>workshop</type>
<language>de</language>
<abstract/>
<description>Advanced Bondage Workshop</description>
<persons>
<person id="0">
<url>https://events.ccc.de/congress/2018/wiki/index.php/User:Raven</url>
<public_name>Raven</public_name>
</person>
</persons>
<links>
<link>https://events.ccc.de/congress/2018/wiki/index.php/Session:Advanced_Bondage_Workshop</link>
</links>
</event>
<event id="1040" guid="3cbe1051-13f3-4ff7-9343-e0dc1a0e81d3">
<logo/>
<date>2018-12-27T18:00:00+01:00</date>
<start>18:00</start>
<duration>1:00</duration>
<room>Lecture room 11</room>
<slug/>
<title>Document forensics: How to still dox spyware suppliers.</title>
<subtitle/>
<track>self organized sessions</track>
<type>talk</type>
<language/>
<abstract/>
<description>Doxxing spyware suppliers by using FOIA and leaked material together to dox suppliers.</description>
<persons>
<person id="0">
<url>https://events.ccc.de/congress/2018/wiki/index.php/User:DrWhax</url>
<public_name>DrWhax</public_name>
</person>
</persons>
<links>
<link>https://events.ccc.de/congress/2018/wiki/index.php/Session:Document_forensics:_How_to_still_dox_spyware_suppliers.</link>
</links>
</event>
<event id="1124" guid="cd2e4d22-e3e5-4284-be49-68f5d1a64fa2">
<logo/>
<date>2018-12-27T15:10:00+01:00</date>
<start>15:10</start>
<duration>1:10</duration>
<room>Lecture room 11</room>
<slug/>
<title>Translation</title>
<subtitle>Meeting Day 1a</subtitle>
<track>self organized sessions</track>
<type>meeting</type>
<language>en</language>
<abstract/>
<description>The Translation teams meets twice a day during the breaks to distribute shifts and self-organise.</description>
<persons/>
<links>
<link>https://events.ccc.de/congress/2018/wiki/index.php/Session:Translation</link>
</links>
</event>
<event id="1125" guid="cd2e4d22-e3e5-4284-be49-68f5d1a64fa3">
<logo/>
<date>2018-12-27T19:45:00+01:00</date>
<start>19:45</start>
<duration>1:30</duration>
<room>Lecture room 11</room>
<slug/>
<title>Translation</title>
<subtitle>Meeting Day 1b</subtitle>
<track>self organized sessions</track>
<type>meeting</type>
<language>en</language>
<abstract/>
<description>The Translation teams meets twice a day during the breaks to distribute shifts and self-organise.</description>
<persons/>
<links>
<link>https://events.ccc.de/congress/2018/wiki/index.php/Session:Translation</link>
</links>
</event>
</room>
<room name="Assembly:Curry Club Augsburg">
<event id="1080" guid="2ee4399d-d40c-4ba7-80a8-84de8ce6b219">
<logo/>
<date>2018-12-27T15:45:00+01:00</date>
<start>15:45</start>
<duration>0:15</duration>
<room>Assembly:Curry Club Augsburg</room>
<slug/>
<title>Memorizing pi for fun (not for profit)</title>
<subtitle>Day 1</subtitle>
<track>self organized sessions</track>
<type>hands-on</type>
<language>de</language>
<abstract/>
<description>Using a simple non-technique, we will memorize digits of pi. It's fun. No prerequisites needed. In English and German. Bring your kids! (all sessions are independent from each other)</description>
<persons>
<person id="0">
<url>https://events.ccc.de/congress/2018/wiki/index.php/User:Iblech</url>
<public_name>Iblech</public_name>
</person>
</persons>
<links>
<link>https://events.ccc.de/congress/2018/wiki/index.php/Session:Memorizing_pi_for_fun_(not_for_profit)</link>
</links>
</event>
</room>
<room name="Chaos West Stage"/>
<room name="Assembly:Foodhackingbase">
<event id="1035" guid="158d6811-f509-4c7f-829f-dcc830aa9a3f">
<logo/>
<date>2018-12-27T20:00:00+01:00</date>
<start>20:00</start>
<duration>3:00</duration>
<room>Assembly:Foodhackingbase</room>
<slug/>
<title>Cidre Making</title>
<subtitle/>
<track>self organized sessions</track>
<type>hands-on</type>
<language>cs</language>
<abstract/>
<description>Making of cidre/cider.</description>
<persons>
<person id="0">
<url>https://events.ccc.de/congress/2018/wiki/index.php/User:Algoldor</url>
<public_name>Algoldor</public_name>
</person>
</persons>
<links>
<link>https://foodhackingbase.org/wiki/Cidre_making_35c3</link>
<link>https://events.ccc.de/congress/2018/wiki/index.php/Session:Cidre_Making</link>
</links>
</event>
<event id="1067" guid="bc5ceda7-17f2-4e3d-9ebd-ef67bd1fa8ff">
<logo/>
<date>2018-12-27T14:00:00+01:00</date>
<start>14:00</start>
<duration>2:00</duration>
<room>Assembly:Foodhackingbase</room>
<slug/>
<title>Introduction to Tempeh Making</title>
<subtitle/>
<track>self organized sessions</track>
<type>hands-on</type>
<language>cs</language>
<abstract/>
<description/>
<persons>
<person id="0">
<url>https://events.ccc.de/congress/2018/wiki/index.php/User:Algoldor</url>
<public_name>Algoldor</public_name>
</person>
</persons>
<links>
<link>https://foodhackingbase.org/wiki/Tempeh_making_35c3</link>
<link>https://events.ccc.de/congress/2018/wiki/index.php/Session:Introduction_to_Tempeh_Making</link>
</links>
</event>
<event id="1130" guid="f6638acc-dc14-4575-a647-b18bf3fa238a">
<logo/>
<date>2018-12-27T22:30:00+01:00</date>
<start>22:30</start>
<duration>1:30</duration>
<room>Assembly:Foodhackingbase</room>
<slug/>
<title>WhiskyTasting</title>
<subtitle>Whisky tasting session 2</subtitle>
<track>self organized sessions</track>
<type>meeting</type>
<language>cs</language>
<abstract/>
<description>Whisky tasting at the FoodHackingBase. Taste some whiskys and Scottish or other snacks. Donations at your will, or bring your own bottle!</description>
<persons>
<person id="0">
<url>https://events.ccc.de/congress/2018/wiki/index.php/User:Bigmac</url>
<public_name>Bigmac</public_name>
</person>
</persons>
<links>
<link>https://foodhackingbase.org/wiki/Whisky_tasting_35c3</link>
<link>https://events.ccc.de/congress/2018/wiki/index.php/Session:WhiskyTasting</link>
</links>
</event>
<event id="1131" guid="c11cfe59-01ad-40d7-b541-b0229dd8fda6">
<logo/>
<date>2018-12-27T21:00:00+01:00</date>
<start>21:00</start>
<duration>1:30</duration>
<room>Assembly:Foodhackingbase</room>
<slug/>
<title>WhiskyTasting</title>
<subtitle>Whisky tasting session 1</subtitle>
<track>self organized sessions</track>
<type>meeting</type>
<language>cs</language>
<abstract/>
<description>Whisky tasting at the FoodHackingBase. Taste some whiskys and Scottish or other snacks. Donations at your will, or bring your own bottle!</description>
<persons>
<person id="0">
<url>https://events.ccc.de/congress/2018/wiki/index.php/User:Bigmac</url>
<public_name>Bigmac</public_name>
</person>
</persons>
<links>
<link>https://foodhackingbase.org/wiki/Whisky_tasting_35c3</link>
<link>https://events.ccc.de/congress/2018/wiki/index.php/Session:WhiskyTasting</link>
</links>
</event>
</room>
<room name="Vintage Computing Cluster"/>
<room name="Seminar room 14-15">
<event id="1019" guid="4c0ab811-5ea5-4d86-a6c4-cee1bc6bed97">
<logo/>
<date>2018-12-27T16:00:00+01:00</date>
<start>16:00</start>
<duration>1:00</duration>
<room>Seminar room 14-15</room>
<slug/>
<title>Audio Recording Setups</title>
<subtitle/>
<track>self organized sessions</track>
<type>workshop</type>
<language/>
<abstract/>
<description>The idea of this workshop is to share experiences with audio recording hardware and software.</description>
<persons>
<person id="0">
<url>https://events.ccc.de/congress/2018/wiki/index.php/User:KarlaByrinth</url>
<public_name>KarlaByrinth</public_name>
</person>
</persons>
<links>
<link>https://events.ccc.de/congress/2018/wiki/index.php/Session:Audio_Recording_Setups</link>
</links>
</event>
<event id="1050" guid="84945cde-3908-4f12-ac48-0ada208bf17e">
<logo/>
<date>2018-12-27T13:10:00+01:00</date>
<start>13:10</start>
<duration>0:45</duration>
<room>Seminar room 14-15</room>
<slug/>
<title>Foundation workshop: Vim for beginners</title>
<subtitle/>
<track>self organized sessions</track>
<type>workshop</type>
<language>en</language>
<abstract/>
<description>Vim is one of the two editors for adults. A distinguishing feature is that it has a perverse user-unfriendly charm. Learn how to use Vim in this workshop.</description>
<persons>
<person id="0">
<url>https://events.ccc.de/congress/2018/wiki/index.php/User:Iblech</url>
<public_name>Iblech</public_name>
</person>
</persons>
<links>
<link>https://events.ccc.de/congress/2018/wiki/index.php/Session:Foundation_workshop:_Vim_for_beginners</link>
</links>
</event>
<event id="1073" guid="83dc17af-d621-4012-b039-d7904836e3d3">
<logo/>
<date>2018-12-27T20:00:00+01:00</date>
<start>20:00</start>
<duration>1:00</duration>
<room>Seminar room 14-15</room>
<slug/>
<title>Koordinierungstreffen Junghackertag</title>
<subtitle/>
<track>self organized sessions</track>
<type>meeting</type>
<language>de</language>
<abstract/>
<description>Abstimmungs- und Vorbereitungstreffen für den Junghackertag</description>
<persons>
<person id="0">
<url>https://events.ccc.de/congress/2018/wiki/index.php/User:Waldvogel</url>
<public_name>Waldvogel</public_name>
</person>
</persons>
<links>
<link>https://events.ccc.de/congress/2018/wiki/index.php/Projects:Junghackertag</link>
<link>https://events.ccc.de/congress/2018/wiki/index.php/Session:Koordinierungstreffen_Junghackertag</link>
</links>
</event>
<event id="1074" guid="e1ea79e7-a487-4c99-86b2-c2533b22fe69">
<logo/>
<date>2018-12-27T14:00:00+01:00</date>
<start>14:00</start>
<duration>1:00</duration>
<room>Seminar room 14-15</room>
<slug/>
<title>LehrerInnenstammtisch</title>
<subtitle/>
<track>self organized sessions</track>
<type>meeting</type>
<language/>
<abstract/>
<description/>
<persons/>
<links>
<link>https://events.ccc.de/congress/2018/wiki/index.php/Session:LehrerInnenstammtisch</link>
</links>
</event>
<event id="1088" guid="54822ed6-ef46-48fc-a2d0-7be196266485">
<logo/>
<date>2018-12-27T18:00:00+01:00</date>
<start>18:00</start>
<duration>1:00</duration>
<room>Seminar room 14-15</room>
<slug/>
<title>Origami</title>
<subtitle>paperless? how boring! A quick introduction to beginners</subtitle>
<track>self organized sessions</track>
<type>hands-on</type>
<language>de</language>
<abstract/>
<description>Learn to fold easy Origami objects and decorate your environment with paper</description>
<persons/>
<links>
<link>https://events.ccc.de/congress/2018/wiki/index.php/Session:Origami</link>
</links>
</event>
<event id="1097" guid="d25d9fdc-944a-4d44-b706-387181bc5ee8">
<logo/>
<date>2018-12-27T15:00:00+01:00</date>
<start>15:00</start>
<duration>2:00</duration>
<room>Seminar room 14-15</room>
<slug/>
<title>Relationship Anarchy</title>
<subtitle/>
<track>self organized sessions</track>
<type>meeting</type>
<language>en</language>
<abstract/>
<description>A nice & cozy relationship anarchy (https://en.wikipedia.org/wiki/Relationship_anarchy) gathering.</description>
<persons/>
<links>
<link>https://events.ccc.de/congress/2018/wiki/index.php/Session:Relationship_Anarchy</link>
</links>
</event>
<event id="1133" guid="fd8cdcd7-506d-4441-b59f-7c83263bb873">
<logo/>
<date>2018-12-27T19:00:00+01:00</date>
<start>19:00</start>
<duration>1:00</duration>
<room>Seminar room 14-15</room>
<slug/>
<title>WieHelfenGegenCyberStalking</title>
<subtitle/>
<track>self organized sessions</track>
<type/>
<language>de</language>
<abstract/>
<description/>
<persons/>
<links>
<link>http://haecksen.org</link>
<link>https://events.ccc.de/congress/2018/wiki/index.php/Session:WieHelfenGegenCyberStalking</link>
</links>
</event>
</room>
<room name="Assembly:Chaos West">
<event id="1027" guid="0d96532c-08c5-46d0-bffe-d639bde55d41">
<logo/>
<date>2018-12-27T11:00:00+01:00</date>
<start>11:00</start>
<duration>6:00</duration>
<room>Assembly:Chaos West</room>
<slug/>
<title>Build your own Yub!Key</title>
<subtitle/>
<track>self organized sessions</track>
<type>workshop</type>
<language>de</language>
<abstract/>
<description>Build your own yubikey-like personal USB-authentication-stick.</description>
<persons/>
<links>
<link>https://github.com/c3re/byoy</link>
<link>https://events.ccc.de/congress/2018/wiki/index.php/Session:Build_your_own_Yub!Key</link>
</links>
</event>
</room>
<room name="OIO lecture arena"/>
<room name="Assembly:CRYPTO Currency Assembly / Embassy">
<event id="1031" guid="da67120c-8f47-4bc7-b343-2090e4d9b055">
<logo/>
<date>2018-12-27T10:00:00+01:00</date>
<start>10:00</start>
<duration>2:00</duration>
<room>Assembly:CRYPTO Currency Assembly / Embassy</room>
<slug/>
<title>CRYPTO Currency Assembly Sessions</title>
<subtitle>Arrival</subtitle>
<track>self organized sessions</track>
<type>talk</type>
<language>en</language>
<abstract/>
<description>Talks and come togethers related to the CRYPTO Currency Assembly</description>
<persons/>
<links>
<link>https://events.ccc.de/congress/2018/wiki/index.php/Session:CRYPTO_Currency_Assembly_Sessions</link>
</links>
</event>
</room>
<room name="Lecture room M1">
<event id="1029" guid="f4828a36-375f-4136-bfe2-2e3cf1cedf00">
<logo/>
<date>2018-12-27T15:30:00+01:00</date>
<start>15:30</start>
<duration>0:45</duration>
<room>Lecture room M1</room>
<slug/>
<title>CCCChoir</title>
<subtitle>All creatures welcome, especially beginners</subtitle>
<track>self organized sessions</track>
<type>hands-on</type>
<language>de</language>
<abstract/>
<description>Gemeinsames Chorsingen. All creatures welcome.</description>
<persons/>
<links>
<link>https://events.ccc.de/congress/2018/wiki/index.php/Session:CCCChoir</link>
</links>
</event>
<event id="1102" guid="b0853196-c34c-416f-8e7d-aaad43a8c7db">
<logo/>
<date>2018-12-27T20:00:00+01:00</date>
<start>20:00</start>
<duration>3:00</duration>
<room>Lecture room M1</room>
<slug/>
<title>Stage Manager Angel Introduction</title>
<subtitle/>
<track>self organized sessions</track>
<type>workshop</type>
<language>de</language>
<abstract/>
<description/>
<persons>
<person id="0">
<url>https://events.ccc.de/congress/2018/wiki/index.php/User:Ijon</url>
<public_name>Ijon</public_name>
</person>
</persons>
<links>
<link>https://events.ccc.de/congress/2018/wiki/index.php/Static:Stage_manager</link>
<link>https://events.ccc.de/congress/2018/wiki/index.php/Session:Stage_Manager_Angel_Introduction</link>
</links>
</event>
<event id="1132" guid="5baa7172-13bb-488c-b9e5-443337e7566b">
<logo/>
<date>2018-12-27T15:00:00+01:00</date>
<start>15:00</start>
<duration>1:30</duration>
<room>Lecture room M1</room>
<slug/>
<title>Why Does War Happen?</title>
<subtitle/>
<track>self organized sessions</track>
<type>talk</type>
<language>en</language>
<abstract/>
<description>An examination of the Thucydides Trap</description>
<persons>
<person id="0">
<url>https://events.ccc.de/congress/2018/wiki/index.php/User:Aestetix</url>
<public_name>Aestetix</public_name>
</person>
</persons>
<links>
<link>https://events.ccc.de/congress/2018/wiki/index.php/Session:Why_Does_War_Happen%3F</link>
</links>
</event>
</room>
<room name="Lecture room M3">
<event id="1000" guid="beb31f29-a0cb-440f-afd6-25a2272b7a2f">
<logo/>
<date>2018-12-27T16:00:00+01:00</date>
<start>16:00</start>
<duration>3:00</duration>
<room>Lecture room M3</room>
<slug/>
<title>"How To Survive 35C3" CryptoParty</title>
<subtitle/>
<track>self organized sessions</track>
<type>hands-on</type>
<language>en</language>
<abstract/>
<description>Privacy is the space in which ideas are developed, to retreat into whenever you want. This space is not only physical but digital as well. Governments and companies don't want to respect that so we become active ourselves. The goal of this hands-on session is to pass on knowledge about protecting yourself in the digital space. This can include encrypted communication, preventing being tracked while browsing the web and general security advice for computers and smartphones.</description>
<persons>
<person id="0">
<url>https://events.ccc.de/congress/2018/wiki/index.php/User:Dawning-sun</url>
<public_name>Dawning-sun</public_name>
</person>
</persons>
<links>
<link>https://cryptoparty.in/35c3</link>
<link>https://events.ccc.de/congress/2018/wiki/index.php/Session:%22How_To_Survive_35C3%22_CryptoParty</link>
</links>
</event>
<event id="1055" guid="21d93c08-e863-4a3a-b94b-cf6a8b77dca1">
<logo/>
<date>2018-12-27T15:15:00+01:00</date>
<start>15:15</start>
<duration>0:45</duration>
<room>Lecture room M3</room>
<slug/>
<title>General Angel Meeting</title>
<subtitle>Day1</subtitle>
<track>self organized sessions</track>
<type>meeting</type>
<language>en</language>
<abstract/>
<description>Angel Meeting</description>
<persons/>
<links>
<link>https://engelsystem.de/35c3/</link>
<link>https://events.ccc.de/congress/2018/wiki/index.php/Session:General_Angel_Meeting</link>
</links>
</event>
<event id="1095" guid="2231a9ec-2bd9-49c3-85f3-bc179b46126e">
<logo/>
<date>2018-12-27T19:00:00+01:00</date>
<start>19:00</start>
<duration>2:00</duration>
<room>Lecture room M3</room>
<slug/>
<title>QueerFeministGeeks - MeetUp</title>
<subtitle/>
<track>self organized sessions</track>
<type>meeting</type>
<language>en</language>
<abstract/>
<description>the queerfeminist geeks plenary meetup</description>
<persons/>
<links>
<link>https://lists.riseup.net/www/subscribe/queerfeministgeeks</link>
<link>https://events.ccc.de/congress/2018/wiki/index.php/Session:QueerFeministGeeks_-_MeetUp</link>
</links>
</event>
</room>
<room name="Lecture room M2">
<event id="1020" guid="bd012aa6-8ea8-4df6-a115-6d911a61ab03">
<logo/>
<date>2018-12-27T14:00:00+01:00</date>
<start>14:00</start>
<duration>1:00</duration>
<room>Lecture room M2</room>
<slug/>
<title>Auti Angel Meeting</title>
<subtitle>Introduction</subtitle>
<track>self organized sessions</track>
<type/>
<language>de</language>
<abstract/>
<description>Introduction Meeting for Auti Support Angel and Auti Angel</description>
<persons>
<person id="0">
<url>https://events.ccc.de/congress/2018/wiki/index.php/User:Fairsein</url>
<public_name>Fairsein</public_name>
</person>
</persons>
<links>
<link>https://events.ccc.de/2018/12/14/autism-support-35c3/</link>
<link>https://events.ccc.de/congress/2018/wiki/index.php/Session:Auti_Angel_Meeting</link>
</links>
</event>
<event id="1023" guid="8b99c47f-86ed-4c06-b508-f135d906b9bc">
<logo/>
<date>2018-12-27T19:01:00+01:00</date>
<start>19:01</start>
<duration>0:59</duration>
<room>Lecture room M2</room>
<slug/>
<title>Binärgewitter Hörertreffen</title>
<subtitle/>
<track>self organized sessions</track>
<type/>
<language>de</language>
<abstract/>
<description>Hörertreffen vom Binärgewitter Podcast</description>
<persons/>
<links>
<link>http://krepel.us</link>
<link>https://events.ccc.de/congress/2018/wiki/index.php/Session:Bin%C3%A4rgewitter_H%C3%B6rertreffen</link>
</links>
</event>
<event id="1030" guid="1e313c03-b69b-452c-88d1-cfa0fe297790">
<logo/>
<date>2018-12-27T18:01:00+01:00</date>
<start>18:01</start>
<duration>1:00</duration>
<room>Lecture room M2</room>
<slug/>
<title>CMS Löthelferworkshop</title>
<subtitle>Löthelferworkshop</subtitle>
<track>self organized sessions</track>
<type>workshop</type>
<language>de</language>
<abstract/>
<description>Einweisung der Lötengel die beim Junghacker-Tag (28.12.18/Tag 2) den Junghackern beim Löten helfen. Du kannst Dich auf dem Lötengel-Meeting als Lötengel freischalten lassen. Das Meeting findet am 27.12.18 um 18 Uhr statt.</description>
<persons>
<person id="0">
<url>https://events.ccc.de/congress/2018/wiki/index.php/User:Djim</url>
<public_name>Djim</public_name>
</person>
</persons>
<links>
<link>https://events.ccc.de/congress/2018/wiki/index.php/Session:CMS_L%C3%B6thelferworkshop</link>
</links>
</event>
<event id="1046" guid="e4e37c0f-db57-4d10-9a4e-35ec132cda22">
<logo/>
<date>2018-12-27T15:00:00+01:00</date>
<start>15:00</start>
<duration>1:00</duration>
<room>Lecture room M2</room>
<slug/>
<title>Feedback Session for the Arbitration Board</title>
<subtitle/>
<track>self organized sessions</track>
<type>discussion</type>
<language/>
<abstract/>
<description>The Workshop provides the official place to give feedback on the newly established arbitration board for handling conflicts at the Xc3</description>
<persons/>
<links>
<link>http://help.ccc.de</link>
<link>https://events.ccc.de/congress/2018/wiki/index.php/Session:Feedback_Session_for_the_Arbitration_Board</link>
</links>
</event>
<event id="1104" guid="c687a764-0204-46f1-9393-bce5dd7f65fb">
<logo/>
<date>2018-12-27T12:00:00+01:00</date>
<start>12:00</start>
<duration>0:30</duration>
<room>Lecture room M2</room>
<slug/>
<title>Subtitles Angelmeeting</title>
<subtitle/>
<track>self organized sessions</track>
<type>meeting</type>
<language>en</language>
<abstract/>
<description>Angel introduction meeting for Subtitles Angels. All Subtitles Angels are required to attend at least once.</description>
<persons>
<person id="0">
<url>https://events.ccc.de/congress/2018/wiki/index.php/User:Cube</url>
<public_name>Cube</public_name>
</person>
</persons>
<links>
<link>https://c3subtitles.de/</link>
<link>https://events.ccc.de/congress/2018/wiki/index.php/Session:Subtitles_Angelmeeting</link>
</links>
</event>
<event id="1107" guid="c687a764-0204-46f1-9393-bce5dd7f65fc">
<logo/>
<date>2018-12-27T16:00:00+01:00</date>
<start>16:00</start>
<duration>0:30</duration>
<room>Lecture room M2</room>
<slug/>
<title>Subtitles Angelmeeting</title>
<subtitle/>
<track>self organized sessions</track>
<type>meeting</type>
<language>en</language>
<abstract/>
<description>Angel introduction meeting for Subtitles Angels. All Subtitles Angels are required to attend at least once.</description>
<persons>
<person id="0">
<url>https://events.ccc.de/congress/2018/wiki/index.php/User:Cube</url>
<public_name>Cube</public_name>
</person>
</persons>
<links>
<link>https://c3subtitles.de/</link>
<link>https://events.ccc.de/congress/2018/wiki/index.php/Session:Subtitles_Angelmeeting</link>
</links>
</event>
<event id="1117" guid="af201fc8-81aa-4959-90ae-81307e17a6e3">
<logo/>
<date>2018-12-27T16:30:00+01:00</date>
<start>16:30</start>
<duration>1:30</duration>
<room>Lecture room M2</room>
<slug/>
<title>Tor relays operators meetup</title>
<subtitle/>
<track>self organized sessions</track>
<type>meeting</type>
<language>en</language>
<abstract/>
<description>Connecting people who run Tor relays, people who would like to run Tor relays, and people generally interested in what we are doing.</description>
<persons/>
<links>
<link>https://events.ccc.de/congress/2018/wiki/index.php/Session:Tor_relays_operators_meetup</link>
</links>
</event>
</room>
<room name="Seminar room 13">
<event id="1001" guid="a0b76b11-70c6-46b5-a89d-45731e196f7a">
<logo/>
<date>2018-12-27T15:15:00+01:00</date>
<start>15:15</start>
<duration>0:45</duration>
<room>Seminar room 13</room>
<slug/>
<title>42birds: Hacker’s Digest</title>
<subtitle/>
<track>self organized sessions</track>
<type>discussion</type>
<language>de</language>
<abstract/>
<description>We'll talk about fiction and non-fiction books.</description>
<persons/>
<links>
<link>https://b76.ch/9728</link>
<link>https://events.ccc.de/congress/2018/wiki/index.php/Session:42birds:_Hacker%E2%80%99s_Digest</link>
</links>
</event>
<event id="1063" guid="d7757509-abec-403a-811f-2a2cc97c6dcb">
<logo/>
<date>2018-12-27T18:00:00+01:00</date>
<start>18:00</start>
<duration>2:00</duration>
<room>Seminar room 13</room>
<slug/>
<title>Herald Angel Introduction</title>
<subtitle>for the small group of new Heralds</subtitle>
<track>self organized sessions</track>
<type>workshop</type>
<language/>
<abstract/>
<description/>
<persons>
<person id="0">
<url>https://events.ccc.de/congress/2018/wiki/index.php/User:Ijon</url>
<public_name>Ijon</public_name>
</person>
</persons>
<links>
<link>https://events.ccc.de/congress/2018/wiki/index.php/Static:Heralds</link>
<link>https://events.ccc.de/congress/2018/wiki/index.php/Session:Herald_Angel_Introduction</link>
</links>
</event>
<event id="1098" guid="b82e08d9-8d4f-4ecc-bbb0-8eb500ce8cdb">
<logo/>
<date>2018-12-27T20:00:00+01:00</date>
<start>20:00</start>
<duration>2:00</duration>
<room>Seminar room 13</room>
<slug/>
<title>SSG Meeting</title>
<subtitle/>
<track>self organized sessions</track>
<type>discussion</type>
<language>en</language>
<abstract/>
<description>SSG developers meeting</description>
<persons/>
<links>
<link>http://none_yet</link>
<link>https://events.ccc.de/congress/2018/wiki/index.php/Session:SSG_Meeting</link>
</links>
</event>
</room>
<room name="c-base"/>
</day>
<day date="2018-12-28" index="2" end="2018-12-29T04:00:00+01:00" start="2018-12-28T06:00:00+01:00">
<room name="">
<event id="1015" guid="36acca93-34a4-4e93-9ebe-ec1422058a27">
<logo/>
<date>2018-12-28T10:30:00+01:00</date>
<start>10:30</start>
<duration>0:45</duration>
<room/>
<slug/>
<title>Aenigma: The state-of-the-art, secure-by-default, one-touch-deployed XMPP server for everyone.</title>
<subtitle/>
<track>self organized sessions</track>
<type>talk</type>
<language>en</language>
<abstract/>
<description>After a short dive into the current state of instant messaging, we'll see how to take back our communications with aenigma, a fully standard-compliant and secure out-of-the-box xmpp server automation project.</description>
<persons/>
<links>
<link>https://github.com/openspace42/aenigma</link>
<link>https://events.ccc.de/congress/2018/wiki/index.php/Session:Aenigma:_The_state-of-the-art,_secure-by-default,_one-touch-deployed_XMPP_server_for_everyone.</link>
</links>
</event>
<event id="1039" guid="23d52b76-e454-47a3-8649-d486754e462e">
<logo/>
<date>2018-12-28T20:00:00+01:00</date>
<start>20:00</start>
<duration>2:00</duration>
<room/>
<slug/>
<title>Dining Cryptographers' Party</title>
<subtitle/>
<track>self organized sessions</track>
<type>meeting</type>
<language>de</language>
<abstract/>
<description>Relaxed get-together of conscious entities interested in creating / working with / analyzing / breaking cryptography.</description>
<persons/>
<links>
<link>https://events.ccc.de/congress/2018/wiki/index.php/Session:Dining_Cryptographers%27_Party</link>
</links>
</event>
</room>
<room name="Assembly:Hardware Hacking Area">
<event id="1109" guid="4dd26602-bf1f-454f-bd0b-e3c51ebd4281">
<logo/>
<date>2018-12-28T17:30:00+01:00</date>
<start>17:30</start>
<duration>2:00</duration>
<room>Assembly:Hardware Hacking Area</room>
<slug/>
<title>Surface mount electronics assembly for terrified beginners</title>
<subtitle>Day 2, session 3</subtitle>
<track>self organized sessions</track>
<type>workshop</type>
<language>de</language>
<abstract/>
<description>Surface mount electronics for terrified beginners. Learn to assemble tiny parts on circuit boards by building a working power supply. Anyone can do it. Yes, even you who never touched anything electronic before. 90-100mins, 20€/kit, avoid caffeine immediately before. Max 21 participants per session, there is a PAPER!!1! signup list in the hardware hacking area.</description>
<persons>
<person id="0">
<url>https://events.ccc.de/congress/2018/wiki/index.php/User:Kliment</url>
<public_name>Kliment</public_name>
</person>
</persons>
<links>
<link>https://events.ccc.de/congress/2018/wiki/index.php/Session:Surface_mount_electronics_assembly_for_terrified_beginners</link>
</links>
</event>
<event id="1112" guid="4dd26602-bf1f-454f-bd0b-e3c51ebd4279">
<logo/>
<date>2018-12-28T11:00:00+01:00</date>
<start>11:00</start>
<duration>2:00</duration>
<room>Assembly:Hardware Hacking Area</room>
<slug/>
<title>Surface mount electronics assembly for terrified beginners</title>
<subtitle>Day 2, session 1</subtitle>
<track>self organized sessions</track>
<type>workshop</type>
<language>de</language>
<abstract/>
<description>Surface mount electronics for terrified beginners. Learn to assemble tiny parts on circuit boards by building a working power supply. Anyone can do it. Yes, even you who never touched anything electronic before. 90-100mins, 20€/kit, avoid caffeine immediately before. Max 21 participants per session, there is a PAPER!!1! signup list in the hardware hacking area.</description>
<persons>
<person id="0">
<url>https://events.ccc.de/congress/2018/wiki/index.php/User:Kliment</url>
<public_name>Kliment</public_name>
</person>
</persons>
<links>
<link>https://events.ccc.de/congress/2018/wiki/index.php/Session:Surface_mount_electronics_assembly_for_terrified_beginners</link>
</links>
</event>
<event id="1115" guid="4dd26602-bf1f-454f-bd0b-e3c51ebd4280">
<logo/>
<date>2018-12-28T15:00:00+01:00</date>
<start>15:00</start>
<duration>2:00</duration>
<room>Assembly:Hardware Hacking Area</room>
<slug/>
<title>Surface mount electronics assembly for terrified beginners</title>
<subtitle>Day 2, session 2</subtitle>
<track>self organized sessions</track>
<type>workshop</type>
<language>de</language>
<abstract/>
<description>Surface mount electronics for terrified beginners. Learn to assemble tiny parts on circuit boards by building a working power supply. Anyone can do it. Yes, even you who never touched anything electronic before. 90-100mins, 20€/kit, avoid caffeine immediately before. Max 21 participants per session, there is a PAPER!!1! signup list in the hardware hacking area.</description>
<persons>
<person id="0">
<url>https://events.ccc.de/congress/2018/wiki/index.php/User:Kliment</url>
<public_name>Kliment</public_name>
</person>
</persons>
<links>
<link>https://events.ccc.de/congress/2018/wiki/index.php/Session:Surface_mount_electronics_assembly_for_terrified_beginners</link>
</links>
</event>
</room>
<room name="Lecture room 11">
<event id="1008" guid="83e455a6-c0bc-4364-b4df-8bc7b7dd01ab">
<logo/>
<date>2018-12-28T17:00:00+01:00</date>
<start>17:00</start>
<duration>1:30</duration>
<room>Lecture room 11</room>
<slug/>
<title>A/V Angel Meeting</title>
<subtitle>Day 2</subtitle>
<track>self organized sessions</track>
<type>discussion</type>
<language>de</language>
<abstract/>
<description>Daily Meetup for A/V Angels</description>
<persons>
<person id="0">
<url>https://events.ccc.de/congress/2018/wiki/index.php/User:Jwacalex</url>
<public_name>Jwacalex</public_name>