-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
4475 lines (4018 loc) · 210 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Updated CC Camp Schedule - Cyber Futurism</title>
<style>
body {
background-color: #000000;
/* Black background */
margin: 0;
padding: 0;
}
.table-8bit {
font-family: 'Courier New', monospace;
font-size: 16px;
color: #0FFF00;
/* Bright neon green color */
border-collapse: collapse;
width: 100%;
table-layout: fixed;
/* Fixed layout to ensure full width */
background: linear-gradient(90deg, #0F0F0F 25%, #1A1A1A 75%);
/* Dark gradient background */
}
.table-8bit th,
.table-8bit td {
border: 2px solid #00FFFF;
/* Neon cyan border */
padding: 8px;
text-align: left;
overflow: hidden;
/* Hide overflow content */
text-overflow: ellipsis;
/* Display ellipsis for overflow content */
}
.table-8bit .duration {
font-size: 20px;
color: #FF00FF;
/* Neon magenta color for duration */
}
.table-8bit .communal {
font-style: italic;
color: #FFAA00;
/* Neon orange color for communal note */
}
.table-8bit tr:nth-child(even) {
background-color: #1A1A1A;
/* Alternate row color */
}
</style>
</head>
<body>
<table class="table-8bit">
<tr>
<th>Title</th>
<th>Abstract</th>
<th>Speakers</th>
<th>Track</th>
<th>Room</th>
<th>Duration</th>
</tr>
<tr>
<td>Chaos Computer Club Chill Camp Crew Allstars</td>
<td>Let's start with our crew!</td>
<td></td>
<td>DJ Set</td>
<td>Chill Lagune am Herzbergstich</td>
<td>
<div class='duration'>3.00 h</div>
</td>
</tr>
<tr>
<td>Chaos Communication Camp 2023 Opening</td>
<td>Welcome to the show</td>
<td>snoopy, leona</td>
<td>CCC</td>
<td>Marktplatz</td>
<td>
<div class='duration'>0.75 h</div>
</td>
</tr>
<tr>
<td colspan="6">Lunch</td>
</tr>
<tr>
<td colspan="6">Lunch break (Communal)</td>
</tr>
<tr>
<td colspan="6">Lunch</td>
</tr>
<tr>
<td>Surface Mount Electronics Assembly for Terrified Beginners (Day 1)</td>
<td>In this 2h workshop, I will teach you to work with the tiny components that modern electronic devices
are made of. We will assemble an electronic kitten, that purrs when touched correctly, and hisses when
touched wrong. It will work, and is guaranteed to remove your fear of hand-assembling surface mount
designs.</td>
<td>Kliment</td>
<td>Milliways</td>
<td>Hardware Hacking Village</td>
<td>
<div class='duration'>2.00 h</div>
</td>
</tr>
<tr>
<td>Missbräuchliche Beziehungen - Was können Umfeld und Community tun? (Communal)</td>
<td>Missbräuchliche Beziehungen, das können Beziehungen sein, in denen körperliche oder psychische Gewalt
ausgeübt wird oder in denen ein (deutliches) Machtungleichgewicht besteht. Dieses Machtungleichgewicht
kann z.B. begründet sein in finanzieller oder psychischer Abhängigkeit oder auch durch Unterschiede in
Alter und/ oder der sozialen Position bedingt.</td>
<td>buecherwurm</td>
<td>Nerds der OberRheinischen Tiefebene und der xHain (N\:O:R:T:x)</td>
<td>Nerds der OberRheinischen Tiefebene und der xHain (N:O:R:T:x)</td>
<td>
<div class='duration'>0.75 h</div>
</td>
</tr>
<tr>
<td>Levereging the use of dynamic instrumentation for pentesting mobile apps</td>
<td>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.</td>
<td>tes</td>
<td>Milliways</td>
<td>Milliways</td>
<td>
<div class='duration'>0.33 h</div>
</td>
</tr>
<tr>
<td>Mogreens (DJ)</td>
<td>DJ Mogreens ist ein Beweis für die universelle Sprache der Musik, die physische Barrieren und kulturelle
Grenzen überwindet. Und solange die Gezeiten die Melodien von Gilles Petersons Musik weitertragen, wird
DJ Mogreens ein rätselhafter Hüter der Unterwassersymphonie bleiben und alle, die ihm begegnen, dazu
inspirieren, die Harmonien anzunehmen, die uns alle verbinden.
https://soundcloud.com/mogreens</td>
<td></td>
<td>DJ Set</td>
<td>Chill Lagune am Herzbergstich</td>
<td>
<div class='duration'>3.00 h</div>
</td>
</tr>
<tr>
<td>Networking Hacking Workshop</td>
<td>Come learn how to hack networks without needing to piss off your housemates, local coffee shop, or the
Feds! Bring your laptop and by the end of this workshop, everyone can walk away having intercepted some
packets and popped some reverse shells.</td>
<td>subgraf</td>
<td>Milliways</td>
<td>Milliways Workshop Dome</td>
<td>
<div class='duration'>2.00 h</div>
</td>
</tr>
<tr>
<td>batbiz</td>
<td>batbiz is a music project based on bat signal recordings from berlin and mexico, braindance made with
tracker</td>
<td>Jarkko</td>
<td>Live Music</td>
<td>Marktplatz</td>
<td>
<div class='duration'>1.00 h</div>
</td>
</tr>
<tr>
<td>What de.fac2? Attacking an opensource U2F device in 30 minutes or less</td>
<td>Hardware FIDO U2F tokens are security devices which are meant to defend user second factor keys from
physical and remote attacks.
In this presentation different security features and implemented by FIDO U2F tokens and how they are
meant to protect a user from various attack scenarios.
We will focus on the open source implementation of FIDO U2F token developed and Common Criteria
certified by Federal Office for Information Security (BSI).
Having access not only to the source code of the token applet, but the certification documents as well
gives a unique opportunity of
Finally, 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.</td>
<td>Sergei Volokitin</td>
<td>Milliways</td>
<td>Milliways</td>
<td>
<div class='duration'>0.75 h</div>
</td>
</tr>
<tr>
<td>B&B Opening</td>
<td>Wir eröffnen unsere Bühne zum Chaos Communication Camp</td>
<td>bonnie, Tobias Diekershoff, Mathias Jud, Gilbert, Andreas Bräu</td>
<td>Bits & Bäume</td>
<td>Bits & Bäume</td>
<td>
<div class='duration'>0.33 h</div>
</td>
</tr>
<tr>
<td>Autonomie in Waffensystemen</td>
<td>Der Vortrag gibt eine Einführung 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ührung gegeben. Aus einer
Rüstungskontrollperspektive werden die Problematiken hinsichtlich Kontrolle und Regulierung solcher
Waffensysteme erläutert.</td>
<td>Anja-Liisa Gonsior</td>
<td>Digitalcourage</td>
<td>Digitalcourage</td>
<td>
<div class='duration'>0.33 h</div>
</td>
</tr>
<tr>
<td>What prototypes do we need for a sustainable future?</td>
<td>## What
Play a round of our FOSS funding programme with us and test our new focus "sufficiency". Since 2020, we
support open source public-interest-tech projects in Switzerland with [our Prototype
Fund](https://prototypefund.opendata.ch/).
## Why
Global greenhouse gas emissions continue to rise, sufficiency and systemic innovation must also play a
central role in the context of digitalisation. From 2023/24 onwards, we will therefore fund two projects
per year in the field of "sufficiency" to anchor the topic even more strongly in our funding
methodology.
## How
Together with you, we want to take a closer look at where technology can help solve problems (and where
it can't). We want to collect problem areas, existing projects and project ideas and, with the help of
your international perspective, uncover potentials and gaps. The goal is to come closer to answering the
question of how we as a society can promote sufficiency with digital technology and how the digital
world itself can become more sufficiency-oriented.</td>
<td>Florin Hasler, Christian Hansen</td>
<td>Bits & Bäume</td>
<td>Bits&Bäume Workshops</td>
<td>
<div class='duration'>1.50 h</div>
</td>
</tr>
<tr>
<td>A brief history of the '90's "Crypto Wars"</td>
<td>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.</td>
<td>Pyro</td>
<td>Digitalcourage</td>
<td>Digitalcourage</td>
<td>
<div class='duration'>0.33 h</div>
</td>
</tr>
<tr>
<td>Ein nerdiger Blick auf die zivile Seenotrettung der Mare*Go</td>
<td>Was ist zivile Seenotrettung und welche politischen und technischen Herausforderungen gibt es dabei. Wir
werfen mit dem Team der Mare*go ein Blick auf die Details.</td>
<td>Eric Sesterhenn, Maarie Becker, Raphael</td>
<td>Bits & Bäume</td>
<td>Bits & Bäume</td>
<td>
<div class='duration'>0.75 h</div>
</td>
</tr>
<tr>
<td>Gemeinsam Gemüse gärtnern! FOSS und Shareware-Tomaten im Topf und im Beet (Communal)</td>
<td>Open Source Tomaten und alte Sorten: Samen gewinnen, Pflanzen erfolgreich züchten und untereinander
teilen
Die Supermärkte sind voll von Lebensmitteln in Plastikverpackungen, hochverarbeitet und oft um die halbe
Welt geschippert. Ich möchte eine Möglichkeit zeigen, wie wir alle gemeinsam etwas tun können, ein Stück
davon überflüssig zu machen und zusammen unsere Lebensmittelversorgung ganz praktisch und sofort
verbessern können. Ganz nebenbei haben wir dann auch viel leckereres Gemüse auf dem Teller als aus der
Gewächshaus-Turbozucht. Ein Talk für Einsteiger*innen!</td>
<td>Bettina Neuhaus</td>
<td>Nerds der OberRheinischen Tiefebene und der xHain (N\:O:R:T:x)</td>
<td>Nerds der OberRheinischen Tiefebene und der xHain (N:O:R:T:x)</td>
<td>
<div class='duration'>0.75 h</div>
</td>
</tr>
<tr>
<td>Solder a pathlighter PCB badge! (Day 1)</td>
<td>Solder your own pathlighter badge to illuminate your surroundings at night.</td>
<td>Darcy Neal, Claire Cassidy</td>
<td>Milliways</td>
<td>Hardware Hacking Village</td>
<td>
<div class='duration'>1.50 h</div>
</td>
</tr>
<tr>
<td>Introduction to ATT&CK framework for risk managers and threat analysts</td>
<td>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.</td>
<td>Miikka 'Otter' Saukko</td>
<td>Milliways</td>
<td>Milliways</td>
<td>
<div class='duration'>0.33 h</div>
</td>
</tr>
<tr>
<td>Bits and Bytes in Microgravity: Insights into the hardware and software of sounding rockets</td>
<td>This talk will show you how many interfaces have to communicate in order to fly experiments on a
sounding rocket.
We will give you insights into the procedures and the complexity of a research campaign and the actual
flight of the rocket itself.
In particular, we look at the hardware and software used in the Ground Support Equipment (GSE) and the
Service Module (SM) within the rocket.</td>
<td>Martin Stoffers, Jean-Carl Keller</td>
<td>Milliways</td>
<td>Milliways</td>
<td>
<div class='duration'>0.75 h</div>
</td>
</tr>
<tr>
<td>Munteres Waffelbacken</td>
<td>Auf der Fireshonksbühne am RC3 haben sich Erklärhai zusammen
mit hexchen und padeluun zu einer Muntere Abendunterhaltung
getroffen und Angekündigt, sich am Chaos Communication Camp
wieder zu treffen.
Es wird gemeinsam Waffelgebacken und übers Waffelbacken
philosophiert.</td>
<td>erklärhai, L3D, padeluun, hexchen</td>
<td>Entertainment</td>
<td>Marktplatz</td>
<td>
<div class='duration'>1.00 h</div>
</td>
</tr>
<tr>
<td>A visually impaired perspective on technology</td>
<td>Disabled people are often forgotten about and dismissed during the development of products. And no
matter how much you think you know about accessibility, there is always more to learn. I encourage you
to take a step to broaden your horizons and learn about the different ways people can interact with the
technology you use every day. In this talk, I will be talking about the difficulties I face interacting
with technology as a visually impaired person and touch on some of the ways that things could be better.
</td>
<td>AJ Hamilton</td>
<td>Bits & Bäume</td>
<td>Bits & Bäume</td>
<td>
<div class='duration'>0.08 h</div>
</td>
</tr>
<tr>
<td>Repair Café (Communal)</td>
<td>At camp (and not just there), stuff tends to break. Let's fix it together!</td>
<td>Fraxinas</td>
<td>Nerds der OberRheinischen Tiefebene und der xHain (N\:O:R:T:x)</td>
<td>Nerds der OberRheinischen Tiefebene und der xHain (N:O:R:T:x)</td>
<td>
<div class='duration'>1.00 h</div>
</td>
</tr>
<tr>
<td>The Nix Phone and the end of Android</td>
<td>We can replace the operating system of an Android phone when we have the necessary hardware drivers.
Using NixOS as the operating system allows us to reliably recompile most of the modern software that we
rely on for the mobile operating system to get the benefits of using real applications instead of just
the limited capabilities of mobile apps. For example, programs like databases, webservices, CAD,
compilers, image processing can run natively on the phone when you get rid of the Android barrier that
makes these impossible to implement without a total rewrite. The size of the screen is not the problem
because you can cast it to a monitor, and useful embedded computers often don't have their own screens.
</td>
<td>Matthew Croughan</td>
<td>Bits & Bäume</td>
<td>Bits & Bäume</td>
<td>
<div class='duration'>0.08 h</div>
</td>
</tr>
<tr>
<td>Chaotischer Catalysator Stipendien - Was ist das? Wie bewerbe ich mich?</td>
<td>Mit dem “Chaotischen Catalysator Stipendien #CCS” werden Stipendien für Masterarbeiten vergeben die sich
die Informationstechnologien und ihren Einfluss auf die Gesellschaft genauer anschauen. Was das konkret
bedeutet und wie man sich bewerben kann, wird hier kurz zusammengefasst.</td>
<td>scammo</td>
<td>Bits & Bäume</td>
<td>Bits & Bäume</td>
<td>
<div class='duration'>0.08 h</div>
</td>
</tr>
<tr>
<td>Hackerspace server co-location</td>
<td>How to provide co-location services for small member servers.</td>
<td>a5n / Asbjørn, Oliver Taubenheim</td>
<td>Bits & Bäume</td>
<td>Bits & Bäume</td>
<td>
<div class='duration'>0.08 h</div>
</td>
</tr>
<tr>
<td>Online selling without internet connection</td>
<td>Modern buyers enjoy the convenience of digital payments, but not all
points of sale always have an Internet connection. Trusting the buyer’s
device to honestly report that a payment was definitively made puts merchant’s revenue at risk. We
present an inexpensive and usable solution for merchants to verify that a buyer correctly completed a
payment even when the point of sale is offline.</td>
<td>sebasjm</td>
<td>Bits & Bäume</td>
<td>Bits & Bäume</td>
<td>
<div class='duration'>0.08 h</div>
</td>
</tr>
<tr>
<td>Decent Patterns: an Open UX Library for Decentralisation</td>
<td>Tested UX patterns can inform and support the development of decentralised technologies and lower the
barrier to entry.</td>
<td>Eileen Wagner</td>
<td>Bits & Bäume</td>
<td>Bits & Bäume</td>
<td>
<div class='duration'>0.33 h</div>
</td>
</tr>
<tr>
<td>Selbsthilfegruppe für verwaltungsnahe Menschen mit IT-Background ("Faxgeräteclub")</td>
<td>Nach dem erfolgreichen Start des Formats auf dem rc3 wird es auch beim Camp wieder eine
Verwaltungs-Selbsthilfegruppe geben.</td>
<td>Marco, md</td>
<td>Digitalcourage</td>
<td>Digitalcourage</td>
<td>
<div class='duration'>1.00 h</div>
</td>
</tr>
<tr>
<td>Demystifying eSIM Technology</td>
<td>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.
However, 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.
Aspects covered are:
* What is an eSIM?
* The eUICC as physical "trusted chip" inside the phone
* The 3 flavors of eSIM: Consumer, M2M and IoT
* The eSIM cryptographic chain of trust
* The invovled network elements, their purpose, procedures (SM-DP+, SM-SR, LPA/IPA, ...)
The 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.</td>
<td>Harald Welte</td>
<td>Milliways</td>
<td>Milliways</td>
<td>
<div class='duration'>1.00 h</div>
</td>
</tr>
<tr>
<td>To Name is to Own - Autonomous Name Spaces, Verifiable Identities, Assets and Services at the Edge</td>
<td>With a lightweight method of using the DNS trust root, decentralised communities can establish and
self-manage secure hierarchies of trust for identities, assets and distributed services. This can be
deployed outside the data centre monopoly and into the decentralised and local infrastructures at the
network edge for complete autonomy with minimal resources and management. Why use blockchains with
eternal history and ever increasing storage and resource requirements, when you can leverage and
liberate the most highly distributed network service in existence?</td>
<td>Adam 'vortex' Burns</td>
<td>Bits & Bäume</td>
<td>Bits&Bäume Workshops</td>
<td>
<div class='duration'>1.00 h</div>
</td>
</tr>
<tr>
<td>RFID Exploration Workshop</td>
<td>RFID-like technologies are becoming pervasive, but traditionally have not been very open or
experimenter-friendly. In the past few years, a growing variety of hardware and software tools have been
enabling open-source experimenters to interact with contactless devices in a new way.
In this workshop, we:
- Show some common tag types and demonstrate ways of identifying them
- Describe the very cheap/common Mifare Classic chip type and protocol
- Crack the secret keys inside a Mifare Classic card, and clone the content onto a copied card
- Have a cute, beepy badge reader to test cloned tags with; lights and sound will show you if your clone
worked
Participants will:
- Learn some RFID basics, learn some UART (Serial Port) basics
- (With the PN532 boards) Solder on through-hole header pins
- Download and run open source software to control the hardware (works best on Linux; best-effort
support for MacOS and Windows/WSL)
- Crack the "secret" unknown keys of a provided card, dumping it to a file
- Write the dump file to a new card, effectively cloning the original card
No novel research or new information will be presented -- this workshop is aimed at empowering more
people to interact and experiment with the devices that surround us.
Seasoned RFID hackers are welcome to join in and hang out.</td>
<td>jof</td>
<td>Milliways</td>
<td>Hardware Hacking Village</td>
<td>
<div class='duration'>2.00 h</div>
</td>
</tr>
<tr>
<td>DJ Petroschi</td>
<td>https://soundcloud.com/darkrealdark/petroschi-fusion-roter-platz-29062019</td>
<td></td>
<td>DJ Set</td>
<td>Chill Lagune am Herzbergstich</td>
<td>
<div class='duration'>2.00 h</div>
</td>
</tr>
<tr>
<td>How To Survive Being Sold to Oracle</td>
<td>Two LibreOffice founders talking about the social and tech aspects, for keeping a 30 year old code base
not alive, but the project & community around it thriving</td>
<td>Thorsten Behrens</td>
<td>Bits & Bäume</td>
<td>Bits & Bäume</td>
<td>
<div class='duration'>0.75 h</div>
</td>
</tr>
<tr>
<td>Demystifying AI (Communal)</td>
<td>Der Vortrag "Demystifying AI" soll den Zuhörerinnen eine fundierte und verständliche Einführung in das
Thema Artificial Intelligenz (AI) bieten. Der Erfolg von ChatGPT hat den Eindruck erweckt, dass AI
langsam den Menschen ersetzen kann. Zusätzlich haben die großen Player ein großes Interesse daran AI als
eine schwierige und komplexe Technologie darzustellen. Mit diesem Talk trete ich diesem Trend entgegen
und blicke hinter die Kulissen des Maschinellen Lernens. Das Ziel des Talks ist es, die Grundlagen des
Maschinellen Lernens zu erklären, da dies die aktuelle Form der AI ist, die wir momentan nutzen.
Zusätzlich möchte ich versuchen, den schwer verständlichen Jargon aufzubrechen und damit besser greifbar
zu machen.</td>
<td>jate</td>
<td>Nerds der OberRheinischen Tiefebene und der xHain (N\:O:R:T:x)</td>
<td>Nerds der OberRheinischen Tiefebene und der xHain (N:O:R:T:x)</td>
<td>
<div class='duration'>0.75 h</div>
</td>
</tr>
<tr>
<td>Design a circuit board with KiCad (Day 1)</td>
<td>Participants will learn the complete workflow of creating a circuit board with KiCad. At the end of the
workshop, you will have a designed PCB that blinks some LEDs and is ready for manufacturing. No prior
experience is required, basic electronics knowledge is useful.</td>
<td>Carsten Presser</td>
<td>Milliways</td>
<td>Milliways Workshop Dome</td>
<td>
<div class='duration'>1.50 h</div>
</td>
</tr>
<tr>
<td>Using LoRa without Infrastructure for Decentralized Communication</td>
<td>LoRa is a radio communication technique using license-free frequency bands, allowing small data
transmissions over hundreds of meters or even kilometers. It's mostly known for LoRaWAN setups,
requiring some managed infrastructure.
However, LoRa can also be used directly to transmit packets outside of LoRaWAN's IoT scope over LoRa's
physical layer, LoRa PHY. This workshop will dive into the possibilities of low-cost, long-range LoRa
PHY appliances based on cheap microcontroller based modems. As a project, we will develop a small
LoRa-based chat system to broadcast messages.</td>
<td>gh0st, oxzi, JoHo</td>
<td>Bits & Bäume</td>
<td>Bits&Bäume Workshops</td>
<td>
<div class='duration'>2.00 h</div>
</td>
</tr>
<tr>
<td>Do we need Taler or does Taler need us ?</td>
<td>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.
With 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.
That means privacy preserving online payment that doesn't foster illegal activities and micro-payments
both become accessible.
A game changer if we (Normale Leute ) use and claim the opportunity, Endlich mal a positive element to
bring to debates or policy exposés for privacy advocates (of which I am )... a bit of light in the
tunnel ?</td>
<td>Marie Walrafen</td>
<td>Digitalcourage</td>
<td>Digitalcourage</td>
<td>
<div class='duration'>0.33 h</div>
</td>
</tr>
<tr>
<td>Fiiiiieeeep! Mic-Training für Speaker*innen: Wie Mensch mit einem Mikrofon auf der Bühne umgeht.</td>
<td>Deine Message ist wichtig und es sollen dich alle gut verstehen! Nicht hilfreich: Wenn es die ganze Zeit
fiiiiiiiieeeeept!
Der Umgang mit einem Mikrofon auf der Bühne ist eigentlich ganz einfach - wenn Mensch ein paar Dinge
beachtet und geübt hat. Um die geht es beim Mic-Training für Speaker*innen auf der Camp Bühne mit
producer/engineer 'trummerschlunk'.
Danach weißt du: Warum hältst 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übt.
--- english ---
Your message is important and everyone should understand you well! What’s certainly not helpful: a
constant beeeeeeeeeep!
Handling 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.’
You 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!</td>
<td>trummerschlunk</td>
<td>Entertainment</td>
<td>Marktplatz</td>
<td>
<div class='duration'>1.00 h</div>
</td>
</tr>
<tr>
<td>Sharing the power of appreciation: Celebrating 'I Love Free Software Day'</td>
<td>In the realm of Free Software, expressing gratitude towards Free Software contributors often goes
unnoticed. The "I Love Free Software Day" (https://ilovefs.org) provides a platform for individuals and
organisations to do exactly this, showing appreciation. But it is crucial to recognize that our
appreciation for Free Software should extend far beyond this single day. This talk highlights the
significance of the "I Love Free Software Day" as a platform for expressing support, love, and gratitude
towards the developers and contributors who make Free Software possible.
Throughout the presentation, we will showcase memorable moments and successful initiatives from past
celebrations, demonstrating the collective efforts to acknowledge and honor the impact of Free Software.
We will discuss ideas and strategies for making the upcoming "I Love Free Software Day" even more
remarkable.
However, it is essential to emphasize that our expressions of love and support for Free Software should
not be limited to just one day. While the "I Love Free Software Day" serves as a catalyst for
celebration, it should inspire us to continue demonstrating our gratitude throughout the year. We will
explore ways to incorporate ongoing appreciation into our daily lives, such as contributing to Free
Software projects, advocating for their importance, and recognizing the efforts of developers and
contributors regularly also in a financial way.
By extending our appreciation beyond a single day, we can cultivate a culture of continuous support for
Free Software. We invite everyone interested in Free Software to join us in this endeavor, as we strive
to create an environment where gratitude and acknowledgment become integral parts of our interactions
within the Free Software community.
Let us embrace the "I Love Free Software Day" (https://ilovefs.org) as a starting point, a reminder of
the significance of Free Software, and a call to action to express our love and support throughout the
year. Together, we can build a community that values and appreciates the tireless efforts of Free
Software developers and contributors, making a lasting impact on the future of software freedom.</td>
<td>bonnie</td>
<td>Bits & Bäume</td>
<td>Bits & Bäume</td>
<td>
<div class='duration'>0.33 h</div>
</td>
</tr>
<tr>
<td>Cosmic Connectivity: Starlink, Satellite Swarms, and the Hackers' Final Frontier (Communal)</td>
<td>As the boundaries of connectivity expand beyond the earth's atmosphere, with pioneering ventures like
SpaceX's Starlink leading the way, we enter an era of extraordinary potential and novel challenges. This
talk will delve deep into the technological advances, system designs, and emerging cybersecurity
concerns of satellite internet constellations. It promises to be an eye-opening exploration of our
shared cybernetic future that beckons us to the stars.</td>
<td>Oliver Germer</td>
<td>Nerds der OberRheinischen Tiefebene und der xHain (N\:O:R:T:x)</td>
<td>Nerds der OberRheinischen Tiefebene und der xHain (N:O:R:T:x)</td>
<td>
<div class='duration'>0.75 h</div>
</td>
</tr>
<tr>
<td>How to grow a flow3r</td>
<td>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.</td>
<td>schneider, timonsku, q3k</td>
<td>Milliways</td>
<td>Milliways</td>
<td>
<div class='duration'>0.75 h</div>
</td>
</tr>
<tr>
<td>SCION for a greener Internet?</td>
<td>The SCION Internet architecture empowers users to chose which paths their packets take through the
Internet. How does this work? How does this help? Will it be enough?</td>
<td>benthor</td>
<td>Bits & Bäume</td>
<td>Bits & Bäume</td>
<td>
<div class='duration'>0.33 h</div>
</td>
</tr>
<tr>
<td colspan="6">Dinner</td>
</tr>
<tr>
<td>DJ Beh & BarbNerdy</td>
<td>Chill-Musik und schöne DownBeats:
DJ Beh:
Anfang der 2010er mit einer Wobble-Bass Plattensammlung begonnen, weil es sonst immer nur Techno zum
Frühstück gab.
Später ins Chill abgerutscht und viel Bass behalten, Hip-Hop auch.
Die meiste Zeit Vinyl, weil was analoges machen auch mal ganz geil ist.
Ich chille gerne länger.
https://soundcloud.com/beh2342
DJ BarbNerdy:
Schon lang dabei und seit einiger Zeit auch im Chaos unterwegs. Als Teil der Chill-Out Crew aber auch
sonst ziemlich umtriebig, wenns um die gepflegt gebrochen Beats geht.
Linktree: https://linktr.ee/barbnerdy
Soundcloud: https://soundcloud.com/barbnerdy/tracks
Und diesmal im Doppelpack, neudeutsch auch Back2Back genannt. Musikalisch gefunkt hat es auf der Monkey
Stage auf dem camp 2019, wo wir hintereinander gespielt hatten und uns sofort in unsere Musik vercrusht
haben.. :-)</td>
<td></td>
<td>Performance</td>
<td>Chill Lagune am Herzbergstich</td>
<td>
<div class='duration'>3.00 h</div>
</td>
</tr>
<tr>
<td>irq7</td>
<td>Chiptunes! irq7 performt 8Bit Musik am Gameboy. Tanzbar und irgendwo zwischen Electro, Drum & Bass, und
Breakbeats.</td>
<td>irq7</td>
<td>Live Music</td>
<td>Marktplatz</td>
<td>
<div class='duration'>1.00 h</div>
</td>
</tr>
<tr>
<td colspan="6">Evening meal (Communal)</td>
</tr>
<tr>
<td colspan="6">Dinner</td>
</tr>
<tr>
<td>#clubsAREculture</td>
<td>Die Allianz #clubsAREculture setzt sich dafür 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ützen? Müssen althergebrachte Kulturdefinitionen überdacht werden? Und welche Kräfte gilt
es zu bündeln, damit Clubkultur auch künftig bestehen und gedeihen kann?</td>
<td>dj-spock</td>
<td>CCC</td>
<td>Marktplatz</td>
<td>
<div class='duration'>0.75 h</div>
</td>
</tr>
<tr>
<td>TV broadcast Technik show and tell</td>
<td>Wer einmal hinter die Kulissen einer Fernsehproduktion schauen konnte oder ein Studio von innen gesehen
hat,
wird sich schonmal gefragt haben "Warum sind diese Kameras und Objektive eigentlich so riesig. Und was
machen diese hunderten an Tasten da eigentlich? Und warum haben die an der Kamera eigentlich alle
Kopfhörer auf?"
Wir geben einen Einblick warum TV-Technik so ist wie sie ist und warum die Geräte auch heute noch so
unhandlich sind.
Dazu bringen wir ein kleines Setup mit aktueller und etwas angestaubter Technik mit und geben
Gelegenheit zum Angucken, Ausprobieren und Anfassen.</td>
<td>Dampfkadse, Andreas Lang</td>
<td>Milliways</td>
<td>Hardware Hacking Village</td>
<td>
<div class='duration'>1.00 h</div>
</td>
</tr>
<tr>
<td>Pick and Pain. Oder: Wie oft man innerhalb eines Projektes scheitern kann. (Communal)</td>
<td>Ein humoristischer Vortrag darüber, wie wir eine Pick and Place Maschine gebaut haben und was dabei
alles schief gegangen ist.</td>
<td>Mona Werling, Casartar</td>
<td>Nerds der OberRheinischen Tiefebene und der xHain (N\:O:R:T:x)</td>
<td>Nerds der OberRheinischen Tiefebene und der xHain (N:O:R:T:x)</td>
<td>
<div class='duration'>0.75 h</div>
</td>
</tr>
<tr>
<td>Physical Vulnerability Research</td>
<td>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.
</td>
<td>Matt Smith</td>
<td>Milliways</td>
<td>Milliways</td>
<td>
<div class='duration'>0.75 h</div>
</td>
</tr>
<tr>
<td>Robot Girlfriend DJ Set</td>
<td>DJ set for fun and dancing</td>
<td>Phoebe</td>
<td>DJ Set</td>
<td>Marktplatz</td>
<td>
<div class='duration'>1.00 h</div>
</td>
</tr>
<tr>
<td>Panel: How to fund Open-Source Projects</td>
<td>This panel discusses and give insights into the funding of open-source projects. Representatives of
funders and experienced fundees present their funding concepts, opportunities and motivations. The panel
will reflect lessons learned and answer questions from the audience.
Participants:
- Marie Kreil, Prototype Fund
- Tara Tarakiyee, Sovereign Tech Fund
- Zenna @zelf, Next Generation Internet (NGI)
- Viraaj Akuthota, Tech Solutions for Human Rights
- holger krekel, Delta Chat co-ordinator
- Moderation: Mathias Jud</td>
<td>Mathias Jud, Viraaj Akuthota, Marie Kreil, Tara Tarakiyee, holga, Zenna @zelf</td>
<td>Bits & Bäume</td>
<td>Bits & Bäume</td>
<td>
<div class='duration'>0.75 h</div>
</td>
</tr>
<tr>
<td>Vereinsgründung und Pflege</td>
<td>Wie man in Deutschland einen Verein gründet, und trotzdem Spaß dabei hat. ;)</td>
<td>padeluun</td>
<td>Digitalcourage</td>
<td>Digitalcourage</td>
<td>
<div class='duration'>0.75 h</div>
</td>
</tr>
<tr>
<td>The Art of Heißkleber (Communal)</td>
<td>Was geht alles mit Heißkleber? Vieles! In diesem praxisorientierten Vortrag werden wir Live und
unvorbereitet Einsatzmöglichkeiten von Heißkleber ausprobieren. Vielleicht finden wir versehentlich auch
eine vorgesehene Anwendung.</td>
<td>margau, Jadyn</td>
<td>Nerds der OberRheinischen Tiefebene und der xHain (N\:O:R:T:x)</td>
<td>Nerds der OberRheinischen Tiefebene und der xHain (N:O:R:T:x)</td>
<td>
<div class='duration'>0.75 h</div>
</td>
</tr>
<tr>
<td>How to survive getting DDoSed by Anonymous, Cyberberkut, Killnet and noname057(16) since 2014</td>
<td>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.</td>
<td>craig</td>
<td>Milliways</td>
<td>Milliways</td>
<td>
<div class='duration'>0.75 h</div>
</td>
</tr>
<tr>
<td>Jacky Noise & Peter Kirn</td>
<td>Jacky Noise and Peter Kirn are each leaders in community building, knowledge exchange, and musicianship
in electronic instruments. Jacky is co-founder of the Berlin Modular Society, founder of the Berlin
Noise Festival, and a prolific producer and workshop practitioner. focuses in her work on intersecting
rhythms and layered patterning and texture. Peter is a journalist and editor of daily electronic music
and creative tech site CDM.link. With a background in music composition, he focuses on fully
improvisatory live performances with sounds spanning techno to experimental materials. The two shared a
limited cassette release on Arch.</td>
<td></td>
<td>Performance</td>
<td>Chill Lagune am Herzbergstich</td>
<td>
<div class='duration'>3.00 h</div>
</td>
</tr>
<tr>
<td>Poi Light Show</td>
<td>Poi: Light painting with music</td>
<td>Dave</td>
<td>Performance</td>
<td>Marktplatz</td>
<td>
<div class='duration'>1.00 h</div>
</td>
</tr>
<tr>
<td>Wir müssen über KI sprechen – trotz des Hypes</td>
<td>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.</td>
<td>Jens Ohlig</td>
<td>Digitalcourage</td>
<td>Digitalcourage</td>
<td>
<div class='duration'>0.75 h</div>
</td>
</tr>
<tr>
<td>Psychedelic Disco World</td>
<td>I'd love to play some psychedelic world and disco music for all the lovely creatures</td>
<td>Franz Fries</td>
<td>DJ Set</td>
<td>Marktplatz</td>
<td>
<div class='duration'>1.00 h</div>
</td>
</tr>
<tr>
<td>Leihroller hacken. Ein Kasperltheater.</td>
<td>**Tri-tra-trallala der Roller steht jetzt nicht mehr da.**
Wir veranstalten ein original Wiener `Kasperltheater` zum Thema `Leihroller hacken`.
English subtitles available.</td>
<td>CCCasperl und Pezi</td>
<td>Milliways</td>