-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathworkshops.schedule.json
6603 lines (6603 loc) · 407 KB
/
workshops.schedule.json
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": {
"version": "2019-08-01 13:20",
"conference": {
"acronym": "35C3-workshops",
"title": "35. Chaos Communication Congress - Workshops",
"start": "2018-12-26",
"end": "2018-12-30",
"daysCount": 5,
"timeslot_duration": "00:15",
"days": [
{
"date": "2018-12-26",
"index": 0,
"day_end": "2018-12-27T04:00:00+01:00",
"rooms": {
"OIO Vortrags-Arena": [],
"Lecture room 11": [
{
"id": 1009,
"guid": "83e455a6-c0bc-4364-b4df-8bc7b7dd01ad",
"logo": null,
"date": "2018-12-26T23:00:00+01:00",
"start": "23:00",
"duration": "1:30",
"room": "Lecture room 11",
"slug": "35c3-1009-session_a_v_angel_meeting",
"title": "A/V Angel Meeting",
"subtitle": "A/V Technican Meetup",
"track": "self organized sessions",
"type": "discussion",
"language": "de",
"abstract": "",
"description": "Daily Meetup for A/V Angels",
"persons": [
{
"id": 0,
"url": "https://events.ccc.de/congress/2018/wiki/index.php/User:Jwacalex",
"public_name": "Jwacalex"
}
],
"links": [
"https://c3voc.de/",
"https://events.ccc.de/congress/2018/wiki/index.php/Session:A/V_Angel_Meeting"
]
},
{
"id": 1032,
"guid": "eae0d0dc-1206-4703-9ad5-6a31c41ed5f9",
"logo": null,
"date": "2018-12-26T22:30:00+01:00",
"start": "22:30",
"duration": "0:30",
"room": "Lecture room 11",
"slug": "35c3-1032-session_cashdesk_angel_introduction",
"title": "Cashdesk Angel Introduction",
"subtitle": "",
"track": "self organized sessions",
"type": "other",
"language": "en",
"abstract": "",
"description": "Want to try being a cashdesk angel? You'll need this introduction first.",
"persons": [
{
"id": 0,
"url": "https://events.ccc.de/congress/2018/wiki/index.php/User:Rixx",
"public_name": "Rixx"
}
],
"links": [
"https://events.ccc.de/congress/2018/wiki/index.php/Session:Cashdesk_Angel_Introduction"
]
},
{
"id": 1140,
"guid": "2f310a9e-c8f5-4f48-8760-87419e256e61",
"logo": null,
"date": "2018-12-26T20:00:00+01:00",
"start": "20:00",
"duration": "2:00",
"room": "Lecture room 11",
"slug": "35c3-1140-session_translation_second_channel",
"title": "Translation second channel",
"subtitle": "Meeting Day 0 (all translators)",
"track": "self organized sessions",
"type": "meeting",
"language": "",
"abstract": "",
"description": "The Translation teams for the second channel meets twice a day during the breaks to distribute shifts and self-organise.",
"persons": [],
"links": [
"https://events.ccc.de/congress/2018/wiki/index.php/Session:Translation_second_channel"
]
},
{
"id": 1118,
"guid": "1cd15de3-a4ba-4d4b-a565-eab68a76188b",
"logo": null,
"date": "2018-12-26T20:00:00+01:00",
"start": "20:00",
"duration": "2:00",
"room": "Lecture room 11",
"slug": "35c3-1118-session_translation",
"title": "Translation",
"subtitle": "Meeting Day 0",
"track": "self organized sessions",
"type": "meeting",
"language": "en",
"abstract": "",
"description": "The Translation teams meets twice a day during the breaks to distribute shifts and self-organise.",
"persons": [],
"links": [
"https://events.ccc.de/congress/2018/wiki/index.php/Session:Translation"
]
}
],
"OIO Workshop-Domo": [],
"CCL Saal 3": [],
"Chaos West B\u00fchne": [],
"Seminar room 14-15": [
{
"id": 1062,
"guid": "7f0ea54b-63b3-463a-bc68-35780a206f85",
"logo": null,
"date": "2018-12-26T20:00:00+01:00",
"start": "20:00",
"duration": "2:00",
"room": "Seminar room 14-15",
"slug": "35c3-1062-session_herald_angel_introduction",
"title": "Herald Angel Introduction",
"subtitle": "for",
"track": "self organized sessions",
"type": "workshop",
"language": "",
"abstract": "",
"description": "",
"persons": [
{
"id": 0,
"url": "https://events.ccc.de/congress/2018/wiki/index.php/User:Ijon",
"public_name": "Ijon"
}
],
"links": [
"https://events.ccc.de/congress/2018/wiki/index.php/Static:Heralds",
"https://events.ccc.de/congress/2018/wiki/index.php/Session:Herald_Angel_Introduction"
]
}
],
"ChaosZone": [],
"Kidspace": [],
"Lecture room M1": [],
"Lecture room M3": [
{
"id": 1057,
"guid": "13ed6368-e819-490b-8d71-7e1b291bb55b",
"logo": null,
"date": "2018-12-26T19:00:00+01:00",
"start": "19:00",
"duration": "1:00",
"room": "Lecture room M3",
"slug": "35c3-1057-session_general_angel_meeting",
"title": "General Angel Meeting",
"subtitle": "Day0",
"track": "self organized sessions",
"type": "meeting",
"language": "en",
"abstract": "",
"description": "Angel Meeting",
"persons": [],
"links": [
"https://engelsystem.de/35c3/",
"https://events.ccc.de/congress/2018/wiki/index.php/Session:General_Angel_Meeting"
]
},
{
"id": 1101,
"guid": "ac02f3e2-5c9e-41db-a912-96bda2afb030",
"logo": null,
"date": "2018-12-26T20:00:00+01:00",
"start": "20:00",
"duration": "3:00",
"room": "Lecture room M3",
"slug": "35c3-1101-session_stage_manager_angel_introduction",
"title": "Stage Manager Angel Introduction",
"subtitle": "",
"track": "self organized sessions",
"type": "workshop",
"language": "de",
"abstract": "",
"description": "",
"persons": [
{
"id": 0,
"url": "https://events.ccc.de/congress/2018/wiki/index.php/User:Ijon",
"public_name": "Ijon"
}
],
"links": [
"https://events.ccc.de/congress/2018/wiki/index.php/Static:Stage_manager",
"https://events.ccc.de/congress/2018/wiki/index.php/Session:Stage_Manager_Angel_Introduction"
]
}
],
"Lecture room M2": [
{
"id": 1168,
"guid": "9fd73d2b-16f5-494a-9347-c49a2458c96f",
"logo": null,
"date": "2018-12-26T22:45:00+01:00",
"start": "22:45",
"duration": "1:00",
"room": "Lecture room M2",
"slug": "35c3-1168-session_audio_angel_introduction",
"title": "Audio Angel Introduction",
"subtitle": "Experienced Audio Angel Introduction",
"track": "self organized sessions",
"type": "other",
"language": "de",
"abstract": "",
"description": "Audio Angel Introduction",
"persons": [
{
"id": 0,
"url": "https://events.ccc.de/congress/2018/wiki/index.php/User:Jwacalex",
"public_name": "Jwacalex"
}
],
"links": [
"https://c3voc.de/",
"https://events.ccc.de/congress/2018/wiki/index.php/Session:Audio_Angel_Introduction"
]
},
{
"id": 1169,
"guid": "e03792d9-bcd9-467d-8ba9-0c6530eb2894",
"logo": null,
"date": "2018-12-26T21:45:00+01:00",
"start": "21:45",
"duration": "1:00",
"room": "Lecture room M2",
"slug": "35c3-1169-session_audio_angel_introduction",
"title": "Audio Angel Introduction",
"subtitle": "Audio Mixer Angel Introduction",
"track": "self organized sessions",
"type": "other",
"language": "de",
"abstract": "",
"description": "Audio Angel Introduction",
"persons": [
{
"id": 0,
"url": "https://events.ccc.de/congress/2018/wiki/index.php/User:Jwacalex",
"public_name": "Jwacalex"
}
],
"links": [
"https://c3voc.de/",
"https://events.ccc.de/congress/2018/wiki/index.php/Session:Audio_Angel_Introduction"
]
},
{
"id": 1021,
"guid": "0cf977dd-622f-41ab-9d10-fd9a5b6ca49a",
"logo": null,
"date": "2018-12-26T20:00:00+01:00",
"start": "20:00",
"duration": "1:00",
"room": "Lecture room M2",
"slug": "35c3-1021-session_auti_angel_meeting",
"title": "Auti Angel Meeting",
"subtitle": "Introduction",
"track": "self organized sessions",
"type": "",
"language": "de",
"abstract": "",
"description": "Introduction Meeting for Auti Support Angel and Auti Angel",
"persons": [
{
"id": 0,
"url": "https://events.ccc.de/congress/2018/wiki/index.php/User:Fairsein",
"public_name": "Fairsein"
}
],
"links": [
"https://events.ccc.de/2018/12/14/autism-support-35c3/",
"https://events.ccc.de/congress/2018/wiki/index.php/Session:Auti_Angel_Meeting"
]
},
{
"id": 1103,
"guid": "91d47fec-8f29-4f1f-8301-45bd372b1884",
"logo": null,
"date": "2018-12-26T21:00:00+01:00",
"start": "21:00",
"duration": "0:30",
"room": "Lecture room M2",
"slug": "35c3-1103-session_subtitles_angelmeeting",
"title": "Subtitles Angelmeeting",
"subtitle": "",
"track": "self organized sessions",
"type": "meeting",
"language": "en",
"abstract": "",
"description": "Angel introduction meeting for Subtitles Angels. All Subtitles Angels are required to attend at least once.",
"persons": [
{
"id": 0,
"url": "https://events.ccc.de/congress/2018/wiki/index.php/User:Cube",
"public_name": "Cube"
}
],
"links": [
"https://c3subtitles.de/",
"https://events.ccc.de/congress/2018/wiki/index.php/Session:Subtitles_Angelmeeting"
]
}
],
"Seminar room 13": []
},
"day_start": "2018-12-26T06:00:00+01:00"
},
{
"date": "2018-12-27",
"index": 1,
"day_end": "2018-12-28T04:00:00+01:00",
"rooms": {
"OIO Vortrags-Arena": [],
"Lecture room 11": [
{
"id": 1010,
"guid": "bae1b248-6635-4d95-ba6c-230eb6de24cd",
"logo": null,
"date": "2018-12-27T17:00:00+01:00",
"start": "17:00",
"duration": "1:30",
"room": "Lecture room 11",
"slug": "35c3-1010-session_a_v_angel_meeting",
"title": "A/V Angel Meeting",
"subtitle": "Day 1",
"track": "self organized sessions",
"type": "discussion",
"language": "de",
"abstract": "",
"description": "Daily Meetup for A/V Angels",
"persons": [
{
"id": 0,
"url": "https://events.ccc.de/congress/2018/wiki/index.php/User:Jwacalex",
"public_name": "Jwacalex"
}
],
"links": [
"https://c3voc.de/",
"https://events.ccc.de/congress/2018/wiki/index.php/Session:A/V_Angel_Meeting"
]
},
{
"id": 1014,
"guid": "bd96b262-3cab-4afd-a628-8b0631372fbb",
"logo": null,
"date": "2018-12-27T22:00:00+01:00",
"start": "22:00",
"duration": "1:59",
"room": "Lecture room 11",
"slug": "35c3-1014-session_advanced_bondage_workshop",
"title": "Advanced Bondage Workshop",
"subtitle": "",
"track": "self organized sessions",
"type": "workshop",
"language": "de",
"abstract": "",
"description": "Advanced Bondage Workshop",
"persons": [
{
"id": 0,
"url": "https://events.ccc.de/congress/2018/wiki/index.php/User:Raven",
"public_name": "Raven"
}
],
"links": [
"https://events.ccc.de/congress/2018/wiki/index.php/Session:Advanced_Bondage_Workshop"
]
},
{
"id": 1040,
"guid": "3cbe1051-13f3-4ff7-9343-e0dc1a0e81d3",
"logo": null,
"date": "2018-12-27T18:00:00+01:00",
"start": "18:00",
"duration": "1:00",
"room": "Lecture room 11",
"slug": "35c3-1040-session_document_forensics_how_to_still_dox_spyware_suppliers_",
"title": "Document forensics: How to still dox spyware suppliers.",
"subtitle": "",
"track": "self organized sessions",
"type": "talk",
"language": "",
"abstract": "",
"description": "Doxxing spyware suppliers by using FOIA and leaked material together to dox suppliers.",
"persons": [
{
"id": 0,
"url": "https://events.ccc.de/congress/2018/wiki/index.php/User:DrWhax",
"public_name": "DrWhax"
}
],
"links": [
"https://events.ccc.de/congress/2018/wiki/index.php/Session:Document_forensics:_How_to_still_dox_spyware_suppliers."
]
},
{
"id": 1390,
"guid": "7f49ef36-4e97-4366-9dbc-62070953fa89",
"logo": null,
"date": "2018-12-28T00:00:00+01:00",
"start": "00:00",
"duration": "1:30",
"room": "Lecture room 11",
"slug": "35c3-1390-session_hacker_workflows_tools_for_x_v2_0_",
"title": "Hacker Workflows: Tools for X (v2.0)",
"subtitle": "list & bash",
"track": "self organized sessions",
"type": "workshop",
"language": "",
"abstract": "",
"description": "Collecting all the tools for all the things you can do with computers",
"persons": [],
"links": [
"https://events.ccc.de/congress/2018/wiki/index.php/Session:Hacker_Workflows:_Tools_for_X_(v2.0)"
]
},
{
"id": 1124,
"guid": "cd2e4d22-e3e5-4284-be49-68f5d1a64fa2",
"logo": null,
"date": "2018-12-27T15:10:00+01:00",
"start": "15:10",
"duration": "1:10",
"room": "Lecture room 11",
"slug": "35c3-1124-session_translation",
"title": "Translation",
"subtitle": "Meeting Day 1a",
"track": "self organized sessions",
"type": "meeting",
"language": "en",
"abstract": "",
"description": "The Translation teams meets twice a day during the breaks to distribute shifts and self-organise.",
"persons": [],
"links": [
"https://events.ccc.de/congress/2018/wiki/index.php/Session:Translation"
]
},
{
"id": 1125,
"guid": "cd2e4d22-e3e5-4284-be49-68f5d1a64fa3",
"logo": null,
"date": "2018-12-27T19:45:00+01:00",
"start": "19:45",
"duration": "1:30",
"room": "Lecture room 11",
"slug": "35c3-1125-session_translation",
"title": "Translation",
"subtitle": "Meeting Day 1b",
"track": "self organized sessions",
"type": "meeting",
"language": "en",
"abstract": "",
"description": "The Translation teams meets twice a day during the breaks to distribute shifts and self-organise.",
"persons": [],
"links": [
"https://events.ccc.de/congress/2018/wiki/index.php/Session:Translation"
]
}
],
"OIO Workshop-Domo": [],
"CCL Saal 3": [],
"Chaos West B\u00fchne": [],
"Seminar room 14-15": [
{
"id": 1332,
"guid": "1461c100-3401-4ab5-a286-b134e94b9be2",
"logo": null,
"date": "2018-12-27T22:00:00+01:00",
"start": "22:00",
"duration": "1:59",
"room": "Seminar room 14-15",
"slug": "35c3-1332-session_12_characters_in_search_of_an_apocalypse_gathering_and_reading",
"title": "12 Characters in search of an apocalypse - gathering and reading",
"subtitle": "How does climate change affects us, our families and our communities? Hearing 12 different perspectives connects us to our own through intermediate pair-discussions. We exchange personal experiences with the group in the end to reveal the systemic aspects..",
"track": "self organized sessions",
"type": "discussion",
"language": "en",
"abstract": "",
"description": "How does climate change affects us, our families and our communities? Hearing 12 different perspectives connects us to our own through intermediate pair-discussions.",
"persons": [
{
"id": 0,
"url": "https://events.ccc.de/congress/2018/wiki/index.php/User:Niccokunzmann",
"public_name": "Niccokunzmann"
}
],
"links": [
"https://12characters.org.uk/",
"https://events.ccc.de/congress/2018/wiki/index.php/Session:12_Characters_in_search_of_an_apocalypse_-_gathering_and_reading"
]
},
{
"id": 1050,
"guid": "84945cde-3908-4f12-ac48-0ada208bf17e",
"logo": null,
"date": "2018-12-27T13:10:00+01:00",
"start": "13:10",
"duration": "0:45",
"room": "Seminar room 14-15",
"slug": "35c3-1050-session_foundation_workshop_vim_for_beginners",
"title": "Foundation workshop: Vim for beginners",
"subtitle": "",
"track": "self organized sessions",
"type": "workshop",
"language": "en",
"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.",
"persons": [
{
"id": 0,
"url": "https://events.ccc.de/congress/2018/wiki/index.php/User:Iblech",
"public_name": "Iblech"
}
],
"links": [
"https://events.ccc.de/congress/2018/wiki/index.php/Session:Foundation_workshop:_Vim_for_beginners"
]
},
{
"id": 1290,
"guid": "ab3de43c-3911-4e6f-b398-b1bba7d2da89",
"logo": null,
"date": "2018-12-27T17:00:00+01:00",
"start": "17:00",
"duration": "1:00",
"room": "Seminar room 14-15",
"slug": "35c3-1290-session_hackers_against_climate_change",
"title": "Hackers Against Climate Change",
"subtitle": "Meetup, Discussion",
"track": "self organized sessions",
"type": "discussion",
"language": "de",
"abstract": "",
"description": "Meetup/Discussion for Hackers concerned with Climate Change",
"persons": [
{
"id": 0,
"url": "https://events.ccc.de/congress/2018/wiki/index.php/User:Seth",
"public_name": "Seth"
}
],
"links": [
"https://events.ccc.de/congress/2018/wiki/index.php/Session:Hackers_Against_Climate_Change"
]
},
{
"id": 1073,
"guid": "83dc17af-d621-4012-b039-d7904836e3d3",
"logo": null,
"date": "2018-12-27T20:00:00+01:00",
"start": "20:00",
"duration": "1:00",
"room": "Seminar room 14-15",
"slug": "35c3-1073-session_koordinierungstreffen_junghackertag",
"title": "Koordinierungstreffen Junghackertag",
"subtitle": "",
"track": "self organized sessions",
"type": "meeting",
"language": "de",
"abstract": "",
"description": "Abstimmungs- und Vorbereitungstreffen f\u00fcr den Junghackertag",
"persons": [
{
"id": 0,
"url": "https://events.ccc.de/congress/2018/wiki/index.php/User:Waldvogel",
"public_name": "Waldvogel"
}
],
"links": [
"https://events.ccc.de/congress/2018/wiki/index.php/Projects:Junghackertag",
"https://events.ccc.de/congress/2018/wiki/index.php/Session:Koordinierungstreffen_Junghackertag"
]
},
{
"id": 1074,
"guid": "e1ea79e7-a487-4c99-86b2-c2533b22fe69",
"logo": null,
"date": "2018-12-27T14:00:00+01:00",
"start": "14:00",
"duration": "1:00",
"room": "Seminar room 14-15",
"slug": "35c3-1074-session_lehrerinnenstammtisch",
"title": "LehrerInnenstammtisch",
"subtitle": "",
"track": "self organized sessions",
"type": "meeting",
"language": "",
"abstract": "",
"description": "",
"persons": [],
"links": [
"https://events.ccc.de/congress/2018/wiki/index.php/Session:LehrerInnenstammtisch"
]
},
{
"id": 1088,
"guid": "54822ed6-ef46-48fc-a2d0-7be196266485",
"logo": null,
"date": "2018-12-27T18:00:00+01:00",
"start": "18:00",
"duration": "1:00",
"room": "Seminar room 14-15",
"slug": "35c3-1088-session_origami",
"title": "Origami",
"subtitle": "paperless? how boring! A quick introduction to beginners",
"track": "self organized sessions",
"type": "hands-on",
"language": "de",
"abstract": "",
"description": "Learn to fold easy Origami objects and decorate your environment with paper",
"persons": [],
"links": [
"https://events.ccc.de/congress/2018/wiki/index.php/Session:Origami"
]
},
{
"id": 1097,
"guid": "d25d9fdc-944a-4d44-b706-387181bc5ee8",
"logo": null,
"date": "2018-12-27T15:00:00+01:00",
"start": "15:00",
"duration": "2:00",
"room": "Seminar room 14-15",
"slug": "35c3-1097-session_relationship_anarchy",
"title": "Relationship Anarchy",
"subtitle": "",
"track": "self organized sessions",
"type": "meeting",
"language": "en",
"abstract": "",
"description": "A nice & cozy relationship anarchy (https://en.wikipedia.org/wiki/Relationship_anarchy) gathering.",
"persons": [
{
"id": 0,
"url": "https://events.ccc.de/congress/2018/wiki/index.php/User:Wieueberall",
"public_name": "Wieueberall"
}
],
"links": [
"https://t.me/ra35c3",
"https://events.ccc.de/congress/2018/wiki/index.php/Session:Relationship_Anarchy"
]
},
{
"id": 1264,
"guid": "e7d23ce2-877b-41a0-98b8-796d31635ce0",
"logo": null,
"date": "2018-12-27T21:00:00+01:00",
"start": "21:00",
"duration": "1:00",
"room": "Seminar room 14-15",
"slug": "35c3-1264-session_rust_2025",
"title": "Rust 2025",
"subtitle": "Rust in the year 2025",
"track": "self organized sessions",
"type": "",
"language": "en",
"abstract": "",
"description": "An open minded discussion about the Rust programming language.",
"persons": [
{
"id": 0,
"url": "https://events.ccc.de/congress/2018/wiki/index.php/User:Mwarning",
"public_name": "Mwarning"
}
],
"links": [
"https://events.ccc.de/congress/2018/wiki/index.php/Session:Rust_2025"
]
}
],
"ChaosZone": [],
"Kidspace": [
{
"id": 1367,
"guid": "4b396375-5c38-4932-9b57-c06f7c55039e",
"logo": null,
"date": "2018-12-27T11:00:00+01:00",
"start": "11:00",
"duration": "2:00",
"room": "Kidspace",
"slug": "35c3-1367-session_alltags_experimente_mit_kindern",
"title": "Alltags-Experimente mit Kindern",
"subtitle": "",
"track": "self organized sessions",
"type": "workshop",
"language": "",
"abstract": "",
"description": "Luft, Wasser und Lebensmittel - entdecke einige interessante Eigenschaften der Stoffe aus deiner Umgebung.",
"persons": [],
"links": [
"https://events.ccc.de/congress/2018/wiki/index.php/Session:Alltags-Experimente_mit_Kindern"
]
},
{
"id": 1213,
"guid": "27224164-a862-4d0c-8c32-2f5efd3d93cc",
"logo": null,
"date": "2018-12-27T14:00:00+01:00",
"start": "14:00",
"duration": "4:00",
"room": "Kidspace",
"slug": "35c3-1213-session_cartoon_workshop_trickmisch",
"title": "Cartoon-Workshop: Trickmisch",
"subtitle": "",
"track": "self organized sessions",
"type": "game",
"language": "de",
"abstract": "",
"description": "Trickfilm-Workshop: Mach deinen eigenen Trickfilm! Du kannst daf\u00fcr eigene Zeichnungen, Scherenschnitte und Bildhintergr\u00fcnde erstellen und am Computer animieren. Die Filme k\u00f6nnt ihr sp\u00e4ter auf Trixmix.tv sehen und herunterladen. Auf Trixmix.tv kann jeder eigene Trickfilme online erstellen. Alle Zeichungen aus dem kollektiv erstellten Bildw\u00f6rterbuch k\u00f6nnen daf\u00fcr verwenden.",
"persons": [],
"links": [
"https://events.ccc.de/congress/2018/wiki/index.php/Session:Cartoon-Workshop:_Trickmisch"
]
},
{
"id": 1261,
"guid": "905bb142-6b89-40bb-acf3-8b0e2da65f03",
"logo": null,
"date": "2018-12-27T18:30:00+01:00",
"start": "18:30",
"duration": "2:00",
"room": "Kidspace",
"slug": "35c3-1261-session_djchen",
"title": "DJchen",
"subtitle": "",
"track": "self organized sessions",
"type": "workshop",
"language": "",
"abstract": "",
"description": "Kids DJ-Workshop",
"persons": [],
"links": [
"https://events.ccc.de/congress/2018/wiki/index.php/Session:DJchen"
]
},
{
"id": 1371,
"guid": "c0c2399b-7c6e-46b4-a507-ddfb5b5d0243",
"logo": null,
"date": "2018-12-27T14:30:00+01:00",
"start": "14:30",
"duration": "3:30",
"room": "Kidspace",
"slug": "35c3-1371-session_factorio_workshop_fuer_einsteiger",
"title": "Factorio - Workshop f\u00fcr Einsteiger",
"subtitle": "",
"track": "self organized sessions",
"type": "workshop",
"language": "",
"abstract": "",
"description": "",
"persons": [],
"links": [
"https://events.ccc.de/congress/2018/wiki/index.php/Session:Factorio_-_Workshop_f%C3%BCr_Einsteiger"
]
},
{
"id": 1216,
"guid": "0beb6543-cc8a-46d8-a59a-12dea4a66ac7",
"logo": null,
"date": "2018-12-27T14:00:00+01:00",
"start": "14:00",
"duration": "2:00",
"room": "Kidspace",
"slug": "35c3-1216-session_scratch_programmieren_mit_der_maus",
"title": "Scratch - Programmieren mit der Maus",
"subtitle": "",
"track": "self organized sessions",
"type": "workshop",
"language": "en",
"abstract": "",
"description": "",
"persons": [],
"links": [
"https://events.ccc.de/congress/2018/wiki/index.php/Session:Scratch_-_Programmieren_mit_der_Maus"
]
},
{
"id": 1373,
"guid": "47a1e8a5-9434-4aed-9b66-848d03180147",
"logo": null,
"date": "2018-12-27T13:00:00+01:00",
"start": "13:00",
"duration": "1:00",
"room": "Kidspace",
"slug": "35c3-1373-session_siebdruck_",
"title": "Siebdruck!",
"subtitle": "",
"track": "self organized sessions",
"type": "hands-on",
"language": "",
"abstract": "",
"description": "",
"persons": [],
"links": [
"https://events.ccc.de/congress/2018/wiki/index.php/Session:Siebdruck!"
]
},
{
"id": 1286,
"guid": "e88de346-502e-4fdb-895c-eddb084edcd7",
"logo": null,
"date": "2018-12-27T15:00:00+01:00",
"start": "15:00",
"duration": "0:30",
"room": "Kidspace",
"slug": "35c3-1286-session_sing_und_tanzspiele",
"title": "Sing- und Tanzspiele",
"subtitle": "Sing- und Tanzspiele",
"track": "self organized sessions",
"type": "hands-on",
"language": "de",
"abstract": "",
"description": "Sing- und Tanzspiele f\u00fcr Kinder von \"kann selber laufen\" bis 4 Jahre",
"persons": [
{
"id": 0,
"url": "https://events.ccc.de/congress/2018/wiki/index.php/User:Tanja",
"public_name": "Tanja"
}
],
"links": [
"https://events.ccc.de/congress/2018/wiki/index.php/Session:Sing-_und_Tanzspiele"
]
},
{
"id": 1224,
"guid": "b0e9f5ed-6e77-45d6-a620-3990afb1ba16",
"logo": null,
"date": "2018-12-27T16:00:00+01:00",
"start": "16:00",
"duration": "2:00",
"room": "Kidspace",
"slug": "35c3-1224-session_tetrapix_lichterkunst_mit_saftkartons",
"title": "Tetrapix - Lichterkunst mit Saftkartons",
"subtitle": "",
"track": "self organized sessions",
"type": "workshop",
"language": "",
"abstract": "",
"description": "",
"persons": [],
"links": [
"https://events.ccc.de/congress/2018/wiki/index.php/Session:Tetrapix_-_Lichterkunst_mit_Saftkartons"
]
},
{
"id": 1219,
"guid": "d3eb3a07-b1df-45ac-9f36-754cddab1ac3",
"logo": null,
"date": "2018-12-27T16:00:00+01:00",
"start": "16:00",
"duration": "2:00",
"room": "Kidspace",
"slug": "35c3-1219-session_tinkerbots",
"title": "Tinkerbots",
"subtitle": "",
"track": "self organized sessions",
"type": "workshop",
"language": "",
"abstract": "",
"description": "Tinkerbots ist was du daraus machst \u2013 Nimm das Powerbrain in die Hand und baue deinen eigenen Roboter. Mit verschiedenen Modulen, die sich einfach zusammenstecken lassen und Daten und Energie automatisch \u00fcbertragen, sind deinen vielen kreativen M\u00f6glichkeiten keine Grenzen gesetzt.",
"persons": [],
"links": [
"https://www.tinkerbots.de/",
"https://events.ccc.de/congress/2018/wiki/index.php/Session:Tinkerbots"
]
}
],
"Lecture room M1": [
{
"id": 1012,
"guid": "dd8c40c5-e24b-4246-bc6a-014b6f392949",
"logo": null,
"date": "2018-12-27T12:00:00+01:00",
"start": "12:00",
"duration": "3:00",
"room": "Lecture room M1",
"slug": "35c3-1012-session_arm_rop_exploitation_intro",
"title": "ARM ROP Exploitation Intro",
"subtitle": "",
"track": "self organized sessions",
"type": "workshop",
"language": "de",
"abstract": "",
"description": "Exploiting stack based buffer overflows using ROP on ARM",
"persons": [],
"links": [
"https://blog.3or.de/arm-exploitation-return-oriented-programming.html",
"https://blog.3or.de//35c3",
"https://events.ccc.de/congress/2018/wiki/index.php/Session:ARM_ROP_Exploitation_Intro"
]
},
{
"id": 1029,
"guid": "f4828a36-375f-4136-bfe2-2e3cf1cedf00",
"logo": null,
"date": "2018-12-27T15:30:00+01:00",
"start": "15:30",
"duration": "0:45",
"room": "Lecture room M1",
"slug": "35c3-1029-session_cccchoir",
"title": "CCCChoir",
"subtitle": "All creatures welcome, especially beginners",
"track": "self organized sessions",
"type": "hands-on",
"language": "de",
"abstract": "",
"description": "Gemeinsames Chorsingen. Singing in a choir. All creatures welcome.",
"persons": [],
"links": [
"https://events.ccc.de/congress/2018/wiki/index.php/Session:CCCChoir"
]
},
{
"id": 1206,
"guid": "7375c8c3-ef0c-4918-831f-6b72e5f28321",
"logo": null,
"date": "2018-12-27T18:00:00+01:00",
"start": "18:00",
"duration": "1:30",
"room": "Lecture room M1",
"slug": "35c3-1206-session_lesswrong_meetup",
"title": "LessWrong meetup",
"subtitle": "",
"track": "self organized sessions",
"type": "meeting",
"language": "en",
"abstract": "",
"description": "Meetup for everyone interested or part of the Rationality/LessWrong movement",
"persons": [],
"links": [
"https://www.lesswrong.com/",
"https://events.ccc.de/congress/2018/wiki/index.php/Session:LessWrong_meetup"
]
},
{
"id": 1102,
"guid": "b0853196-c34c-416f-8e7d-aaad43a8c7db",
"logo": null,
"date": "2018-12-27T20:00:00+01:00",
"start": "20:00",
"duration": "3:00",
"room": "Lecture room M1",
"slug": "35c3-1102-session_stage_manager_angel_introduction",
"title": "Stage Manager Angel Introduction",
"subtitle": "",
"track": "self organized sessions",
"type": "workshop",
"language": "de",
"abstract": "",
"description": "",
"persons": [
{
"id": 0,
"url": "https://events.ccc.de/congress/2018/wiki/index.php/User:Ijon",
"public_name": "Ijon"
}
],
"links": [
"https://events.ccc.de/congress/2018/wiki/index.php/Static:Stage_manager",
"https://events.ccc.de/congress/2018/wiki/index.php/Session:Stage_Manager_Angel_Introduction"
]
}
],
"Popticum Art-and-Play": [
{
"id": 1315,
"guid": "ba73a273-e0b0-49e6-a9e2-0acc0c29a75c",
"logo": null,
"date": "2018-12-27T22:00:00+01:00",
"start": "22:00",
"duration": "2:00",
"room": "Popticum Art-and-Play",
"slug": "35c3-1315-session_concert_full_moon_orchestra",
"title": "Concert -- Full Moon Orchestra",
"subtitle": "The Full Moon Orchestra is a musician's collective who take their inspiration from free improvisation and provide material with a substantial danceable ingredient.",
"track": "self organized sessions",
"type": "",
"language": "",
"abstract": "",
"description": "",
"persons": [],