-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcccamp.json
9596 lines (9596 loc) · 862 KB
/
cccamp.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": "0.9.9",
"base_url": "https://pretalx.c3voc.de/camp2023/schedule/",
"conference": {
"acronym": "camp2023",
"title": "Chaos Communication Camp 2023",
"start": "2023-08-15",
"end": "2023-08-20",
"daysCount": 6,
"timeslot_duration": "00:05",
"time_zone_name": "Europe/Berlin",
"rooms": [
{
"name": "Marktplatz",
"guid": "5b239f1d-06c8-4e7c-b824-25b6ee7360d1",
"description": null,
"capacity": 1000
},
{
"name": "Milliways",
"guid": "345ca97a-7eb6-459b-bc53-bc2a8bd5c3f1",
"description": null,
"capacity": 160
},
{
"name": "Digitalcourage",
"guid": "7c1ad02f-4d33-4d48-a5a3-0e6798a18d01",
"description": null,
"capacity": 60
},
{
"name": "N:O:R:T:x",
"guid": "52f1a9fa-580e-4a32-bf20-4326902717aa",
"description": "Open Air stage with tarps for the audience",
"capacity": 50
},
{
"name": "Bits & B\u00e4ume",
"guid": "f9b82a04-1354-4ee5-9df6-c71b6cde66ea",
"description": null,
"capacity": 40
},
{
"name": "Bits&B\u00e4ume Workshops",
"guid": "f6088f46-eb8c-40e2-8347-49720fc3d32f",
"description": null,
"capacity": 30
},
{
"name": "Hardware Hacking Village",
"guid": "6087bd37-8cc3-4ac1-afc2-8f6e42756ea0",
"description": null,
"capacity": 100
},
{
"name": "Milliways Workshop Dome",
"guid": "228252ff-ce83-4f49-b52f-faba611acf1a",
"description": "the (one and only) milliways dome",
"capacity": 50
},
{
"name": "UFO",
"guid": "0a639330-e9ac-4d22-8dbc-3571ed8e9640",
"description": null,
"capacity": 1
},
{
"name": "Culture Club",
"guid": "7fe8d330-843e-4f7f-a3c3-d502cab09140",
"description": null,
"capacity": 1
},
{
"name": "Chill Lagune am Herzbergstich",
"guid": "8ad5b9c6-ea4f-4e43-b80e-4a1e3d46f13c",
"description": "Chillen am See? Entspannen, schwoofen und dabei alle m\u00f6glichen Arten von Ambient und Chillout Musik genie\u00dfen? Das und mehr servieren wir euch an der kleinen, gem\u00fctlichen Lagune am Herzbergstich - sogar mit eigener Badestelle. Unser Line-up verspricht ein abwechslungsreiches Programm. Da wird gejammt werden auf modularen Ger\u00e4ten und handgemachte Musik mit Gesang wird es geben sowie finest selected Vinyl. Und eine Buch-Lesung ist auch im Programm. Nachts verzaubern unsere VJs die Lagune mit fantastischen Lichtspielereien. Die Bar versorgt uns mit Kaltgetr\u00e4nken zum Mitnehmen. Das Kaffe G\u00fczel hat sich zu uns gesellt und m\u00f6chte euch ebenfalls verzaubern. Mit selbst ger\u00f6steten, feinsten veganen Kaffeespezialit\u00e4ten, herrlich w\u00fcrzigem Kakao und Chai Latte \u00e1 la G\u00fczelschaft. Als Fr\u00fchst\u00fcckchen reichen sie Sch\u00fcschm\u00fcsli und warme Quetsch-Sandwichs. In der Jurte l\u00e4sst es sich richtig gut abh\u00e4ngen - schaut doch mal vorbei!",
"capacity": 150
},
{
"name": "C3VOC.tv",
"guid": "a06db024-2ab8-49ce-940f-2814b5fb9740",
"description": null,
"capacity": 20
}
],
"days": [
{
"index": 1,
"date": "2023-08-15",
"day_start": "2023-08-15T04:00:00+02:00",
"day_end": "2023-08-16T03:59:00+02:00",
"rooms": {
"Marktplatz": [
{
"id": 57532,
"guid": "937dbe56-d1c3-5351-a178-7a6a73990887",
"logo": "/media/camp2023/submissions/UC9MDV/Fisty-sprayed-Stencil_Neonpink_lOIfhYM.png",
"date": "2023-08-15T11:00:00+02:00",
"start": "11:00",
"duration": "00:45",
"room": "Marktplatz",
"slug": "camp2023-57532-chaos-communication-camp-2023-opening",
"url": "https://pretalx.c3voc.de/camp2023/talk/UC9MDV/",
"title": "Chaos Communication Camp 2023 Opening",
"subtitle": "",
"track": "CCC",
"type": "Talk",
"language": "en",
"abstract": "Welcome to the show",
"description": "",
"recording_license": "",
"do_not_record": false,
"persons": [
{
"id": 3407,
"code": "KPTLGM",
"public_name": "snoopy",
"biography": null,
"answers": []
},
{
"id": 4464,
"code": "QW9WSW",
"public_name": "leona",
"biography": "leona is active in the CCC Cologne. She plays with computers, does software development and system ops",
"answers": []
}
],
"links": [],
"attachments": [],
"answers": []
},
{
"id": 57597,
"guid": "bcc807c1-0656-5c33-b917-9c996613eddc",
"logo": "",
"date": "2023-08-15T14:30:00+02:00",
"start": "14:30",
"duration": "01:00",
"room": "Marktplatz",
"slug": "camp2023-57597-batbiz",
"url": "https://pretalx.c3voc.de/camp2023/talk/MCVL7R/",
"title": "batbiz",
"subtitle": "",
"track": "Live Music",
"type": "Performance",
"language": "de",
"abstract": "batbiz is a music project based on bat signal recordings from berlin and mexico, braindance made with tracker",
"description": "https://jarkkorasanen.bandcamp.com/album/batbiz",
"recording_license": "",
"do_not_record": false,
"persons": [
{
"id": 4520,
"code": "BLXNLJ",
"public_name": "Jarkko",
"biography": null,
"answers": []
}
],
"links": [],
"attachments": [],
"answers": []
},
{
"id": 57154,
"guid": "1071e834-ba92-56a6-ad0d-d814f2ee822a",
"logo": "",
"date": "2023-08-15T16:00:00+02:00",
"start": "16:00",
"duration": "01:00",
"room": "Marktplatz",
"slug": "camp2023-57154-munteres-waffelbacken",
"url": "https://pretalx.c3voc.de/camp2023/talk/DM99WN/",
"title": "Munteres Waffelbacken",
"subtitle": "",
"track": "Entertainment",
"type": "Performance",
"language": "de",
"abstract": "Auf der Fireshonksb\u00fchne am RC3 haben sich Erkl\u00e4rhai zusammen\r\nmit hexchen und padeluun zu einer Muntere Abendunterhaltung\r\ngetroffen und Angek\u00fcndigt, sich am Chaos Communication Camp\r\nwieder zu treffen.\r\n\r\nEs wird gemeinsam Waffelgebacken und \u00fcbers Waffelbacken\r\nphilosophiert.",
"description": "Beim munteren Waffelbacken treffen sich Erkl\u00e4rhai, hexchen\r\nund padeluun zu einer lebendigen Diskussion \u00fcber das \r\nWaffelbacken und die tiefgr\u00fcndigen Fragen des Lebens.\r\nGemeinsam werden wir nicht nur \u00fcber die Philosophie des\r\nWaffelbackens sprechen, sondern auch live Waffeln zubereiten\r\nund sie anschlie\u00dfend gemeinsam genie\u00dfen. Begleitet werden \r\nwir dabei vom Waffel Operation Center, das uns mit\r\nExpertise und Leidenschaft unterst\u00fctzt.\r\n\r\nLasst Euch von unserer munteren Waffelprogramm inspirieren\r\nund taucht ein in eine Welt, in der Technologie, Philosophie\r\nund Genuss auf kreative Weise verschmelzen.\r\n\r\nUnser Auftritt vom RC3 k\u00f6nnt ihr dort auf media.ccc.de verfolgen:\r\nhttps://media.ccc.de/v/fire-shonks-2022-54011-muntere-abendunterhaltung-made-in-r3s",
"recording_license": "",
"do_not_record": false,
"persons": [
{
"id": 972,
"code": "WFVS9W",
"public_name": "erkl\u00e4rhai",
"biography": "Backt schon seit vielen Jahren Waffeln",
"answers": []
},
{
"id": 182,
"code": "MHGYMM",
"public_name": "L3D",
"biography": "Datenreisender vom Bodensee",
"answers": []
},
{
"id": 393,
"code": "NSTENV",
"public_name": "padeluun",
"biography": "padeluun is one of the founding fathers of Digitalcourage. He experimented with public networked communication as early as the late 1980s. Together with Rena Tangens, he developed concepts on how communication can succeed - and failed grandly in front of the concentrated financial power of the \"internet corporations\", who were able to destroy communication with a lot of money, but clueless as they were (and still are today) could not build anything useful. He is a member of the jury of the BigBrotherAwards, was a named expert of the \"Enqu\u00eate Commission Internet and digital Society of the 17th German Bundestag\" for three years and today throws himself into the Fediverse in a supportive way...",
"answers": []
},
{
"id": 3230,
"code": "DNXJPH",
"public_name": "hexchen",
"biography": "hexchen. ein chaotisches Wesen, was viel mit Z\u00fcgen unterwegs ist. Tags\u00fcber aktiv als Sysadministress/Sysadmin in distress, war mal Bahnerin. Pronomen sie/ihr.",
"answers": []
}
],
"links": [],
"attachments": [],
"answers": []
},
{
"id": 57102,
"guid": "8278be7b-9ea6-5344-90cb-5959f443b9b4",
"logo": "/media/chaos-communication-camp-2023/submissions/XTTBRG/mic_training_fiep_ZyDD1bW.jpg",
"date": "2023-08-15T18:00:00+02:00",
"start": "18:00",
"duration": "01:00",
"room": "Marktplatz",
"slug": "camp2023-57102-fiiiiieeeep-mic-training-fr-speaker-innen-wie-mensch-mit-einem-mikrofon-auf-der-bhne-umgeht-",
"url": "https://pretalx.c3voc.de/camp2023/talk/XTTBRG/",
"title": "Fiiiiieeeep! Mic-Training f\u00fcr Speaker*innen: Wie Mensch mit einem Mikrofon auf der B\u00fchne umgeht.",
"subtitle": "",
"track": "Entertainment",
"type": "Short Talk",
"language": "de",
"abstract": "Deine Message ist wichtig und es sollen dich alle gut verstehen! Nicht hilfreich: Wenn es die ganze Zeit fiiiiiiiieeeeept!\r\n\r\nDer Umgang mit einem Mikrofon auf der B\u00fchne ist eigentlich ganz einfach - wenn Mensch ein paar Dinge beachtet und ge\u00fcbt hat. Um die geht es beim Mic-Training f\u00fcr Speaker*innen auf der Camp B\u00fchne mit producer/engineer 'trummerschlunk'.\r\n\r\nDanach wei\u00dft du: Warum h\u00e4ltst du dein Mikrofon auf welche Weise? Wie reagierst du am effektivsten auf Feedbacks? Wie baust du durch gezielten Mikrofoneinsatz eine direktere Verbindung zu deinem Publikum auf? Und hast all das auch gleich ge\u00fcbt.\r\n\r\n--- english ---\r\n\r\nYour message is important and everyone should understand you well! What\u2019s certainly not helpful: a constant beeeeeeeeeep!\r\n\r\nHandling a microphone on stage is actually quite easy - if you pay attention to a few things and have practiced. That's the focus of this mic training for speakers on the Camp stage with producer/engineer 'trummerschlunk.\u2019\r\n\r\nYou will learn: Why should you hold your microphone a certain way? How do you most effectively react to feedbacks? How do you build a more direct connection with your audience through targeted use of the mic? And the best part: You will practice!",
"description": "",
"recording_license": "",
"do_not_record": false,
"persons": [
{
"id": 4119,
"code": "T9CBAQ",
"public_name": "trummerschlunk",
"biography": "later",
"answers": []
}
],
"links": [],
"attachments": [],
"answers": []
},
{
"id": 57602,
"guid": "14df1dd2-afb3-59c0-abe4-abd650f2a7d4",
"logo": "/media/camp2023/submissions/7M8FZ7/irq7_live_in_nuremberg_photo_by_Andreas_Schnappauf_lCEyhj1.jpg",
"date": "2023-08-15T19:00:00+02:00",
"start": "19:00",
"duration": "01:00",
"room": "Marktplatz",
"slug": "camp2023-57602-irq7",
"url": "https://pretalx.c3voc.de/camp2023/talk/7M8FZ7/",
"title": "irq7",
"subtitle": "",
"track": "Live Music",
"type": "Performance",
"language": "de",
"abstract": "Chiptunes! irq7 performt 8Bit Musik am Gameboy. Tanzbar und irgendwo zwischen Electro, Drum & Bass, und Breakbeats.",
"description": "Wer einmal den Bass eines Gameboy-Klassik geh\u00f6rt hat der wei\u00df, dass er es locker mit modernen Synthesizern aufnehmen kann. Den Reiz an diesen alten Ger\u00e4ten liegt aber nicht nur im Sound, sondern auch in der Beschr\u00e4nkung, die man sich damit selbst auferlegt. Diese macht kreativ und reduziert die Musik auf das wesentliche: Melodie, Bass und Schlagzeug. *dading*\r\n\r\nWer Bock hat Chiptunes selber zu schreiben, kann am Gameboymusik-Workshop der auch im Programm zu finden ist teilnehmen!",
"recording_license": "",
"do_not_record": false,
"persons": [
{
"id": 4528,
"code": "RZN9SM",
"public_name": "irq7",
"biography": "irq7 ist seit mehreren Jahren in der Chiptune Szene als Gameboy-Liveact aktiv.\r\nDer erste Kontakt zu dieser Art von Musik kam 2003 durch ein Konzert des Gameboymusicclub's in\r\nGraz zustande. Daraufhin folgt der Kauf den ersten Gameboys und dann schlie\u00dflich das erste\r\nKonzert im Jahr 2006. Davor ein \u00fcberzeugter Fan des Commodore 64 Sounds und sammeln erster\r\nErfahrungen mit Tracker-Software am Amiga\r\nUm noch mehr aus den alten Handhelds raus zu holen, beginnt irq7 seine Gameboys selbst zu\r\nmodifizieren und zu erweitern . Alle Aktivit\u00e4ten werden seither auf seinem Blog\r\nhttp://irq7.blogspot.com ver\u00f6ffentlicht. Des Weiteren ist er seit 2010 Mitorganisator des j\u00e4hrliche n\r\nChiptune Festival s CHIP HITS THE FAN http://chiphitsthefan.de in N\u00fcrnberg.",
"answers": []
}
],
"links": [],
"attachments": [],
"answers": []
},
{
"id": 57543,
"guid": "5baf41d4-ae77-54ce-a4db-fffd36a0c431",
"logo": "",
"date": "2023-08-15T20:00:00+02:00",
"start": "20:00",
"duration": "00:45",
"room": "Marktplatz",
"slug": "camp2023-57543--clubsareculture",
"url": "https://pretalx.c3voc.de/camp2023/talk/ZGUQTW/",
"title": "#clubsAREculture",
"subtitle": "",
"track": "CCC",
"type": "Talk",
"language": "de",
"abstract": "Die Allianz #clubsAREculture setzt sich daf\u00fcr ein, dem Thema Clubkultur mehr Sichtbarkeit zu verschaffen. Doch was wurde bislang erreicht? Was macht die Clubkultur aus und warum sollte man diese (besonders) sch\u00fctzen? M\u00fcssen althergebrachte Kulturdefinitionen \u00fcberdacht werden? Und welche Kr\u00e4fte gilt es zu b\u00fcndeln, damit Clubkultur auch k\u00fcnftig bestehen und gedeihen kann?",
"description": "Musikclubs und Festivals leisten einen unverzichtbaren Beitrag f\u00fcr unsere lebendige Kulturlandschaft. Dennoch fallen Clubs und Subkultur in der politischen Wahrnehmung oft unter den Tisch. Auf Bundes-, Landes- und kommunaler Ebene existieren z.B. nur rudiment\u00e4re F\u00f6rderprogramme, die sich modernen Kulturformen zuwenden. Zudem bestehen zahlreiche Handlungsbedarfe f\u00fcr einen aktiven Kulturraumschutz. In den kommenden Monaten liegen wichtige Weichenstellungen auf Bundes- und L\u00e4nderebene an. \r\nDie Allianz #clubsAREculture setzt sich daf\u00fcr ein, dem Thema Clubkultur mehr Sichtbarkeit zu verschaffen. Doch was wurde bislang erreicht? Was macht die Clubkultur aus und warum sollte man diese (besonders) sch\u00fctzen? M\u00fcssen althergebrachte Kulturdefinitionen \u00fcberdacht werden? Und welche Kr\u00e4fte gilt es zu b\u00fcndeln, damit Clubkultur auch k\u00fcnftig bestehen und gedeihen kann? Viele dieser Fragen - wie auch weitere aus dem Publikum - werden zur Sprache kommen. \r\nThore Debor (LiveKomm Sprecher AG Kulturraumschutz) wird dazu mit Mareen (Kulturkosmos / Fusion Festival), Aena (Pyonen / Nation of Gondwana), Sophia (KLUBKOMM K\u00f6ln) und weitern Veranstalter:innen vor Ort ins Gespr\u00e4ch kommen. Moderation: dj-spock\r\n\r\nhttps://www.clubsareculture.de/",
"recording_license": "",
"do_not_record": false,
"persons": [
{
"id": 19,
"code": "UTYKWR",
"public_name": "dj-spock",
"biography": "dj-spock",
"answers": []
}
],
"links": [],
"attachments": [],
"answers": []
},
{
"id": 57094,
"guid": "9d5d716b-216e-5794-a9d4-a695473f9558",
"logo": "",
"date": "2023-08-15T21:00:00+02:00",
"start": "21:00",
"duration": "01:00",
"room": "Marktplatz",
"slug": "camp2023-57094-robot-girlfriend-dj-set",
"url": "https://pretalx.c3voc.de/camp2023/talk/MJ9E7F/",
"title": "Robot Girlfriend DJ Set",
"subtitle": "",
"track": "DJ Set",
"type": "Performance",
"language": "en",
"abstract": "DJ set for fun and dancing",
"description": "I'm a queer ex-software developer who does full time worker's rights/representation now (she/they pronouns). I have DJ-ed both at clubs, on the radio, and house parties, and would love to bring an energetic and eclectic DJ set to Camp 2023. I play across genres, including electro, drum-heavy beats, fun basslines, acid, UKG, pop edits, and more. You can see some old mixes on my soundcloud: https://soundcloud.com/robotgirlfriendofficial",
"recording_license": "",
"do_not_record": false,
"persons": [
{
"id": 4108,
"code": "HCSEEP",
"public_name": "Phoebe",
"biography": "Queer, she/they. Some tech but mostly labor organizing and making music, looking at blinky lights. Not finishing projects.",
"answers": []
}
],
"links": [],
"attachments": [],
"answers": []
},
{
"id": 57344,
"guid": "ed0aac8c-64a7-5a1f-92a6-bc570d379e1d",
"logo": "/media/chaos-communication-camp-2023/submissions/AQZXTU/Poi_SymbolImage_52967360674_83a95598f2__ZV3m0Ac.jpg",
"date": "2023-08-15T22:00:00+02:00",
"start": "22:00",
"duration": "01:00",
"room": "Marktplatz",
"slug": "camp2023-57344-poi-light-show",
"url": "https://pretalx.c3voc.de/camp2023/talk/AQZXTU/",
"title": "Poi Light Show",
"subtitle": "",
"track": "Performance",
"type": "Performance",
"language": "en",
"abstract": "Poi: Light painting with music",
"description": "\"Poi\" is Maori, meaning \"balls\". It's a juggling discipline, where two balls on a string are rotated around the player's hands. These Poi are a bit different: the string is replaced by LEDs, allowing to paint with light in the darkness.\r\nAdd some music and basic dancing capabilities into the mix, and you got a party with an elaborate light painting show, as seen at GPN21 and a few other Chaos Events.\r\n\r\nMusic: \"Photonic Conductor\", a studio mix by CouchSofa. \r\n\r\n_[photo taken at GPN21 by Leah Oswald, if you don't see the photo, check this talk at [pretalx](https://pretalx.c3voc.de/camp2023/talk/AQZXTU/) -- if you want to take photos, try long exposure]_",
"recording_license": "",
"do_not_record": true,
"persons": [
{
"id": 4326,
"code": "HHYYEY",
"public_name": "Dave",
"biography": "Ummm ... I like to build and play Poi?",
"answers": []
}
],
"links": [],
"attachments": [],
"answers": []
},
{
"id": 57027,
"guid": "1edddfaf-3d8f-51de-ba3c-17aacfc02e5f",
"logo": "",
"date": "2023-08-15T23:00:00+02:00",
"start": "23:00",
"duration": "01:00",
"room": "Marktplatz",
"slug": "camp2023-57027-psychedelic-disco-world",
"url": "https://pretalx.c3voc.de/camp2023/talk/PARAJS/",
"title": "Psychedelic Disco World",
"subtitle": "",
"track": "DJ Set",
"type": "Performance",
"language": "en",
"abstract": "I'd love to play some psychedelic world and disco music for all the lovely creatures",
"description": "Hi! I go bye the name Franz Fries. I'm digging vinyl since the mid 90s in Berlin's record stores and where ever I am. I started out with hiphop, wich still makes almost half of my ~7000 records collection. I went through Triphop, DnB, Techno, Dubstep, Dub, House and many other stlyes. I love to play between the styles and not stick around to long in one of them. Last years I bought a lot of disco edits, slower music, african music, world music, left field house and things in between. So I'd love to play at CCCamp. I saw 3 Congresses and 2 Camps before and I know one or two of the people there also from occasions like Nation, Fusion, Hedo, Liebebar and of course the above mentioned CCC-Events. \r\nHerzliche Gr\u00fc\u00dfe\r\nFranz",
"recording_license": "",
"do_not_record": false,
"persons": [
{
"id": 4058,
"code": "8R9CNR",
"public_name": "Franz Fries",
"biography": "Born in Leipzig in the early 80s, Berlin citizen since mid 80s. Outside, arts, (sub)cuture, music, people lover.",
"answers": []
}
],
"links": [],
"attachments": [],
"answers": []
},
{
"id": 57639,
"guid": "3bcabbf6-9fd5-5bc1-a793-e8ddd87d43eb",
"logo": "",
"date": "2023-08-16T01:00:00+02:00",
"start": "01:00",
"duration": "03:00",
"room": "Marktplatz",
"slug": "camp2023-57639-silvie",
"url": "https://pretalx.c3voc.de/camp2023/talk/AUBSWB/",
"title": "Silvie",
"subtitle": "",
"track": "DJ Set",
"type": "Performance",
"language": "de",
"abstract": "Silvie",
"description": "",
"recording_license": "",
"do_not_record": false,
"persons": [],
"links": [],
"attachments": [],
"answers": []
}
],
"Milliways": [
{
"id": 57096,
"guid": "3ab19f9e-4fdc-54d8-935a-db7932f35169",
"logo": "",
"date": "2023-08-15T14:00:00+02:00",
"start": "14:00",
"duration": "00:20",
"room": "Milliways",
"slug": "camp2023-57096-levereging-the-use-of-dynamic-instrumentation-for-pentesting-mobile-apps",
"url": "https://pretalx.c3voc.de/camp2023/talk/P8A98M/",
"title": "Levereging the use of dynamic instrumentation for pentesting mobile apps",
"subtitle": "",
"track": "Milliways",
"type": "Short Talk",
"language": "en",
"abstract": "The session proposes a quick overview of Frida, a dynamic instrumentation framework, and how it can be used to enhance our work during the runtime analysis of a mobile application. It will be a walkthrough on how hooking and rewriting functions in runtime may be helpful against anti-reverse engineering measures and SSL pinning mechanisms.",
"description": "",
"recording_license": "",
"do_not_record": true,
"persons": [
{
"id": 4110,
"code": "7KYMGA",
"public_name": "tes",
"biography": "tes is a security researcher & hacktivist from Argentina. She is part of a horizontal collective of hackers and other hacktivist movements in the region.",
"answers": []
}
],
"links": [],
"attachments": [],
"answers": []
},
{
"id": 57244,
"guid": "76104fc3-d657-5734-a969-30a3cd7f2f3d",
"logo": "",
"date": "2023-08-15T14:30:00+02:00",
"start": "14:30",
"duration": "00:45",
"room": "Milliways",
"slug": "camp2023-57244-what-de-fac2-attacking-an-opensource-u2f-device-in-30-minutes-or-less",
"url": "https://pretalx.c3voc.de/camp2023/talk/DA8G9D/",
"title": "What de.fac2? Attacking an opensource U2F device in 30 minutes or less",
"subtitle": "",
"track": "Milliways",
"type": "Talk",
"language": "en",
"abstract": "Hardware FIDO U2F tokens are security devices which are meant to defend user second factor keys from physical and remote attacks.\r\nIn this presentation different security features and implemented by FIDO U2F tokens and how they are meant to protect a user from various attack scenarios.\r\nWe will focus on the open source implementation of FIDO U2F token developed and Common Criteria certified by Federal Office for Information Security (BSI).\r\nHaving access not only to the source code of the token applet, but the certification documents as well gives a unique opportunity of \r\nFinally, a design flaw in the solution is discussed (CVE-2022-33172) and an attack on hardware token security feature will be presented, which could allow an attacker in control of user PC to fake user presence and execute a number of unauthorized sensitive operations.",
"description": "De.fac2 is a Common Criteria (CC) and FIDO certified FIDO U2F Java Card applet developed and certified by Federal Office for Information Security (Bundesamt f\u00fcr Sicherheit in der Informationstechnik).\r\nThis solutions gives a unique opportunity to look at the internals of a FIDO U2F token as well as certification claims and product security features.\r\n\r\nThe presentation introduces the process of identification of the design flaw in the product in under an hour as well as the testing of a vulnerability without access to the actual physical device.\r\n\r\nThe vulnerability was disclosed to the Bundesamt f\u00fcr Sicherheit in der Informationstechnik and addressed in the updated commit\r\nhttps://github.com/BSI-Bund/de.fac2\r\n\r\nThe acknowledged bug was addressed by the developer with the following statement:\r\n\r\nThe following attack scenario was reported to us by Sergei Volokitin: A reset command send by the reader to the card circumvents the user presence check. \r\nFor example, malware on the host PC / smartphone could send a reset command to the reader programmatically. \r\nIt is not possible for the card to distinguish if the reader sent a reset command or if it was physically removed from the reader. \r\nWith reference to this scenario, the Guidance Documentation (AGD) and the Security Target (ST) were updated in July 2022 in a \"Assurance Maintenance\".",
"recording_license": "",
"do_not_record": false,
"persons": [
{
"id": 4236,
"code": "NLE8H3",
"public_name": "Sergei Volokitin",
"biography": "Sergei Volokitin is a security analyst at Riscure in the Netherlands where his work is mostly focused on security evaluation of embedded systems and security testing of mobile devices. He has a number of publications on Java Card platform attacks and conference presentations on hardware security.",
"answers": []
}
],
"links": [],
"attachments": [],
"answers": []
},
{
"id": 57211,
"guid": "35ebe85f-b5e1-5d08-9eaa-73d1855b5a34",
"logo": "",
"date": "2023-08-15T15:30:00+02:00",
"start": "15:30",
"duration": "00:20",
"room": "Milliways",
"slug": "camp2023-57211-introduction-to-att-ck-framework-for-risk-managers-and-threat-analysts",
"url": "https://pretalx.c3voc.de/camp2023/talk/DBESQX/",
"title": "Introduction to ATT&CK framework for risk managers and threat analysts",
"subtitle": "",
"track": "Milliways",
"type": "Short Talk",
"language": "en",
"abstract": "MITRE ATT&CK (Attack Framework among friends) is intimidating sight at first, but is a great tool for risk identification, threat analysis, red teaming, DFIR and security management. Brief introduction to the topic with various examples.",
"description": "",
"recording_license": "",
"do_not_record": false,
"persons": [
{
"id": 4210,
"code": "HX3L3R",
"public_name": "Miikka 'Otter' Saukko",
"biography": "Former technical security practitioner moved to security management to fiddle with risks, policies, controls and standards. \r\nISO27001 Lead Auditor, CTF hobbyist, hackerspace founder, dad, brother, friend.\r\nLoves visiting hackerspaces, chaos angels, lockpicking and network protocols.",
"answers": []
}
],
"links": [],
"attachments": [],
"answers": []
},
{
"id": 57093,
"guid": "d46b1ce3-af03-564f-9496-2fbe0e1ea472",
"logo": "",
"date": "2023-08-15T16:00:00+02:00",
"start": "16:00",
"duration": "00:45",
"room": "Milliways",
"slug": "camp2023-57093-bits-and-bytes-in-microgravity-insights-into-the-hardware-and-software-of-sounding-rockets",
"url": "https://pretalx.c3voc.de/camp2023/talk/CCGRHF/",
"title": "Bits and Bytes in Microgravity: Insights into the hardware and software of sounding rockets",
"subtitle": "",
"track": "Milliways",
"type": "Talk",
"language": "en",
"abstract": "This talk will show you how many interfaces have to communicate in order to fly experiments on a sounding rocket.\r\nWe will give you insights into the procedures and the complexity of a research campaign and the actual flight of the rocket itself.\r\nIn particular, we look at the hardware and software used in the Ground Support Equipment (GSE) and the Service Module (SM) within the rocket.",
"description": "The Mobile Rocket Base (MORABA), a department of DLR's Space Operations and Astronaut Training, allows scientists to conduct experiments under microgravity conditions for up to 15 minutes with almost no interference. However, the sounding rockets used in the campaigns also enable research under the influence of extreme acceleration forces as well as research in the fields of hypersonic and atmospheric physics. We like to give an overview of the basic procedures and the complexity of such a research campaign. In addition, we provide an insight into our work, which involves a lot of in-house development for hardware and software. This includes circut board design, FPGA programming as well as hardware related programming of DSP processors in assembler and C/C++. Additionally, software and hardware for wired and wireless transmission of telemetry and telecommand are developed, as well as software for operating and monitoring the service module and other components before and during flight. On a sketched flight through the atmosphere we will provide many facts and figures about all systems and components. The focus will be on the Ground Support Equipment (GSE) and the Service Module (SM) within the sounding rocket.",
"recording_license": "",
"do_not_record": false,
"persons": [
{
"id": 4106,
"code": "RLHNEJ",
"public_name": "Martin Stoffers",
"biography": "Ich arbeite seit 2017 als wissenschaftlicher Mitarbeiter am DLR. Im April 2023 hat es mich nun zur DLR MORABA in Oberpaffenhofen verschlagen. Dort arbeite ich als Payload- und Software Engineer am Ground Service Equiment (GSE) und dem Service Module (SM). Dem Chaosumfeld bin ich \u00fcber das Eventphone-Team (POC) verbunden. Mehr \u00fcber mich gibt es hier: https://martinstoffers.de",
"answers": []
},
{
"id": 4534,
"code": "3QZDQH",
"public_name": "Jean-Carl Keller",
"biography": "Nach meinem Forschungsmaster an der TH-Augsburg arbeite ich seit 2020 beim DLR in der Mobilen Raketenbasis (MORABA) als \"Servicemodule Engineer\" \u00fcberwiegend in den Bereichen Mechanik und Elektronik. Nebenbei bin ich Gr\u00fcnder des Vereins \"AUXSPACE e.V.\" welcher angewandte Raumfahrtforschung f\u00fcr Studierende der Augsburger Universit\u00e4ten erm\u00f6glichen soll.",
"answers": []
}
],
"links": [],
"attachments": [],
"answers": []
},
{
"id": 57190,
"guid": "d706358d-7c2e-5fc0-b860-26950ee9f7dd",
"logo": "",
"date": "2023-08-15T17:00:00+02:00",
"start": "17:00",
"duration": "01:00",
"room": "Milliways",
"slug": "camp2023-57190-demystifying-esim-technology",
"url": "https://pretalx.c3voc.de/camp2023/talk/APYGMR/",
"title": "Demystifying eSIM Technology",
"subtitle": "",
"track": "Milliways",
"type": "Talk",
"language": "en",
"abstract": "During the past few years, many people have started to use virtualized eSIMs instead of the classic physical chip card SIMs. Behind the scenes, a rather complex universe of protocols, interfaces, cryptographic operations, trust models and business processes are in operation to make this work.\r\n\r\nHowever, like many aspects of cellular technology, the knowledge of the technology behind it is not widely understood. - despite its ferquent use by a large user base. This talk aims to change that, as far as possible in a 45minutes introductory talk.\r\n\r\nAspects covered are:\r\n* What is an eSIM?\r\n* The eUICC as physical \"trusted chip\" inside the phone\r\n* The 3 flavors of eSIM: Consumer, M2M and IoT\r\n* The eSIM cryptographic chain of trust\r\n* The invovled network elements, their purpose, procedures (SM-DP+, SM-SR, LPA/IPA, ...)\r\n\r\nThe talk is a technical talk, and is held in the expectation is that the audience has some basic understanding of networking, cryptography and SIM card technology.",
"description": "",
"recording_license": "",
"do_not_record": false,
"persons": [
{
"id": 4022,
"code": "URMGEF",
"public_name": "Harald Welte",
"biography": "Harald Welte is a recovering Linux Kernel hacker with a history of hacking and developing (mostly open source) hardware, firmware and system-level software. Working in network protocols ever since the 1990s, he has dedicated the last 15 years of his life to spearheading Free and Open Source software in the domain of cellular networks. \r\n\r\nHe has worked extensively on implementations of cellular protocol stacks on virtually any interface at any protocol level from 2G to 4G - most of that in the context of the [Osmocom](https://osmocom.org/) project, which he co-started.\r\n\r\nYou can find more information on the (sadly rather infrequently updated) [blog](https://laforge.gnumonks.org/blog), and the usually more up-to-date fediverse presence at https://chaos.social/@LaF0rge",
"answers": []
}
],
"links": [],
"attachments": [],
"answers": []
},
{
"id": 57559,
"guid": "33d2dc3f-3ab6-551f-bf5c-fc3f8f6fd8b6",
"logo": "/media/camp2023/submissions/C3BVMM/android-chrome-512x512_LqK8yMZ.png",
"date": "2023-08-15T18:15:00+02:00",
"start": "18:15",
"duration": "00:45",
"room": "Milliways",
"slug": "camp2023-57559-how-to-grow-a-flow3r",
"url": "https://pretalx.c3voc.de/camp2023/talk/C3BVMM/",
"title": "How to grow a flow3r",
"subtitle": "",
"track": "Milliways",
"type": "Talk",
"language": "en",
"abstract": "Do you want your flow3r to blossom? This talk will give you all information you need to know: How to assemble it, what to do with it, where to get help and how to write software for it.",
"description": "Music brings us together. Vibrant colors captivate us. The flow3r is an electronic instrument - it turns touch and gesture into sound and light. Its illuminated edge is a mesmerizing accompaniment to its music and serves as a canvas for all manners of light effects. The badge invites you to create art and beauty together.\r\n\r\nWe will talk about what the flow3r is in more detail, how to put it together, how to operate it, what to do with it at camp, how to write software, how to reach the community, how to extend it, etc.\r\n\r\nEveryone who wants a mention of their project related to flow3r: Get in touch with us (@flow3rbadge:chaos.social or #flow3rbadge:events.ccc.de) and we will try to get you into the talk.",
"recording_license": "",
"do_not_record": false,
"persons": [
{
"id": 379,
"code": "XUSLJP",
"public_name": "schneider",
"biography": null,
"answers": []
},
{
"id": 4494,
"code": "FWSA3R",
"public_name": "timonsku",
"biography": "embedded stuff and manufacturing",
"answers": []
},
{
"id": 4495,
"code": "WDZJJC",
"public_name": "q3k",
"biography": "Hacker with too many projects.",
"answers": []
}
],
"links": [],
"attachments": [],
"answers": []
},
{
"id": 57180,
"guid": "296a3f43-5da6-5fe0-a3bf-2856ecbee990",
"logo": "",
"date": "2023-08-15T21:00:00+02:00",
"start": "21:00",
"duration": "00:45",
"room": "Milliways",
"slug": "camp2023-57180-physical-vulnerability-research",
"url": "https://pretalx.c3voc.de/camp2023/talk/ADJX98/",
"title": "Physical Vulnerability Research",
"subtitle": "",
"track": "Milliways",
"type": "Talk",
"language": "en",
"abstract": "Exploring the methodology and exploitation of physical security systems. Locks, access control and alarm systems with real life examples and the practical exploitation thereof. With digital security crossover.",
"description": "",
"recording_license": "",
"do_not_record": false,
"persons": [
{
"id": 4181,
"code": "VWZCKD",
"public_name": "Matt Smith",
"biography": "Matt Smith put his degree in Computer Science to good use as a software developer, before quickly realising he didn't want to do that forever. After exploiting digital systems for fun and profit, the crossover into the family business of locksmithing came naturally and he became the 7th generation to assume this profession. Initially the skills were put to dubious use but then a legitimate career emerged after devoting many years picking what were previously considered unpickable locks, and making tools to do so. \r\n\r\nNow, he does physical security consultancy, training and designs/sells high security lockpicks for professionals. He also designs high security locks, which he thinks are definitely unpickable!",
"answers": []
}
],
"links": [],
"attachments": [],
"answers": []
},
{
"id": 57023,
"guid": "1b092984-7113-508e-9871-d96e74c052f4",
"logo": "/media/chaos-communication-camp-2023/submissions/CJLKAK/bot_oTCUea2.png",
"date": "2023-08-15T22:00:00+02:00",
"start": "22:00",
"duration": "00:45",
"room": "Milliways",
"slug": "camp2023-57023-how-to-survive-getting-ddosed-by-anonymous-cyberberkut-killnet-and-noname057-16-since-2014",
"url": "https://pretalx.c3voc.de/camp2023/talk/CJLKAK/",
"title": "How to survive getting DDoSed by Anonymous, Cyberberkut, Killnet and noname057(16) since 2014",
"subtitle": "",
"track": "Milliways",
"type": "Talk",
"language": "en",
"abstract": "In this presentation, I will talk about how DDoS attacks were carried out generally in the last 9 years and how they innovated since then; I will also present more specific details about attacks against government websites from www.bundestag.de in 2015 to ukraine-wiederaufbauen.de and others in February - August 2023. The talk aims to also entertain, but mostly educate on how to mitigate current attacks, so expect mostly technical, and very few political slides.",
"description": "",
"recording_license": "",
"do_not_record": false,
"persons": [
{
"id": 4051,
"code": "73JSQU",
"public_name": "craig",
"biography": "I've been in system administration for about twenty years, and have lots of experience in the managed webhosting business. I'm hosting government and industry websites and frequently experience DDoS attacks.",
"answers": []
}
],
"links": [],
"attachments": [],
"answers": []
},
{
"id": 57019,
"guid": "6992ebc0-2d0b-5109-adf3-35a319d04ddb",
"logo": "/media/camp2023/submissions/SQ8RKQ/wanted_leihroller_hacker_0lf8c5J.png",
"date": "2023-08-15T23:00:00+02:00",
"start": "23:00",
"duration": "00:45",
"room": "Milliways",
"slug": "camp2023-57019-leihroller-hacken-ein-kasperltheater-",
"url": "https://pretalx.c3voc.de/camp2023/talk/SQ8RKQ/",
"title": "Leihroller hacken. Ein Kasperltheater.",
"subtitle": "",
"track": "Milliways",
"type": "Talk",
"language": "de",
"abstract": "**Tri-tra-trallala der Roller steht jetzt nicht mehr da.**\r\n\r\nWir veranstalten ein original Wiener `Kasperltheater` zum Thema `Leihroller hacken`.\r\n\r\nEnglish subtitles available.",
"description": "CCCasperl und Pezi finden einen kaputten `Leihroller` im Wald und beschliessen das Ding zu zerlegen.\r\n\r\nSie finden dabei nicht nur heraus wie das Alles ganz genau funktioniert, und was man braucht um so einen Roller wieder zum rollen zu bringen.\r\n\r\nSie lernen auf ihrem Abenteuer auch eine MENGE \u00fcber `CANbus`, `Open Source` Tools,`Elektronik` und `Reverse Engineering` generell.\r\n\r\nSie entdecken Plaintextpassw\u00f6rter in der super sicheren Crypto Firmware und erkennen wieder einmal, dass Security by Obscurity keine gute Idee ist.\r\n\r\nDass die `Batterien` eventuell noch f\u00fcr andere Dinge als bl\u00f6des rumrollern taugen k\u00f6nnen, f\u00e4llt den Beiden auch noch ein.\r\n\r\nBei Ihrem Gebastel werden Sie alle m\u00f6glichen und unm\u00f6glichen Ideen ausprobieren und einige komplett unerwartete Dinge lernen.\r\n\r\nUnter Anderem dass diese Rollerfirma eigentlich Ihre komplette Infrastruktur von einem chinesischen Anbieter bezieht der \"Rental Scooter Company as a Service\" anbietet, inklusive Rollerherstellung / Customization, Fleetmanagement und Standort / Kundendaten.\r\n\r\n\r\nEs wird auch ein _Krokodil_ geben und es bekommt auf die _M\u00fctze_.\r\n\r\n\r\n\r\nEnth\u00e4lt regul\u00e4re Kraftausdr\u00fccke, Gewalt, groben Unfug und feinsten Fug.\r\n\r\n**Ein Kasperl Theater f\u00fcr grosse Kinder ab ca 15 oder so** \r\n**(Das ist keine angemessene Kinderunterhaltung.)**",
"recording_license": "",
"do_not_record": false,
"persons": [
{
"id": 4046,
"code": "YWDUKD",
"public_name": "CCCasperl und Pezi",
"biography": "Krawuzi Kapuzi!",
"answers": []
}
],
"links": [],
"attachments": [],
"answers": []
}
],
"Digitalcourage": [
{
"id": 57176,
"guid": "5cbef558-4bd4-5477-8f2d-debede0a3fc8",
"logo": "",
"date": "2023-08-15T14:30:00+02:00",
"start": "14:30",
"duration": "00:20",
"room": "Digitalcourage",
"slug": "camp2023-57176-autonomie-in-waffensystemen",
"url": "https://pretalx.c3voc.de/camp2023/talk/R9CDPK/",
"title": "Autonomie in Waffensystemen",
"subtitle": "",
"track": "Digitalcourage",
"type": "Short Talk",
"language": "de",
"abstract": "Der Vortrag gibt eine Einf\u00fchrung in aktuelle Entwicklungen im Kontext von autonomen Waffensystemen bzw. Autonomie und KI in Waffensystemen. Zudem werden Einblicke in die Problematik von Bias in KI und die damit verbundenen potentiellen Auswirkungen im Kontext von Kriegsf\u00fchrung gegeben. Aus einer R\u00fcstungskontrollperspektive werden die Problematiken hinsichtlich Kontrolle und Regulierung solcher Waffensysteme erl\u00e4utert.",
"description": "",
"recording_license": "",
"do_not_record": false,
"persons": [
{
"id": 4177,
"code": "9YQXLP",
"public_name": "Anja-Liisa Gonsior",
"biography": "Wissenschaftliche Mitarbeiterin, PEASEC",
"answers": []
}
],
"links": [],
"attachments": [],
"answers": []
},
{
"id": 57054,
"guid": "da06d0ba-4c01-5ea7-b982-0d7408212883",
"logo": "",
"date": "2023-08-15T15:00:00+02:00",
"start": "15:00",
"duration": "00:20",
"room": "Digitalcourage",
"slug": "camp2023-57054-a-brief-history-of-the-90-s-crypto-wars-",
"url": "https://pretalx.c3voc.de/camp2023/talk/8ZYMUK/",
"title": "A brief history of the '90's \"Crypto Wars\"",
"subtitle": "",
"track": "Digitalcourage",
"type": "Short Talk",
"language": "en",
"abstract": "Many of us who lived through the time of Phil Zimmerman fighting felony charges are not entirely surprised by today's attacks on end-to-end encryption and other forms of digital privacy. This talk will delve into why we're not surprised, and why we feel so strongly about digital privacy.",
"description": "The '90s (and leading up to it) were a time of uncertainty for many a hacker and phreak. When Bill Clinton came to office the fighting behind the scenes for privacy, and encryption, came to the fore thanks to the widespread availability of Pretty Good Privacy, among other tings. Let's talk about Clipper, ITAR, and multi-year legal bills brought about by a group of beauraucrats",
"recording_license": "",
"do_not_record": false,
"persons": [
{
"id": 4082,
"code": "UJ7FUW",
"public_name": "Pyro",
"biography": "Mainly known as Pyro, also known as dfwinfostudent, and a few other things. Currently residing outside of Frankfurt and working in a data loss prevention group. A frequenter of Dallas Hackers Association from nearly the beginning, and long time volunteer with BSidesDFW",
"answers": []
}
],
"links": [],
"attachments": [],
"answers": []
},
{
"id": 57412,
"guid": "4b88b851-0867-5e1c-90e8-fb8ef9c41a42",
"logo": "",
"date": "2023-08-15T16:45:00+02:00",
"start": "16:45",
"duration": "01:00",
"room": "Digitalcourage",
"slug": "camp2023-57412-selbsthilfegruppe-fr-verwaltungsnahe-menschen-mit-it-background-faxgerteclub-",
"url": "https://pretalx.c3voc.de/camp2023/talk/Z9RVYL/",
"title": "Selbsthilfegruppe f\u00fcr verwaltungsnahe Menschen mit IT-Background (\"Faxger\u00e4teclub\")",
"subtitle": "",
"track": "Digitalcourage",
"type": "Live Workshop",
"language": "en",
"abstract": "Nach dem erfolgreichen Start des Formats auf dem rc3 wird es auch beim Camp wieder eine Verwaltungs-Selbsthilfegruppe geben.",
"description": "Wenn wir \u00fcber Beh\u00f6rden-IT sprechen, dann sprechen wir oft \u00fcber einen zwingend notwendigen Wissensaufbau und die Internalisierung von IT-Kompetenz in der \u00f6ffentlichen Verwaltung. Aber wer sich dann tats\u00e4chlich f\u00fcr einen Job in der Verwaltung entscheidet oder aus der Zivilgesellschaft heraus positiv auf die Verwaltung einwirken will, die:der braucht viel \u00dcberzeugungstalent und oft auch Durchhalteverm\u00f6gen. Aber wir k\u00f6nnen auch viel Positives bewirken.\r\n\r\nWoran scheitert es in der Praxis, wo liegen die strukturellen Probleme und welche Impulse braucht es jetzt aus der Politik?\r\n\r\nWir sprechen \u00fcber unsere Erfahrungen im Alltag in und mit Beh\u00f6rden, dar\u00fcber, was in der Verwaltung alles noch falsch l\u00e4uft und wie wir gemeinsam etwas daran \u00e4ndern k\u00f6nnen. Kommt vorbei uns lasst uns gemeinsam in lockerer Runde ein wenig diskutieren und Pl\u00e4ne schmieden.",
"recording_license": "",
"do_not_record": true,
"persons": [
{
"id": 4243,
"code": "KUX9CG",
"public_name": "Marco",
"biography": "Ich besch\u00e4ftige mich inzwischen seit mehreren Jahren mit der IT der \u00f6ffentlichen Verwaltung. Zun\u00e4chst zivilgesellschaftlich bei Code for Germany und im CCC. Inzwischen auch beruflich in einer Beh\u00f6rde. Beim technischen Design von IT-Systemen blicke ich dabei vor allem auf Aspekte des technischen Datenschutzes und der IT-Sicherheit dieser Systeme und besch\u00e4ftige mich mit den gesellschaftlichen Auswirkungen der IT-Infrastruktur, die wir in Deutschland und der EU gerade aufbauen.",
"answers": []
},
{
"id": 59,
"code": "BSCTSW",
"public_name": "md",
"biography": "md besch\u00e4ftigt sich gerne mit Verwaltungsdigitalisierung, OpenData und anderen wenig erfolgreichen Projekten der Regierung.",
"answers": []
}
],
"links": [],
"attachments": [],
"answers": []
},
{
"id": 57253,
"guid": "640fe20a-9361-575c-8520-c7e6e936eabd",
"logo": "",
"date": "2023-08-15T18:00:00+02:00",
"start": "18:00",
"duration": "00:20",
"room": "Digitalcourage",
"slug": "camp2023-57253-do-we-need-taler-or-does-taler-need-us-",
"url": "https://pretalx.c3voc.de/camp2023/talk/MZK3J8/",
"title": "Do we need Taler or does Taler need us ?",
"subtitle": "",
"track": "Digitalcourage",
"type": "Short Talk",
"language": "en",
"abstract": "As dystopia seems just around the corner with state control and surveillance capitalism wanting to finish closing down on us, GNU Taler might be one of the (hopefully many) reasons to hope that our dreams may soon bring bits of lovable reality. \r\n\r\nWith 2 upcoming Swiss deployments, real payments with Taler will finally be available this coming winter. As online solution for Basel local currency and a few months later as online payment in Swiss Francs.\r\nThat means privacy preserving online payment that doesn't foster illegal activities and micro-payments both become accessible. \r\nA game changer if we (Normale Leute ) use and claim the opportunity, Endlich mal a positive element to bring to debates or policy expos\u00e9s for privacy advocates (of which I am )... a bit of light in the tunnel ?",
"description": "",
"recording_license": "",
"do_not_record": false,
"persons": [
{
"id": 4247,
"code": "UBWVUG",
"public_name": "Marie Walrafen",
"biography": "Crafted a campaign against freeparty repression 20 years ago, bringing the live forces of underground tekno to the social movement to fight back securitarism, I later worked for La Quadrature du Net (GDPR, Net Neutrality).",
"answers": []
}
],
"links": [],
"attachments": [],
"answers": []
},
{
"id": 57119,
"guid": "1ba76b9f-ace2-58e8-9d9f-85b3c6c72889",
"logo": "",
"date": "2023-08-15T21:30:00+02:00",
"start": "21:30",
"duration": "00:45",
"room": "Digitalcourage",
"slug": "camp2023-57119-vereinsgrndung-und-pflege",
"url": "https://pretalx.c3voc.de/camp2023/talk/8SSVU9/",
"title": "Vereinsgr\u00fcndung und Pflege",
"subtitle": "",
"track": "Digitalcourage",
"type": "Talk",
"language": "de",
"abstract": "Wie man in Deutschland einen Verein gr\u00fcndet, und trotzdem Spa\u00df dabei hat. ;)",
"description": "In diesem Talk gibt padeluun einen \u00dcberblick dar\u00fcber, wie man in Deutschland trotz eines komplexen Vereinsgesetzes erfolgreich einen eben solchen gr\u00fcndet, und verr\u00e4t aus der Praxis wie man die t\u00e4gliche Vereinsarbeit organisiert und Strukturen sowie Mitglieder und Funktionstr\u00e4ger bei Laune h\u00e4lt.\r\nDie Erfahrung dazu hat er durch seine Vorstandsarbeit im gemeinn\u00fctzigen Vereine Digitalcourage e.V. gewonnen, den er 1987 noch unter dem seltsamen Namen FoeBuD e.V. mitgegr\u00fcndet hat.",
"recording_license": "",
"do_not_record": false,
"persons": [
{
"id": 393,
"code": "NSTENV",
"public_name": "padeluun",
"biography": "padeluun is one of the founding fathers of Digitalcourage. He experimented with public networked communication as early as the late 1980s. Together with Rena Tangens, he developed concepts on how communication can succeed - and failed grandly in front of the concentrated financial power of the \"internet corporations\", who were able to destroy communication with a lot of money, but clueless as they were (and still are today) could not build anything useful. He is a member of the jury of the BigBrotherAwards, was a named expert of the \"Enqu\u00eate Commission Internet and digital Society of the 17th German Bundestag\" for three years and today throws himself into the Fediverse in a supportive way...",
"answers": []
}
],
"links": [],
"attachments": [],
"answers": []
},
{
"id": 57566,
"guid": "07df4456-0956-51e8-8a96-51cdba5c4d73",
"logo": "",
"date": "2023-08-15T22:30:00+02:00",
"start": "22:30",
"duration": "00:45",
"room": "Digitalcourage",
"slug": "camp2023-57566-wir-mssen-ber-ki-sprechen-trotz-des-hypes",
"url": "https://pretalx.c3voc.de/camp2023/talk/EJBDYN/",
"title": "Wir m\u00fcssen \u00fcber KI sprechen \u2013 trotz des Hypes",
"subtitle": "",
"track": "Digitalcourage",
"type": "Talk",
"language": "de",
"abstract": "Dass wir bald von Superintelligenzen beherrscht werden, die wie ChatGPT Texte generieren, ist unwahrscheinlich. Aber es gibt offene Fragen: zu Wissensgerechtigkeit, Teilhabe und Monopolisierung durch Konzerne.",
"description": "K\u00fcnstliche Intelligenz ist eine Projektionsfl\u00e4che. Jetzt wird alles anders! Dabei ist die Besch\u00e4ftigung damit, wie Maschinen Aufgaben erledigen, von denen wir bisher dachten, dass sie nur Menschen bew\u00e4ltigen k\u00f6nnen, fast so alt wie Computer selbst. Und auch die Probleme damit, wie Technik eingesetzt wird, sind \u00e4hnlich geblieben. Welche Zukunft darf es sein: Gerecht und frei zug\u00e4nglich f\u00fcr alle, oder doch lieber in den H\u00e4nden von wenigen?\r\n\r\nEs gibt offene Fragen: Wer produziert Wissen unter welchen Rahmenbedingungen? Ist das gerecht? Wie k\u00f6nnen wir uns als Menschen um mehr Gerechtigkeit bem\u00fchen und verhindern, dass die Macht der wirtschaftlichen Giganten unter dem Label \"KI\" noch weiter w\u00e4chst? Ein Gedankenansto\u00df zur politischen und gesellschaftlichen Dimension des Hype-Themas der vergangenen Monate.",
"recording_license": "",
"do_not_record": false,
"persons": [
{
"id": 48,
"code": "XS3DF3",
"public_name": "Jens Ohlig",
"biography": null,
"answers": []
}
],
"links": [],
"attachments": [],
"answers": []
}
],
"N:O:R:T:x": [
{
"id": 57281,
"guid": "f89ad084-dbfa-5f02-8dc4-50e8e473df5c",
"logo": "",
"date": "2023-08-15T14:00:00+02:00",
"start": "14:00",
"duration": "00:45",
"room": "N:O:R:T:x",
"slug": "camp2023-57281-missbruchliche-beziehungen-was-knnen-umfeld-und-community-tun-",
"url": "https://pretalx.c3voc.de/camp2023/talk/B98WFM/",
"title": "Missbr\u00e4uchliche Beziehungen - Was k\u00f6nnen Umfeld und Community tun?",
"subtitle": "",
"track": "Nerds der OberRheinischen Tiefebene und der xHain (N\\:O:R:T:x)",
"type": "Talk",
"language": "de",
"abstract": "Missbr\u00e4uchliche Beziehungen, das k\u00f6nnen Beziehungen sein, in denen k\u00f6rperliche oder psychische Gewalt ausge\u00fcbt wird oder in denen ein (deutliches) Machtungleichgewicht besteht. Dieses Machtungleichgewicht kann z.B. begr\u00fcndet sein in finanzieller oder psychischer Abh\u00e4ngigkeit oder auch durch Unterschiede in Alter und/ oder der sozialen Position bedingt.",
"description": "Betroffenen f\u00e4llt es oft schwer, dar\u00fcber zu reden, oder auch sich nur einzugestehen, dass sie in einer solchen Beziehung stecken. Und auch f\u00fcr das Umfeld ist es entsprechend herausfordernd, dies zu erkennen oder anzusprechen.\r\nDer Talk wirft auch einen Blick auf die Mechanismen, die Erkennen und Bearbeiten erschweren - sowohl bei direkt Betroffenen als auch im Umfeld - sowie auf T\u00e4ter_innenstrategien, da deren Kenntnis hilfreich ist, um sie dann besser erkennen und damit umgehen zu k\u00f6nnen.\r\nNicht nur das soziale Umfeld kann unterst\u00fctzen, auch eine Community hat einen Einfluss. Der Talk wird keine Handlungsanleitung zur Verf\u00fcgung stellen, aber Tipps beinhalten, die wiederum in einem anschlie\u00dfenden Workshop vertieft werden k\u00f6nnen.",
"recording_license": "",
"do_not_record": true,
"persons": [
{
"id": 3270,
"code": "WTXR9Z",
"public_name": "buecherwurm",
"biography": "buecherwurm ist in verschiedenen Awareness-Teams aktiv und macht sonst diskriminierungskritische Bildungsarbeit und systemische Beratung. Das Thema besch\u00e4ftigt sie schon seit langem.",
"answers": []
}
],
"links": [],
"attachments": [],
"answers": []
},
{
"id": 57332,
"guid": "1803822d-7afd-595f-b301-9ab13e68f0f3",
"logo": "/media/chaos-communication-camp-2023/submissions/GGTNZH/Tomate-Renate_EFfb4JB.jpg",
"date": "2023-08-15T15:00:00+02:00",
"start": "15:00",
"duration": "00:45",
"room": "N:O:R:T:x",
"slug": "camp2023-57332-gemeinsam-gemse-grtnern-foss-und-shareware-tomaten-im-topf-und-im-beet",
"url": "https://pretalx.c3voc.de/camp2023/talk/GGTNZH/",
"title": "Gemeinsam Gem\u00fcse g\u00e4rtnern! FOSS und Shareware-Tomaten im Topf und im Beet",
"subtitle": "",
"track": "Nerds der OberRheinischen Tiefebene und der xHain (N\\:O:R:T:x)",
"type": "Talk",
"language": "de",
"abstract": "Open Source Tomaten und alte Sorten: Samen gewinnen, Pflanzen erfolgreich z\u00fcchten und untereinander teilen\r\n\r\nDie Superm\u00e4rkte sind voll von Lebensmitteln in Plastikverpackungen, hochverarbeitet und oft um die halbe Welt geschippert. Ich m\u00f6chte eine M\u00f6glichkeit zeigen, wie wir alle gemeinsam etwas tun k\u00f6nnen, ein St\u00fcck davon \u00fcberfl\u00fcssig zu machen und zusammen unsere Lebensmittelversorgung ganz praktisch und sofort verbessern k\u00f6nnen. Ganz nebenbei haben wir dann auch viel leckereres Gem\u00fcse auf dem Teller als aus der Gew\u00e4chshaus-Turbozucht. Ein Talk f\u00fcr Einsteiger*innen!",
"description": "\"Ich hielt es f\u00fcr besser, etwas zu leisten, als nichts zu versuchen weil man nicht alles leisten kann.\" - dieses Zitat von Wilhem von Humboldt steht \u00fcber meinem Talk zur Gem\u00fcsezucht f\u00fcr jedermensch.\r\n\r\nDie geplante Agenda:\r\n\r\n- Was unterscheidet Open Source-S\u00e4mereien von kommerziellen Sorten?\r\n- Samen ernten, Pflanzen aus Resten ziehen... was geht da?\r\n- Topf oder Beet, wo geht das \u00fcberall?\r\n- Wie baut man Beete, macht man selbst D\u00fcnger und zieht ertragreiche Tomatenpflanzen?\r\n- Was macht man, wenn man pl\u00f6tzlich viel zu viele Tomaten hat? ;-)\r\n- Was habt Ihr f\u00fcr Ideen und Erfahrungen mit essbaren Pflanzen oder deren Fr\u00fcchten? Lasst uns den Erfahrungsaustausch gleich weiter f\u00fchren!",
"recording_license": "",
"do_not_record": false,
"persons": [