summaryrefslogtreecommitdiffstats
path: root/2024/organizers-notebook.md
blob: 22bb7e447a571d4501379e9326006e74122b0868 (plain) (blame)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
<!-- organizers-notebook.md is exported from organizers-notebook/index.org, please modify that instead. -->
[[!sidebar content=""]]

This file is automatically exported from [/2024/organizers-notebook/index.org](/2024/organizers-notebook/index.org). You might prefer to navigate this as an Org file instead. To do so, [clone the wiki repository](https://emacsconf.org/edit/).

You might also like the [general organizers' notebook](/organizers-notebook) and [the organizers' notebook from 2023](/2023/organizers-notebook).


# Table of Contents

-   [Timeline](#timeline)
-   [About this document](#about-this-doc)
-   [Communications plan](#comms)
-   [Good/better/best](#good-better-best)
-   [Phases](#phases)
    -   [Draft CFP](#cfp)
    -   [Draft schedule](#draft-schedule)
    -   [Prepare shift calendar, ask people to sign up](#shifts)
    -   [Rerecord intros](#intros)
-   [Check EmacsConf infrastructure](#org592dca7):project:
    -   [BigBlueButton](#org66b7f9b)
    -   [IRC web client](#org11b6c71)
    -   [IRC announcements](#orgb8a433f)
    -   [Media](#org03dcc03)
    -   [Publishing resources to the wiki](#orge4da177)
    -   [Publishing videos to the media server](#org2f0fe40)
    -   [Playing videos, switching to windows](#org7249cc1)
    -   [Etherpad](#org4797183)
    -   [Do a dry run](#orgb6b106c)
    -   [Resizing](#org8cdd1f2)
-   [Processes and notes](#orgd55dfc6)
    -   [Hosting](#org2f0255a)
    -   [ERC](#org91e21c3)
-   [Decisions](#decisions)
    -   [BigBlueButton replacement (BBB)](#bbb)
-   [Support code](#support-code)


<a id="timeline"></a>

# TODO Timeline

<table>


<colgroup>
<col  class="org-left">

<col  class="org-left">

<col  class="org-right">
</colgroup>
<tbody>
<tr>
<td class="org-left">CFP</td>
<td class="org-left"><span class="timestamp-wrapper"><span class="timestamp">[2024-06-30 Sun]</span></span></td>
<td class="org-right">&#xa0;</td>
</tr>

<tr>
<td class="org-left">CFP deadline</td>
<td class="org-left"><span class="timestamp-wrapper"><span class="timestamp">[2024-09-20 Fri]</span></span></td>
<td class="org-right">82</td>
</tr>

<tr>
<td class="org-left">Speaker notifications</td>
<td class="org-left"><span class="timestamp-wrapper"><span class="timestamp">[2024-09-27 Fri]</span></span></td>
<td class="org-right">&#xa0;</td>
</tr>

<tr>
<td class="org-left"><b>Publish schedule</b></td>
<td class="org-left"><span class="timestamp-wrapper"><span class="timestamp">[2024-10-25 Fri]</span></span></td>
<td class="org-right">&#xa0;</td>
</tr>

<tr>
<td class="org-left">Video submission deadline</td>
<td class="org-left"><span class="timestamp-wrapper"><span class="timestamp">[2024-11-08 Fri]</span></span></td>
<td class="org-right">49</td>
</tr>

<tr>
<td class="org-left">EmacsConf</td>
<td class="org-left"><span class="timestamp-wrapper"><span class="timestamp">[2024-12-07 Sat]</span></span></td>
<td class="org-right">29</td>
</tr>
</tbody>
</table>

We like to have at least a month to work on audio
normalization and transcription, and we want
speakers to have at least a month to work on their
videos (considering early submissions will already
have gotten started on processing).


<a id="about-this-doc"></a>

# About this document

Tags:

-   `conforg`: Requires access to private conf.org repository


<a id="comms"></a>

# Communications plan

Objectives:

-   keep everyone in the loop without them feeling like they&rsquo;re overloaded

Everyone:

-   [ ] Call for participation (speakers and volunteers)
-   [ ] Reminder about CFP
-   [ ] Last call

Speakers:

-   [ ] Send all speakers backstage access and upload instructions
-   [ ] Send all speakers check-in instructions

Volunteers:

-   [ ] Send captioning volunteers the backstage info
-   [ ] Send past captioning volunteers an invitation to participate - ask when there&rsquo;s a lot of load
-   [ ] Ask for help with audio processing


<a id="good-better-best"></a>

# Good/better/best

This table makes it easier to move the slider depending on who wants
to volunteer and how much we can get done. At some point, we&rsquo;ll figure
out how to track our current status so we know what we need to
scramble to do in order to get the conference off the ground. **bold**
is our current goal. Feel free to volunteer for anything that
interests you!

<table>


<colgroup>
<col  class="org-left">

<col  class="org-left">

<col  class="org-left">

<col  class="org-left">
</colgroup>
<tbody>
<tr>
<td class="org-left">&#xa0;</td>
<td class="org-left">Good</td>
<td class="org-left">Better</td>
<td class="org-left">Best</td>
</tr>

<tr>
<td class="org-left">Streaming</td>
<td class="org-left">Regular stream</td>
<td class="org-left">+ alternate streams on PeerTube</td>
<td class="org-left">+ alternate streams on YouTube</td>
</tr>

<tr>
<td class="org-left">480p</td>
<td class="org-left">Same on live</td>
<td class="org-left">Separate node</td>
<td class="org-left">Ansible setup</td>
</tr>

<tr>
<td class="org-left">Audio normalization</td>
<td class="org-left">Core org handling it</td>
<td class="org-left">Other volunteer</td>
<td class="org-left">Multiple volunteers</td>
</tr>

<tr>
<td class="org-left">Video resolution</td>
<td class="org-left">Usual reminders</td>
<td class="org-left">Extra reminders</td>
<td class="org-left">Everyone remembering to use a large font size</td>
</tr>

<tr>
<td class="org-left">Intros</td>
<td class="org-left">Standard, recorded</td>
<td class="org-left">Reviewed by speakers</td>
<td class="org-left">More details/context</td>
</tr>

<tr>
<td class="org-left">Pad</td>
<td class="org-left">v1.9.7</td>
<td class="org-left">v2.x</td>
<td class="org-left">&#xa0;</td>
</tr>
</tbody>
</table>


<a id="phases"></a>

# Phases


<a id="cfp"></a>

## DONE Draft CFP


#### Draft linked pages

-   [X] cfp
-   [X] submit page
-   [X] year index
-   [X] volunteer page


#### DONE Check with other organizers


#### DONE Post CFP in the usual places

emacsconf-discuss, reddit.com/r/emacs, Emacs News, emacs-tangents, Mastodon, X


<a id="draft-schedule"></a>

## DONE Draft schedule

<svg width="800" height="300" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><title>Graphical view of the schedule</title><g transform="translate(0,0)"><title>Schedule for Saturday</title><rect width="800" height="150" x="0" y="0" fill="white"></rect><text font-size="10" fill="black" y="12" x="3">Saturday</text><a href="https://emacsconf.org/2024/talks/sat-open" title="Saturday opening remarks" data-slug="sat-open"><title> 9:00- 9:10 Saturday opening remarks</title><rect x="0" y="15" opacity="0.8" width="15" height="59" stroke="black" stroke-dasharray="5,5,5" fill="gray"></rect><g transform="translate(13,73)"><text fill="black" x="0" y="0" font-size="10" transform="rotate(-90)">sat-open</text></g></a><a href="https://emacsconf.org/2024/talks/papers" title="Writing academic papers in Org-Roam" data-slug="papers"><title> 9:10- 9:20 Writing academic papers in Org-Roam</title><rect x="15" y="15" opacity="0.8" width="15" height="59" stroke="black" stroke-dasharray="" fill="lightblue"></rect><g transform="translate(28,73)"><text fill="black" x="0" y="0" font-size="10" transform="rotate(-90)">papers</text></g></a><a href="https://emacsconf.org/2024/talks/project" title="Managing writing project metadata with org-mode" data-slug="project"><title> 9:40-10:00 Managing writing project metadata with org-mode</title><rect x="62" y="15" opacity="0.8" width="31" height="59" stroke="black" stroke-dasharray="" fill="gray"></rect><g transform="translate(91,73)"><text fill="black" x="0" y="0" font-size="10" transform="rotate(-90)">project</text></g></a><a href="https://emacsconf.org/2024/talks/org-update" title="The Future of Org" data-slug="org-update"><title>10:20-10:40 The Future of Org</title><rect x="125" y="15" opacity="0.8" width="31" height="59" stroke="black" stroke-dasharray="" fill="lightblue"></rect><g transform="translate(154,73)"><text fill="black" x="0" y="0" font-size="10" transform="rotate(-90)">org-update</text></g></a><a href="https://emacsconf.org/2024/talks/color" title="Colour your Emacs with ease" data-slug="color"><title>11:00-11:10 Colour your Emacs with ease</title><rect x="188" y="15" opacity="0.8" width="15" height="59" stroke="black" stroke-dasharray="" fill="lightblue"></rect><g transform="translate(201,73)"><text fill="black" x="0" y="0" font-size="10" transform="rotate(-90)">color</text></g></a><a href="https://emacsconf.org/2024/talks/maxima" title="Emacs, eev, and Maxima - now!" data-slug="maxima"><title>11:30-11:50 Emacs, eev, and Maxima - now!</title><rect x="235" y="15" opacity="0.8" width="31" height="59" stroke="black" stroke-dasharray="5,5,5" fill="gray"></rect><g transform="translate(264,73)"><text fill="black" x="0" y="0" font-size="10" transform="rotate(-90)">maxima</text></g></a><a href="https://emacsconf.org/2024/talks/theme" title="My journey of finding and creating the “perfect” Emacs theme" data-slug="theme"><title> 1:00- 1:10 My journey of finding and creating the “perfect” Emacs theme</title><rect x="376" y="15" opacity="0.8" width="15" height="59" stroke="black" stroke-dasharray="" fill="peachpuff"></rect><g transform="translate(389,73)"><text fill="black" x="0" y="0" font-size="10" transform="rotate(-90)">theme</text></g></a><a href="https://emacsconf.org/2024/talks/water" title="Watering my (digital) plant with Emacs timers" data-slug="water"><title> 1:30- 1:45 Watering my (digital) plant with Emacs timers</title><rect x="423" y="15" opacity="0.8" width="23" height="59" stroke="black" stroke-dasharray="5,5,5" fill="gray"></rect><g transform="translate(444,73)"><text fill="black" x="0" y="0" font-size="10" transform="rotate(-90)">water</text></g></a><a href="https://emacsconf.org/2024/talks/shell" title="Emacs as a shell" data-slug="shell"><title> 1:55- 2:35 Emacs as a shell</title><rect x="462" y="15" opacity="0.8" width="62" height="59" stroke="black" stroke-dasharray="5,5,5" fill="peachpuff"></rect><g transform="translate(522,73)"><text fill="black" x="0" y="0" font-size="10" transform="rotate(-90)">shell</text></g></a><a href="https://emacsconf.org/2024/talks/casual" title="Re-imagining the Emacs user experience with Casual Suite" data-slug="casual"><title> 2:45- 3:05 Re-imagining the Emacs user experience with Casual Suite</title><rect x="541" y="15" opacity="0.8" width="31" height="59" stroke="black" stroke-dasharray="" fill="peachpuff"></rect><g transform="translate(570,73)"><text fill="black" x="0" y="0" font-size="10" transform="rotate(-90)">casual</text></g></a><a href="https://emacsconf.org/2024/talks/hyperdrive" title="New in hyperdrive.el: org-transclusion, easy installation, and more!" data-slug="hyperdrive"><title> 3:25- 3:45 New in hyperdrive.el: org-transclusion, easy installation, and more!</title><rect x="603" y="15" opacity="0.8" width="31" height="59" stroke="black" stroke-dasharray="" fill="peachpuff"></rect><g transform="translate(632,73)"><text fill="black" x="0" y="0" font-size="10" transform="rotate(-90)">hyperdrive</text></g></a><a href="https://emacsconf.org/2024/talks/writing" title="Emacs Writing Studio" data-slug="writing"><title> 4:05- 4:15 Emacs Writing Studio</title><rect x="666" y="15" opacity="0.8" width="15" height="59" stroke="black" stroke-dasharray="5,5,5" fill="peachpuff"></rect><g transform="translate(679,73)"><text fill="black" x="0" y="0" font-size="10" transform="rotate(-90)">writing</text></g></a><a href="https://emacsconf.org/2024/talks/emacs30" title="Emacs 30 Highlights" data-slug="emacs30"><title> 4:25- 4:50 Emacs 30 Highlights</title><rect x="698" y="15" opacity="0.8" width="39" height="59" stroke="black" stroke-dasharray="" fill="gray"></rect><g transform="translate(735,73)"><text fill="black" x="0" y="0" font-size="10" transform="rotate(-90)">emacs30</text></g></a><a href="https://emacsconf.org/2024/talks/sat-close" title="Saturday closing remarks" data-slug="sat-close"><title> 5:00- 5:10 Saturday closing remarks</title><rect x="752" y="15" opacity="0.8" width="15" height="59" stroke="black" stroke-dasharray="5,5,5" fill="gray"></rect><g transform="translate(765,73)"><text fill="black" x="0" y="0" font-size="10" transform="rotate(-90)">sat-close</text></g></a><a href="https://emacsconf.org/2024/talks/gypsum" title="Gypsum: my clone of Emacs and ELisp written in Scheme" data-slug="gypsum"><title>10:00-10:20 Gypsum: my clone of Emacs and ELisp written in Scheme</title><rect x="94" y="75" opacity="0.8" width="31" height="59" stroke="black" stroke-dasharray="" fill="lightblue"></rect><g transform="translate(123,133)"><text fill="black" x="0" y="0" font-size="10" transform="rotate(-90)">gypsum</text></g></a><a href="https://emacsconf.org/2024/talks/rust" title="An experimental Emacs core in Rust" data-slug="rust"><title>10:40-11:00 An experimental Emacs core in Rust</title><rect x="156" y="75" opacity="0.8" width="31" height="59" stroke="black" stroke-dasharray="" fill="gray"></rect><g transform="translate(185,133)"><text fill="black" x="0" y="0" font-size="10" transform="rotate(-90)">rust</text></g></a><a href="https://emacsconf.org/2024/talks/p-search" title="p-search: a local search engine in Emacs" data-slug="p-search"><title>11:20-11:45 p-search: a local search engine in Emacs</title><rect x="219" y="75" opacity="0.8" width="39" height="59" stroke="black" stroke-dasharray="" fill="gray"></rect><g transform="translate(256,133)"><text fill="black" x="0" y="0" font-size="10" transform="rotate(-90)">p-search</text></g></a><a href="https://emacsconf.org/2024/talks/julia" title="Exploring shared philosophies in Julia and Emacs" data-slug="julia"><title> 1:00- 1:10 Exploring shared philosophies in Julia and Emacs</title><rect x="376" y="75" opacity="0.8" width="15" height="59" stroke="black" stroke-dasharray="" fill="peachpuff"></rect><g transform="translate(389,133)"><text fill="black" x="0" y="0" font-size="10" transform="rotate(-90)">julia</text></g></a><a href="https://emacsconf.org/2024/talks/guile" title="Beguiling Emacs: Guile-Emacs relaunched!" data-slug="guile"><title> 1:25- 1:45 Beguiling Emacs: Guile-Emacs relaunched!</title><rect x="415" y="75" opacity="0.8" width="31" height="59" stroke="black" stroke-dasharray="5,5,5" fill="peachpuff"></rect><g transform="translate(444,133)"><text fill="black" x="0" y="0" font-size="10" transform="rotate(-90)">guile</text></g></a><a href="https://emacsconf.org/2024/talks/secrets" title="Committing secrets with git using sops-mode" data-slug="secrets"><title> 1:55- 2:05 Committing secrets with git using sops-mode</title><rect x="462" y="75" opacity="0.8" width="15" height="59" stroke="black" stroke-dasharray="" fill="peachpuff"></rect><g transform="translate(475,133)"><text fill="black" x="0" y="0" font-size="10" transform="rotate(-90)">secrets</text></g></a><a href="https://emacsconf.org/2024/talks/mcclim" title="Elisp and McCLIM" data-slug="mcclim"><title> 2:25- 3:25 Elisp and McCLIM</title><rect x="509" y="75" opacity="0.8" width="94" height="59" stroke="black" stroke-dasharray="" fill="peachpuff"></rect><g transform="translate(601,133)"><text fill="black" x="0" y="0" font-size="10" transform="rotate(-90)">mcclim</text></g></a><a href="https://emacsconf.org/2024/talks/repro" title="Reproducibly building Emacs: “Hey your checksum is the same as mine!”" data-slug="repro"><title> 3:45- 4:05 Reproducibly building Emacs: “Hey your checksum is the same as mine!”</title><rect x="635" y="75" opacity="0.8" width="31" height="59" stroke="black" stroke-dasharray="" fill="gray"></rect><g transform="translate(664,133)"><text fill="black" x="0" y="0" font-size="10" transform="rotate(-90)">repro</text></g></a><g transform="translate(0,15)"><line stroke="darkgray" x1="0" y1="0" x2="0" y2="120"></line><text fill="black" x="0" y="133" font-size="10" text-anchor="left">9 AM</text></g><g transform="translate(94,15)"><line stroke="darkgray" x1="0" y1="0" x2="0" y2="120"></line><text fill="black" x="0" y="133" font-size="10" text-anchor="left">10 AM</text></g><g transform="translate(188,15)"><line stroke="darkgray" x1="0" y1="0" x2="0" y2="120"></line><text fill="black" x="0" y="133" font-size="10" text-anchor="left">11 AM</text></g><g transform="translate(282,15)"><line stroke="darkgray" x1="0" y1="0" x2="0" y2="120"></line><text fill="black" x="0" y="133" font-size="10" text-anchor="left">12 PM</text></g><g transform="translate(376,15)"><line stroke="darkgray" x1="0" y1="0" x2="0" y2="120"></line><text fill="black" x="0" y="133" font-size="10" text-anchor="left">1 PM</text></g><g transform="translate(470,15)"><line stroke="darkgray" x1="0" y1="0" x2="0" y2="120"></line><text fill="black" x="0" y="133" font-size="10" text-anchor="left">2 PM</text></g><g transform="translate(564,15)"><line stroke="darkgray" x1="0" y1="0" x2="0" y2="120"></line><text fill="black" x="0" y="133" font-size="10" text-anchor="left">3 PM</text></g><g transform="translate(658,15)"><line stroke="darkgray" x1="0" y1="0" x2="0" y2="120"></line><text fill="black" x="0" y="133" font-size="10" text-anchor="left">4 PM</text></g><g transform="translate(752,15)"><line stroke="darkgray" x1="0" y1="0" x2="0" y2="120"></line><text fill="black" x="0" y="133" font-size="10" text-anchor="left">5 PM</text></g></g><g transform="translate(0,150)"><title>Schedule for Sunday</title><rect width="800" height="150" x="0" y="0" fill="white"></rect><text font-size="10" fill="black" y="12" x="3">Sunday</text><a href="https://emacsconf.org/2024/talks/sun-open" title="Sunday opening remarks" data-slug="sun-open"><title> 9:00- 9:10 Sunday opening remarks</title><rect x="0" y="15" opacity="0.8" width="15" height="59" stroke="black" stroke-dasharray="5,5,5" fill="gray"></rect><g transform="translate(13,73)"><text fill="black" x="0" y="0" font-size="10" transform="rotate(-90)">sun-open</text></g></a><a href="https://emacsconf.org/2024/talks/links" title="Unlocking linked data: replacing specialized apps with an Org-based semantic wiki" data-slug="links"><title> 9:10- 9:20 Unlocking linked data: replacing specialized apps with an Org-based semantic wiki</title><rect x="15" y="15" opacity="0.8" width="15" height="59" stroke="black" stroke-dasharray="5,5,5" fill="lightblue"></rect><g transform="translate(28,73)"><text fill="black" x="0" y="0" font-size="10" transform="rotate(-90)">links</text></g></a><a href="https://emacsconf.org/2024/talks/regex" title="Emacs regex compilation and future directions for expressive pattern matching" data-slug="regex"><title> 9:30- 9:50 Emacs regex compilation and future directions for expressive pattern matching</title><rect x="47" y="15" opacity="0.8" width="31" height="59" stroke="black" stroke-dasharray="5,5,5" fill="lightblue"></rect><g transform="translate(76,73)"><text fill="black" x="0" y="0" font-size="10" transform="rotate(-90)">regex</text></g></a><a href="https://emacsconf.org/2024/talks/learning" title="Survival of the skillest: Thriving in the learning jungle" data-slug="learning"><title>10:00-10:20 Survival of the skillest: Thriving in the learning jungle</title><rect x="94" y="15" opacity="0.8" width="31" height="59" stroke="black" stroke-dasharray="5,5,5" fill="lightblue"></rect><g transform="translate(123,73)"><text fill="black" x="0" y="0" font-size="10" transform="rotate(-90)">learning</text></g></a><a href="https://emacsconf.org/2024/talks/blee" title="About Blee: enveloping our own autonomy directed digital ecosystem with Emacs" data-slug="blee"><title>10:30-11:15 About Blee: enveloping our own autonomy directed digital ecosystem with Emacs</title><rect x="141" y="15" opacity="0.8" width="70" height="59" stroke="black" stroke-dasharray="" fill="gray"></rect><g transform="translate(209,73)"><text fill="black" x="0" y="0" font-size="10" transform="rotate(-90)">blee</text></g></a><a href="https://emacsconf.org/2024/talks/hyperbole" title="Fun things with GNU Hyperbole" data-slug="hyperbole"><title>11:30-11:45 Fun things with GNU Hyperbole</title><rect x="235" y="15" opacity="0.8" width="23" height="59" stroke="black" stroke-dasharray="" fill="lightblue"></rect><g transform="translate(256,73)"><text fill="black" x="0" y="0" font-size="10" transform="rotate(-90)">hyperbole</text></g></a><a href="https://emacsconf.org/2024/talks/hywiki" title="HyWiki: Fast, hyperlinked note-taking with no markup required" data-slug="hywiki"><title> 1:00- 1:20 HyWiki: Fast, hyperlinked note-taking with no markup required</title><rect x="376" y="15" opacity="0.8" width="31" height="59" stroke="black" stroke-dasharray="" fill="peachpuff"></rect><g transform="translate(405,73)"><text fill="black" x="0" y="0" font-size="10" transform="rotate(-90)">hywiki</text></g></a><a href="https://emacsconf.org/2024/talks/pgmacs" title="PGmacs: browsing and editing PostgreSQL databases from Emacs" data-slug="pgmacs"><title> 1:40- 1:55 PGmacs: browsing and editing PostgreSQL databases from Emacs</title><rect x="439" y="15" opacity="0.8" width="23" height="59" stroke="black" stroke-dasharray="" fill="lightblue"></rect><g transform="translate(460,73)"><text fill="black" x="0" y="0" font-size="10" transform="rotate(-90)">pgmacs</text></g></a><a href="https://emacsconf.org/2024/talks/literate" title="Literate programming for the 21st Century" data-slug="literate"><title> 2:15- 2:35 Literate programming for the 21st Century</title><rect x="494" y="15" opacity="0.8" width="31" height="59" stroke="black" stroke-dasharray="" fill="peachpuff"></rect><g transform="translate(523,73)"><text fill="black" x="0" y="0" font-size="10" transform="rotate(-90)">literate</text></g></a><a href="https://emacsconf.org/2024/talks/students" title="An example of a cohesive student workflow in Emacs" data-slug="students"><title> 2:55- 3:05 An example of a cohesive student workflow in Emacs</title><rect x="556" y="15" opacity="0.8" width="15" height="59" stroke="black" stroke-dasharray="5,5,5" fill="peachpuff"></rect><g transform="translate(569,73)"><text fill="black" x="0" y="0" font-size="10" transform="rotate(-90)">students</text></g></a><a href="https://emacsconf.org/2024/talks/sharing" title="So you want to be an Emacs-fluencer?" data-slug="sharing"><title> 3:15- 3:35 So you want to be an Emacs-fluencer?</title><rect x="588" y="15" opacity="0.8" width="31" height="59" stroke="black" stroke-dasharray="5,5,5" fill="peachpuff"></rect><g transform="translate(617,73)"><text fill="black" x="0" y="0" font-size="10" transform="rotate(-90)">sharing</text></g></a><a href="https://emacsconf.org/2024/talks/transducers" title="Transducers: finally, ergonomic data processing for Emacs!" data-slug="transducers"><title> 4:00- 4:30 Transducers: finally, ergonomic data processing for Emacs!</title><rect x="658" y="15" opacity="0.8" width="47" height="59" stroke="black" stroke-dasharray="" fill="peachpuff"></rect><g transform="translate(703,73)"><text fill="black" x="0" y="0" font-size="10" transform="rotate(-90)">transducers</text></g></a><a href="https://emacsconf.org/2024/talks/sun-close" title="Sunday closing remarks" data-slug="sun-close"><title> 4:50- 5:00 Sunday closing remarks</title><rect x="737" y="15" opacity="0.8" width="15" height="59" stroke="black" stroke-dasharray="5,5,5" fill="gray"></rect><g transform="translate(750,73)"><text fill="black" x="0" y="0" font-size="10" transform="rotate(-90)">sun-close</text></g></a><g transform="translate(0,15)"><line stroke="darkgray" x1="0" y1="0" x2="0" y2="120"></line><text fill="black" x="0" y="133" font-size="10" text-anchor="left">9 AM</text></g><g transform="translate(94,15)"><line stroke="darkgray" x1="0" y1="0" x2="0" y2="120"></line><text fill="black" x="0" y="133" font-size="10" text-anchor="left">10 AM</text></g><g transform="translate(188,15)"><line stroke="darkgray" x1="0" y1="0" x2="0" y2="120"></line><text fill="black" x="0" y="133" font-size="10" text-anchor="left">11 AM</text></g><g transform="translate(282,15)"><line stroke="darkgray" x1="0" y1="0" x2="0" y2="120"></line><text fill="black" x="0" y="133" font-size="10" text-anchor="left">12 PM</text></g><g transform="translate(376,15)"><line stroke="darkgray" x1="0" y1="0" x2="0" y2="120"></line><text fill="black" x="0" y="133" font-size="10" text-anchor="left">1 PM</text></g><g transform="translate(470,15)"><line stroke="darkgray" x1="0" y1="0" x2="0" y2="120"></line><text fill="black" x="0" y="133" font-size="10" text-anchor="left">2 PM</text></g><g transform="translate(564,15)"><line stroke="darkgray" x1="0" y1="0" x2="0" y2="120"></line><text fill="black" x="0" y="133" font-size="10" text-anchor="left">3 PM</text></g><g transform="translate(658,15)"><line stroke="darkgray" x1="0" y1="0" x2="0" y2="120"></line><text fill="black" x="0" y="133" font-size="10" text-anchor="left">4 PM</text></g><g transform="translate(752,15)"><line stroke="darkgray" x1="0" y1="0" x2="0" y2="120"></line><text fill="black" x="0" y="133" font-size="10" text-anchor="left">5 PM</text></g></g></svg>

Legend:

-   light blue: constraint is <= a time
-   peach: constraint is >= a time
-   solid line: Q&A will be through BigBlueButton web conference
-   dashed line: Q&A will be IRC/Etherpad during the event or e-mail after the event

Notes:

-   Updates:
    -   <span class="timestamp-wrapper"><span class="timestamp">[2024-10-27 Sun] </span></span> Removed [graph](https://emacsconf.org/2024/talks/graph "Graph mode: a major mode to create, edit and display discrete element graphs"), moved [p-search](https://emacsconf.org/2024/talks/p-search "p-search: a local search engine in Emacs") earlier; also [learning](https://emacsconf.org/2024/talks/learning "Survival of the skillest: Thriving in the learning jungle") needs to be in the morning, so I moved [pgmacs](https://emacsconf.org/2024/talks/pgmacs "PGmacs: browsing and editing PostgreSQL databases from Emacs") and [org-teach](https://emacsconf.org/2024/talks/org-teach "org-teach: a minor mode for writing course materials in Emacs") around.
    -   <span class="timestamp-wrapper"><span class="timestamp">[2024-10-22 Tue] </span></span> Swapped [org-teach](https://emacsconf.org/2024/talks/org-teach "org-teach: a minor mode for writing course materials in Emacs") and [blee](https://emacsconf.org/2024/talks/blee "About Blee: enveloping our own autonomy directed digital ecosystem with Emacs")
    -   <span class="timestamp-wrapper"><span class="timestamp">[2024-10-21 Mon] </span></span> Extended [blee](https://emacsconf.org/2024/talks/blee "About Blee: enveloping our own autonomy directed digital ecosystem with Emacs")
    -   <span class="timestamp-wrapper"><span class="timestamp">[2024-10-17 Thu] </span></span> Added [org-update](https://emacsconf.org/2024/talks/org-update "The Future of Org") to Saturday morning, moving [org-teach](https://emacsconf.org/2024/talks/org-teach "org-teach: a minor mode for writing course materials in Emacs") to Sunday afternoon
    -   <span class="timestamp-wrapper"><span class="timestamp">[2024-10-15 Tue] </span></span> Swapped [students](https://emacsconf.org/2024/talks/students "An example of a cohesive student workflow in Emacs") and [literate](https://emacsconf.org/2024/talks/literate "Literate programming for the 21st Century") for availability reasons
    -   <span class="timestamp-wrapper"><span class="timestamp">[2024-10-13 Sun] </span></span> Moved [hyperdrive](https://emacsconf.org/2024/talks/hyperdrive "New in hyperdrive.el: quick install, peer graph, transclusion!") to the afternoon (swapping with [flp](https://emacsconf.org/2024/talks/flp "The Free Life Planner: Empowering lives with Emacs-based AI")) because of changed availability
    -   <span class="timestamp-wrapper"><span class="timestamp">[2024-10-12 Sat] </span></span> I fixed the time constraint for [students](https://emacsconf.org/2024/talks/students "An example of a cohesive student workflow in Emacs") (needs to be in the afternoon), so I moved [hyperbole](https://emacsconf.org/2024/talks/hyperbole "Fun things with GNU Hyperbole") to the morning.
-   General approach:
    -   I&rsquo;ve mostly tried to alternate IRC/pad Q&A with live Q&A.
    -   1.5 tracks keeps things faster-paced than the 2-track option.
-   Sat:
    -   Gen track:
        -   [papers](https://emacsconf.org/2024/talks/papers "Writing academic papers in Org-Roam"), [project](https://emacsconf.org/2024/talks/project "Managing writing project metadata with org-mode"), [org-teach](https://emacsconf.org/2024/talks/org-teach "org-teach: a minor mode for writing course materials in Emacs"), [flp](https://emacsconf.org/2024/talks/flp "The Free Life Planner: Empowering lives with Emacs-based AI"), [color](https://emacsconf.org/2024/talks/color "Colour your Emacs with ease") should be pretty general
        -   [color](https://emacsconf.org/2024/talks/color "Colour your Emacs with ease") and [theme](https://emacsconf.org/2024/talks/theme "My journey of finding and creating the “perfect” Emacs theme") are both theme-related. [color](https://emacsconf.org/2024/talks/color "Colour your Emacs with ease") needs to be in the morning and [theme](https://emacsconf.org/2024/talks/theme "My journey of finding and creating the “perfect” Emacs theme") needs to be in the afternoon, so I put them on either side of the lunch break.
        -   Other afternoon talks: [water](https://emacsconf.org/2024/talks/water "Watering my (digital) plant with Emacs timers") and [shell](https://emacsconf.org/2024/talks/shell "Emacs as a shell") are by the same speaker. [casual](https://emacsconf.org/2024/talks/casual "Re-imagining the Emacs user experience with Casual Suite"), [hyperdrive](https://emacsconf.org/2024/talks/hyperdrive "New in hyperdrive.el: quick install, peer graph, transclusion!"), and [writing](https://emacsconf.org/2024/talks/writing "Emacs Writing Studio") will probably be good for a general audience. These speakers are only available in the afternoon, so this part of the schedule is a bit tight.
        -   I put [emacs30](https://emacsconf.org/2024/talks/emacs30 "Emacs 30 Highlights") at the end of Saturday to act sort of as a keynote. Closing remarks on Saturday are usually very light, so we could skip them.
    -   Dev track:
        -   [gypsum](https://emacsconf.org/2024/talks/gypsum "Gypsum: my clone of Emacs and ELisp written in Scheme"), [rust](https://emacsconf.org/2024/talks/rust "An experimental Emacs core in Rust"), [julia](https://emacsconf.org/2024/talks/julia "Exploring shared philosophies in Julia and Emacs"), [guile](https://emacsconf.org/2024/talks/guile "Beguiling Emacs: Guile-Emacs relaunched!"), and [mcclim](https://emacsconf.org/2024/talks/mcclim "Elisp and McCLIM") are about other projects
        -   [graph](https://emacsconf.org/2024/talks/graph "Graph mode: a major mode to create, edit and display discrete element graphs"), [p-search](https://emacsconf.org/2024/talks/p-search "p-search: a local search engine in Emacs"), [secrets](https://emacsconf.org/2024/talks/secrets "Committing secrets with git using sops-mode"), and [repro](https://emacsconf.org/2024/talks/repro "Reproducibly building Emacs: “Hey your checksum is the same as mine!”") will probably be more dev-focused
-   Sun:
    -   Sunday morning last year had some packet loss issues at around 9:30, so we&rsquo;ll start with some talks that don&rsquo;t have BBB Q&A: [students](https://emacsconf.org/2024/talks/students "An example of a cohesive student workflow in Emacs"), [links](https://emacsconf.org/2024/talks/links "Unlocking linked data: replacing specialized apps with an Org-based semantic wiki"), [regex](https://emacsconf.org/2024/talks/regex "Emacs regex compilation and future directions for expressive pattern matching")
    -   [blee](https://emacsconf.org/2024/talks/blee "About Blee: enveloping our own autonomy directed digital ecosystem with Emacs") and [language](https://emacsconf.org/2024/talks/language "Immersive language learning with Emacs") are probably general-audience
    -   [pgmacs](https://emacsconf.org/2024/talks/pgmacs "PGmacs: browsing and editing PostgreSQL databases from Emacs"), [regex](https://emacsconf.org/2024/talks/regex "Emacs regex compilation and future directions for expressive pattern matching"), and [transducers](https://emacsconf.org/2024/talks/transducers "Transducers: finally, ergonomic data processing for Emacs!") are all development-oriented, but are on the general track for scheduling purposes. [transducers](https://emacsconf.org/2024/talks/transducers "Transducers: finally, ergonomic data processing for Emacs!") can only be on Sunday afternoon at 4pm because of availability.
    -   I&rsquo;ve separated [hyperbole](https://emacsconf.org/2024/talks/hyperbole "Fun things with GNU Hyperbole") and [hywiki](https://emacsconf.org/2024/talks/hywiki "HyWiki: Fast, hyperlinked note-taking with no markup required") by lunch so that people who are interested in that can attend the live Q&A for both without worrying about missing things.
    -   [learning](https://emacsconf.org/2024/talks/learning "Survival of the skillest: Thriving in the learning jungle"), [sharing](https://emacsconf.org/2024/talks/sharing "So you want to be an Emacs-fluencer?"), [literate](https://emacsconf.org/2024/talks/literate "Literate programming for the 21st Century") will probably be good for a general audience


<a id="shifts"></a>

## DONE Prepare shift calendar, ask people to sign up

<a name="shifts"></a>

AM: 9-12 PM EST, PM: 1-5 PM EST (plus a little extra for setup/transition)

Saturday Dec 7 2024

<table id="org6ddb569">


<colgroup>
<col  class="org-left">

<col  class="org-right">

<col  class="org-right">

<col  class="org-left">

<col  class="org-left">

<col  class="org-left">

<col  class="org-left">

<col  class="org-left">

<col  class="org-left">
</colgroup>
<thead>
<tr>
<th scope="col" class="org-left">&#xa0;</th>
<th scope="col" class="org-right">Start</th>
<th scope="col" class="org-right">End</th>
<th scope="col" class="org-left"><a href="https://emacsconf.org/2023/volunteer/host/">Host</a></th>
<th scope="col" class="org-left">Streamer</th>
<th scope="col" class="org-left"><a href="https://emacsconf.org/2023/volunteer/checkin/">Checkin</a></th>
<th scope="col" class="org-left"><a href="https://emacsconf.org/2023/volunteer/irc/">IRC</a></th>
<th scope="col" class="org-left"><a href="https://emacsconf.org/2023/volunteer/pad/">Pad</a></th>
<th scope="col" class="org-left">Coord</th>
</tr>
</thead>
<tbody>
<tr>
<td class="org-left">Gen AM</td>
<td class="org-right">09:00</td>
<td class="org-right">12:00</td>
<td class="org-left">zaeph</td>
<td class="org-left">sachac</td>
<td class="org-left">sachac</td>
<td class="org-left">&#xa0;</td>
<td class="org-left">&#xa0;</td>
<td class="org-left">sachac</td>
</tr>

<tr>
<td class="org-left">Gen PM</td>
<td class="org-right">13:00</td>
<td class="org-right">17:00</td>
<td class="org-left">zaeph</td>
<td class="org-left">sachac</td>
<td class="org-left">sachac</td>
<td class="org-left">&#xa0;</td>
<td class="org-left">&#xa0;</td>
<td class="org-left">sachac</td>
</tr>

<tr>
<td class="org-left">Dev AM</td>
<td class="org-right">10:00</td>
<td class="org-right">12:00</td>
<td class="org-left">corwin</td>
<td class="org-left">sachac</td>
<td class="org-left">sachac</td>
<td class="org-left">&#xa0;</td>
<td class="org-left">&#xa0;</td>
<td class="org-left">sachac</td>
</tr>

<tr>
<td class="org-left">Dev PM</td>
<td class="org-right">13:00</td>
<td class="org-right">17:00</td>
<td class="org-left">corwin</td>
<td class="org-left">sachac</td>
<td class="org-left">sachac</td>
<td class="org-left">&#xa0;</td>
<td class="org-left">&#xa0;</td>
<td class="org-left">sachac</td>
</tr>
</tbody>
</table>

Sunday Dec 8 2024

<table id="org33d9c77">


<colgroup>
<col  class="org-left">

<col  class="org-right">

<col  class="org-right">

<col  class="org-left">

<col  class="org-left">

<col  class="org-left">

<col  class="org-left">

<col  class="org-left">

<col  class="org-left">
</colgroup>
<thead>
<tr>
<th scope="col" class="org-left">&#xa0;</th>
<th scope="col" class="org-right">Start</th>
<th scope="col" class="org-right">End</th>
<th scope="col" class="org-left"><a href="https://emacsconf.org/2023/volunteer/host/">Host</a></th>
<th scope="col" class="org-left">Streamer</th>
<th scope="col" class="org-left"><a href="https://emacsconf.org/2023/volunteer/checkin/">Checkin</a></th>
<th scope="col" class="org-left"><a href="https://emacsconf.org/2023/volunteer/irc/">IRC</a></th>
<th scope="col" class="org-left"><a href="https://emacsconf.org/2023/volunteer/pad/">Pad</a></th>
<th scope="col" class="org-left">Coord</th>
</tr>
</thead>
<tbody>
<tr>
<td class="org-left">Gen AM</td>
<td class="org-right">09:00</td>
<td class="org-right">12:00</td>
<td class="org-left">zaeph</td>
<td class="org-left">sachac</td>
<td class="org-left">corwin</td>
<td class="org-left">&#xa0;</td>
<td class="org-left">&#xa0;</td>
<td class="org-left">sachac</td>
</tr>

<tr>
<td class="org-left">Gen PM</td>
<td class="org-right">13:00</td>
<td class="org-right">17:00</td>
<td class="org-left">zaeph</td>
<td class="org-left">sachac</td>
<td class="org-left">corwin</td>
<td class="org-left">&#xa0;</td>
<td class="org-left">&#xa0;</td>
<td class="org-left">sachac</td>
</tr>
</tbody>
</table>

Backups:

-   dev host/streamer:
-   gen host/streamer:
-   checkin, IRC, pad:

Interested in a shift? Please e-mail <mailto:emacsconf-org-private@gnu.org> and we&rsquo;ll help you figure out what you need to learn.

    `(setq emacsconf-shifts
           (list
           ,@(apply #'append
                   (mapcar
                    (lambda (day)
                      (let ((headers
    												 (mapcar
    													(lambda (field)
    														(intern
    														 (concat
    															":"
    															(downcase
    															 (if (string-match org-link-bracket-re field)
    																	 (match-string 2 field)
    																 field)))))
                              (seq-drop (car (cadr day)) 3))))
                        (mapcar
                         (lambda (row)
                              (apply #'append
                                     (list 'list :id
                                           (when (string-match "^\\([^ ]+\\) \\(AM\\|PM\\)" (car row))
                                             (format "%s-%s-%s"
                                                     (car day)
                                                     (downcase (match-string 2 (car row)))
                                                     (downcase (match-string 1 (car row)))))
                                           :track
                                           (if (string-match "^Gen" (car row)) "General" "Development")
                                           :start
                                           (format "%sT%s:00%s"
                                                   (elt day 2)
    																							 (elt row 1)
                                                   emacsconf-timezone-offset)
                                           :end
                                           (format "%sT%s:00%s"
                                                   (elt day 2)
                                                   (elt row 2)
                                                   emacsconf-timezone-offset))
                                     (seq-map-indexed
                                      (lambda (value index)
                                        (unless (string= value "")
                                          (list (elt headers index) value)))
                                      (seq-drop row 3))))
                            (cdr (cadr day)))
                          ))
                    (list
                     (list "sat" sat "2024-12-07")
                     (list "sun" sun "2024-12-08"))))))


<a id="intros"></a>

## Rerecord intros


### TODO Redo pkal pronunciation     :emacsconf:record:

> kǎlud͡ʑert͡ʃit͡ɕ

    Next, we have "Emacs 30 Highlights" by Philip Kaludercic.
    You can ask questions in the web conference
    by joining from the talk page,
    or you can ask questions through Etherpad or IRC.

Maybe ask zaeph


### TODO Rerecord intro for Ihor Radchenko and Bastien Guerry

zaeph will probably pronounce this so much better than I can. =)

    Next, we have "The future of Org",
    by Ihor Radchenko and Bastien Guerry.
    They will answer questions via web conference.
    You can join using the URL from the talk page
    or ask questions through Etherpad or IRC.


### TODO Rerecord Eev intro with MAC-SYM-A pronunciation     :record:emacsconf:

> My name in the intro is perfect, but Maxima comes from Macsyma, and it is
> pronounced mac - sym (<- as in &ldquo;symbolic&rdquo;) a&#x2026;

    Next, we have "Emacs, eev, and Maxima - now!",
    by Eduardo Ochs.
    You can ask questions via Etherpad or IRC.


### TODO Rerecord Vincent Conus using psitransfer version     :record:emacsconf:

/ssh:orga@media.emacsconf.org:/srv/upload/emacsconf-papers/0b67be8b-10a1-48f8-9a7b-e73a4c46b9db

    Next, we have "Writing academic papers in Org-Roam",
    by Vincent Conus.
    He will answer questions via web conference.
    You can join using the URL from the talk page
    or ask questions through Etherpad or IRC.


### TODO Rerecord Joseph Turner with new title     :emacsconf:record:

[2024-12-02 Emacs news](https://sachachua.com/blog/2024/12/2024-12-02-emacs-news/)

New in hyperdrive.el: quick install, peer graph, transclusion!

    Next, we have "New in hyperdrive.el: quick install,
    peer graph, transclusion!" by Joseph Turner.
    You can ask questions in the web conference
    by joining from the talk page,
    or you can ask questions through Etherpad or IRC.


<a id="org592dca7"></a>

# TODO Check EmacsConf infrastructure     :project:

-   [X] IRC
-   [ ] Streaming assets
-   [ ] Publishing to the wiki
-   [ ] Web conference
-   [ ] OBS
-   [ ] Publishing to the media server
-   [ ] Etherpad
-   [ ] Streaming
-   [ ] Toobnix
-   [ ] YouTube


<a id="org66b7f9b"></a>

## TODO BigBlueButton

-   Plan: spin up Linode temporarily: [BigBlueButton replacement](#bbb)


### Notes


#### install, sizes

<span class="timestamp-wrapper"><span class="timestamp">[2024-11-19 Tue]</span></span>

Prerequisites:

-   BBB requires 4 CPU cores before it will install. bbb-conf.sh is fairly straightforward, so I guess we could spin down and then spin up again.

Steps:

1.  Run the BBB installer: ~./bbb-install.sh -v jammy-300 -s bbb.emacsverse.org -e emacsconf@sachachua.com -g ~
2.  `sudo apt install bbb-playback-video` and then follow the instructions at [Server Customization | BigBlueButton](https://docs.bigbluebutton.org/3.0/administration/customize/#install-additional-recording-processing-formats) .
3.  <https://docs.bigbluebutton.org/3.0/administration/customize/#mute-all-users-on-startup>

I think it needs 4 CPU cores for regular running, too.

Sizing to shared 8GB 4 core for testing

    linode-cli linodes resize 67329098 --type g6-standard-4 --allow_auto_disk_resize false

takes about 2 minutes

Sizing to shared nanode, dormant

    linode-cli linodes resize 67329098 --type g6-nanode-1 --allow_auto_disk_resize true

    echo "notify-send 'Resizing BBB...'; linode-cli linodes resize 67329098 --type g6-nanode-1 --allow_auto_disk_resize true" | at 'now + 1 hour'

Resize disk
linode-cli linodes disks-list 67329098
linode-cli linodes disk-resize 67329098 131474261 &#x2013;size 24000

/var/bigbluebutton is where recordings will go

<https://techdocs.akamai.com/linode-api/reference/post-resize-disk>

<https://www.linode.com/community/questions/21942/how-can-i-schedule-resizing-a-linode>


#### backing up

<span class="timestamp-wrapper"><span class="timestamp">[2024-11-20 Wed] </span></span> ssh root@66.175.208.243 &rsquo;tar zcvf - /var/bigbluebutton /etc/bigbluebutton /root/greenlight-v3 /usr/local/bigbluebutton /usr/share/bbb-web&rsquo; > bbb-backup.tar.gz


#### DONE Set up bbb with new domain name

If changing IP:

bbb-conf &#x2013;setip bbb-new.example.com
service nginx stop
certbot certonly
service nginx start
edit /etc/hosts, add domain name

Certificate is saved at: /etc/letsencrypt/live/bbb.emacsverse.org/fullchain.pem
Key is saved at:         /etc/letsencrypt/live/bbb.emacsverse.org/privkey.pem

edit *etc/nginx/sites-available/bigbluebutton to add server\_name
/etc/letsencrypt/live*

grep in /etc for the old domain

<https://github.com/bigbluebutton/greenlight/issues/1794>

-   change greenlight/.env
    
    curl failed to verify the legitimacy of the server and therefore could not

establish a secure connection to it. To learn more about this situation and
how to fix it, please visit the web page mentioned above.
.curl: (60) SSL: no alternative certificate subject name matches target host name &rsquo;bbb.emacsverse.org&rsquo;
More details here: <https://curl.se/docs/sslcerts.html>

haproxy is already listening on 443

Fine, let&rsquo;s just reinstall it, harumph.

Create the users:

user\_id = User.find\_by\_email(&ldquo;sacha@sachachua.com&rdquo;).id

&#x2026; ugh, what&rsquo;s going on, why is free only reporting a little memory? ah, we&rsquo;re still resizing, that&rsquo;s why


### STARTED Set up moderator access codes for all the meeting rooms, and make it so people can start the meeting

-   Let&rsquo;s try
    -   [ ] Rails
    -   [ ] Spookfox
    -   [ ] Manual
        
        <https://github.com/bigbluebutton/greenlight/blob/a5da808fc33f03613aa3a4089fd418403c539b2f/spec/models/room_spec.rb#L128>
        RoomMeetingOption.

room.get\_setting

yeah, that&rsquo;s not good, rails console keeps quitting!
docker-compose down
docker-compose up

1:M 28 Nov 2024 17:16:23.441 # WARNING Memory overcommit must be enabled! Without it, a background save or replication may fail under low memory condition. Being disabled, it can can also cause failures without low memory condition, see <https://github.com/jemalloc/jemalloc/issues/1328>. To fix this issue add &rsquo;vm.overcommit\_memory = 1&rsquo; to /etc/sysctl.conf and then reboot or run the command &rsquo;sysctl vm.overcommit\_memory=1&rsquo; for this to take effect.

docker-compose down
docker-compose up -d

makes it more reliable, it seems

room = Room.find\_by\_id(&rsquo;8b3f36b1-7aee-459d-b963-bddcfe03e1db&rsquo;)

o = MeetingOption.find\_by\_name(&rsquo;glAnyoneCanStart&rsquo;)
o.default\_value = &rsquo;true&rsquo;
o.save!

o = MeetingOption.find\_by\_name(&rsquo;glModeratorAccessCode&rsquo;)

&ldquo;<https://bbb.emacsverse.org/rooms/p4o-29n-esd-ow5/join>&rdquo;

    (dolist (talk (seq-filter (lambda (o)
    														(and (plist-get o :bbb-room)
    																 (not (plist-get o :bbb-mod-code))))
    													(emacsconf-publish-prepare-for-display (emacsconf-get-talk-info))))
    	(spookfox-js-injection-eval-in-active-tab
    	 (format "window.location.href = \"%s\""
    					 (replace-regexp-in-string "/join" "" (plist-get talk :bbb-room)))
    	 t)
    	(sleep-for 3)
    	(spookfox-js-injection-eval-in-active-tab
    	 "document.querySelector('button[data-rr-ui-event-key=\"settings\"]').click()" t)
    	(spookfox-js-injection-eval-in-active-tab
    	 "document.querySelector('input#glAnyoneCanStart').checked = true")
    	(spookfox-js-injection-eval-in-active-tab
    	 "document.querySelector('input#muteOnStart').checked = true")
    	(spookfox-js-injection-eval-in-active-tab
    	 "document.querySelectorAll('.border-end button')[2].click()" t)
    	(let ((code (spookfox-js-injection-eval-in-active-tab
    							 "document.querySelector('.access-code-input input').value" t)))
    		(message "Setting %s to %s" (plist-get talk :slug) code)
    		(emacsconf-set-property-from-slug
    		 talk "BBB_MOD_CODE"
    		 code)
    		(sit-for 2)))

    (dolist (talk (seq-filter (lambda (o)
    														(plist-get o :bbb-room))
    													(emacsconf-publish-prepare-for-display (emacsconf-get-talk-info))))
    	(spookfox-js-injection-eval-in-active-tab
    	 (format "window.location.href = \"%s\""
    					 (replace-regexp-in-string "/join" "" (plist-get talk :bbb-room)))
    	 t)
    	(sleep-for 3)
    	(spookfox-js-injection-eval-in-active-tab
    	 "document.querySelector('button[data-rr-ui-event-key=\"settings\"]').click()" t)
    	(sleep-for 3))


### DONE Figure out what&rsquo;s going on with BBB!


### DONE Create meeting rooms for each speaker

Now that I&rsquo;m more familiar with BigBlueButton and
Greenlight, I don&rsquo;t have to [use Spookfox to
automate creating BigBlueButton rooms in Mozilla
Firefox](https://sachachua.com/blog/2023/10/using-emacs-and-spookfox-to-automate-creating-bigbluebutton-rooms-in-mozilla-firefox/). I can just create them through the Rails
console.

docker exec -it greenlight-v3 bundle exec rails c

user\_id = User.find\_by\_email(&ldquo;sacha@sachachua.com&rdquo;).id

docker exec -it greenlight-v3 bundle exec rails console

    (mapconcat (lambda (group)
    					(format
    					 "Room.create(user_id: user_id, name: \"%s - %s\")\n"
    					 (plist-get (cadr group) :speakers)
    					 (string-join (mapcar (lambda (talk) (plist-get talk :slug))
    																			 (cdr group)))))
    				(emacsconf-mail-groups (emacsconf-active-talks (emacsconf-get-talk-info)))
    				"")

Print out the room IDs with

    Room.all.each { |x| puts x.friendly_id + " " + x.name }; nil

<https://github.com/bigbluebutton/greenlight/issues/1925>

After about 6 seconds, the rails console quits.
502 bad gateway

aaaaaaaaaah


### DONE Check BBB audio from my phone


### DONE Create accounts for corwin


### CANCELLED Customize BBB to process at night

<https://docs.bigbluebutton.org/3.0/administration/customize/>
Change processing time

On a 2.2.x BigBlueButton server, the server will process recordings as meetings finish. You can restrict the recording processing interval to specific hours by creating the file /etc/systemd/system/bbb-record-core.timer.d/override.conf with the contents

[Timer]
OnActiveSec=
OnUnitInactiveSec=
OnCalendar=21,22,23,00,01,02,03:\*:00
Persistent=false

and do systemctl daemon-reload. This file overrides the timing of when systemd runs bbb-record-core.target. In the above example, recordings will start processing between 21:00 and 03:59.

-   [Set up rooms and assign as properties](file:///home/sacha/sync/orgzly/Inbox.md)


### TODO Change background presentation

<https://docs.bigbluebutton.org/3.0/administration/customize/#change-the-default-presentation>


### TODO Modify landing page

/var/www/bigbluebutton-default/assets/index.html
keep backup copy as it will be overwritten when bbb-conf is called


### TODO Change default welcome message

<https://docs.bigbluebutton.org/3.0/administration/customize/#change-the-default-welcome-message>


### TODO Change html5 title

/usr/share/bigbluebutton/html5-client/private/config/settings.yml

TARGET=/usr/share/bigbluebutton/html5-client/private/config/settings.yml
yq e -i &ldquo;.public.app.clientTitle = \\&rdquo;EmacsConf\\&ldquo;&rdquo; $TARGET


### TODO Try live captions

<https://docs.bigbluebutton.org/3.0/administration/customize/#enable-live-captions>


### TODO Explore meeting layout? Default to custom, hosts will need to drag people&rsquo;s webcam over if there&rsquo;s a share


<a id="org11b6c71"></a>

## IRC web client


### DONE Ask libera.chat to increase connections allowed from chat.emacsconf.org on Dec 7 and 8


<a id="orgb8a433f"></a>

## IRC announcements


### DONE Confirm manual IRC announcements


### TODO Confirm automated IRC announcements from res


<a id="org03dcc03"></a>

## Media


### TODO Switch public media to unprotected root before the conference

1.  Clear public media directory.
2.  Set `media_protect_root` to false in Ansible `group_vars/all.yml`.
3.  `ansible-playbook -i inventory.yml prod-playbook.yml --tags media`

You can generate the index with `emacsconf-publish-update-media`.


<a id="orge4da177"></a>

## TODO Publishing resources to the wiki

ansible-playbook -i inventory.yml prod-playbook.yml &#x2013;tags publish


<a id="org2f0fe40"></a>

## TODO Publishing videos to the media server


<a id="org7249cc1"></a>

## Playing videos, switching to windows


### TODO Generate test videos for everything


### TODO Document how to get that set up again


<a id="org4797183"></a>

## Etherpad


### TODO Generate pads for all the talks


### TODO Generate the main index


<a id="orgb6b106c"></a>

## TODO Do a dry run


### DONE Generate all the test assets


### TODO Test connecting to VNC and streaming via OBS


<a id="org8cdd1f2"></a>

## Resizing

live0: 64GB
front0: 32GB
meet: 64GB


### TODO Resize nodes before production

live0: 64GB
front0: 32GB
meet: 64GB


### TODO Resize nodes after production

live0: nanode
front0: nanode


### TODO Resize meet after production

meet: nanode


<a id="orgd55dfc6"></a>

# Processes and notes


<a id="org2f0255a"></a>

## Hosting


### TODO Finalize host for dev track


<a id="org91e21c3"></a>

## ERC

Some convenient commands are defined in <a href="https://git.emacsconf.org/emacsconf-el/tree/emacsconf-erc.el">emacsconf-erc.el</a>.

<table>


<colgroup>
<col  class="org-left">

<col  class="org-left">
</colgroup>
<tbody>
<tr>
<td class="org-left">/opall</td>
<td class="org-left">Grant operator status in the Emacsconf channels</td>
</tr>

<tr>
<td class="org-left">/deopall</td>
<td class="org-left">Remove operator status in the Emacsconf channels</td>
</tr>

<tr>
<td class="org-left">/conftopic</td>
<td class="org-left">Set the first part of the topic</td>
</tr>
</tbody>
</table>


<a id="decisions"></a>

# Decisions


<a id="bbb"></a>

## BigBlueButton replacement (BBB)

The server running bbb.emacsverse.org has been decommissioned, since the nonprofit that shared it with us is defunct.

-   We&rsquo;d like to figure out what our live Q&A setup is going to be for EmacsConf 2024 (Dec 7-8).
-   Nice to have: Hosting for other Emacs meetups like Emacs APAC and OrgMeetup
-   [Stats from last year](https://sachachua.com/blog/2023/12/emacsconf-backstage-figuring-out-our-maximum-number-of-simultaneous-bigbluebutton-users/): 31 meetings, 84 unique users, 62 max simultaneous users, 6 max simultaneous meetings, 27 max users in one meeting, 36 unique talking
    -   also includes some notes on hosting
-   Nice thing about running our own server: we can make one room per speaker, pre-assign their URLs, and let people stay as long as they want in recorded Q&A sessions

Recommendation:

We spin up a shared CPU 4GB under bandali&rsquo;s Linode
account (for bandwidth pooling and easier
reimbursement), do the setup/testing, scale down
as small as possible over the next few weeks,
scale up to dedicated CPU 16GB a day or two before
the conference, and keep it at that level until
the recordings are all done. I have access to that
Linode account, so I can set it up. If bandali can
configure emacsverse.org to be handled by Linode,
I can manage the DNS changes, or he can change
bbb.emacsverse.org to the IP address of the new
node.

Some options:

-   Linode with 16GB RAM and 8 cores
    -   Advantages: can experiment with both Galene and BBB, manage things ourselves, have filesystem access
    -   Disadvantages: needs someone to do it
    -   Base pricing
        -   Shared CPU 4GB 80GB storage: hourly USD 0.04, monthly USD 24
        -   Dedicated CPU 16GB: hourly USD 0.22, daily 5.28, weekly 36.96, monthly USD 144 - meets minimum requirements and can probably support 200 simultaneous ([FAQ](https://docs.bigbluebutton.org/support/faq/))
        -   Shared CPU 8GB 160GB storage: hourly USD 0.07
        -   Shared CPU 16GB 320GB storage: hourly USD 0.14
        -   Last year
        -   Block storage: $1/10GB/month
            -   125M/hour - [FAQ](https://docs.bigbluebutton.org/support/faq/#what-is-the-disk-space-usage-for-storing-one-hour-of-recordings)
            -   In 2023, we had 31 hours of trimmed recordings (main + answers),
                -   (\* 31 0.125) 3.875, oh, maybe we can get away with 10GB storage and add another chunk of 10GB midway if we need it, or extend the dedicated
                -   Actually, block storage probably not needed if we&rsquo;re going to keep the big instance up until the recordings are done
    -   Ideas
        -   **We&rsquo;re here &#x2013; Option B: Run a slightly larger shared CPU instance from now until shortly before the conference, then scale up** in case BBB does not work for installation/testing with less memory; block storage probably not needed
            -   (\* 0.07 24 7 3) USD 35.28 for 8GB, total (+ 35.28 36.96) USD 72.24
            -   (\* 0.14 24 7 3) USD 70.56 for 16GB, total (+ 70.56 36.96) USD 107.52
        -   **Option A: Run a small instance continuously, scale up for the conference, pull the recordings off, spin the instance down** - est total USD 60+tax
            -   There are three weeks between now and the conference (\* 0.04 24 7 3) USD 20
            -   Last year, recordings were available within three days after the conference
            -   Let&rsquo;s plan for a week at high capacity. (\* 0.22 24 7) USD 36.96
            -   and a month of 10GB, possibly up to 30GB. USD 3
            -   That&rsquo;s probably small enough that it doesn&rsquo;t make as much sense to try to fully spin down for a week in between now and the conference (\* 0.04 24 7) - which would save USD 6.72 but require figuring out backing up, etc.

-   Ask FSF if we can borrow their BBB or Galene, maybe limit it to cycling among 6 or 7 rooms
    -   Waiting for feedback; Corwin has asked them
-   Pay for BigBlueButton hosting; can we find one that&rsquo;s compatible with our commitment to freedom?
    -   <https://bigbluebutton.host/plans/#economyplans> - Economy 120 (USD 130/month) or Economy 80 (USD 85/month), custom URL
    -   <https://www.bigbluemeeting.com/#pricing> - 100 concurrent users: USD 125/month, custom URL
    -   <https://www.mynaparrot.com/affordable-bigbluebutton-hosting>
        -   100 concurrent users: USD 79/month
        -   200 concurrent users and custom URL: USD 15 setup fee + USD 149/month
    -   <https://www.webhostingzone.org/solutions/bigbluebutton-hosting.html> - 150 concurrent, USD 75/month
    -   <https://bbbplugin.com/en/pricing/bigbluebutton-for-api/> - 250 concurrent, USD 49 setup + USD 108.80/month
    -   <https://biggerbluebutton.com/plans>
        -   150 concurrent users, 10 concurrent meetings, USD 40/month
        -   custom domain, 600 concurrent users, USD 149/month
    -   Compare with Linode pricing
-   Try to squeeze it onto res.emacsconf.org
    -   Tricky to run on a shared server; it likes to use a lot of ports and strongly recommends running it on its own server
-   Go back to using meet.jit.si?
    -   Free:
        -   Need to check speed, reliability
        -   Can send RTMP from the meeting itself
        -   <span class="timestamp-wrapper"><span class="timestamp">[2024-11-13 Wed] </span></span> I attended Ihor&rsquo;s
            OrgMeetup, which he hosted on meet.jit.si. I
            think he had bandwidth issues at some point
            and we lost his audio. I remember we ran
            into that problem before, too, when we used
            Jitsi for one of the Emacsconfs. Free Jitsi
            hosting might not be the right fit for us.
    -   Paid: USD 99/month + $0.01/min for recordings + $0.01 min (optional) for RTMP streaming
-   Galene?
    -   <span class="timestamp-wrapper"><span class="timestamp">[2024-10-31 Thu] </span></span> I checked out Galene in the last Emacs Berlin meeting. It&rsquo;s promising, but I think the user interface might still need a bit of work. Simple deployment (run one Go binary, I think), but muting/unmuting doesn&rsquo;t trigger enabling the microphone, and the chat was buggy to get to on my mobile device. Supposed to have support for raising hands.


<a id="support-code"></a>

# Support code

    (defun my-ox-link-path (link _ info)
    	(let* ((raw-path (org-element-property :path link)))
    		(setq raw-path
    					(org-export-file-uri
    					 (org-publish-file-relative-name raw-path info)))
    		;; Possibly append `:html-link-home' to relative file
    		;; name.
    		(let ((home (and (plist-get info :html-link-home)
    										 (org-trim (plist-get info :html-link-home)))))
    			(when (and home
    								 (plist-get info :html-link-use-abs-url)
    								 (not (file-name-absolute-p raw-path)))
    				(setq raw-path (concat (file-name-as-directory home) raw-path))))
    		raw-path))
    
    (defun my-org-md-link (link desc info)
    	(if (string= (org-element-property :type link) "file")
    			(let ((path (my-ox-link-path link desc info)))
    				(if (string= (file-name-extension path) "svg")
    						(with-temp-buffer
    							(insert-file-contents-literally path)
    							(buffer-string))
    					(org-md-link link desc info)))
    		(org-md-link link desc info)))
    
    (with-eval-after-load 'ox-md
    	(setf
    	 (alist-get 'link (org-export-backend-transcoders (org-export-get-backend 'md)))
    	 'my-org-md-link))