summaryrefslogtreecommitdiffstats
path: root/2024/info/blee-after.md
blob: dd748b9fb5e6fbc23d27d80c2f0fba41884d243b (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
<!-- Automatically generated by emacsconf-publish-after-page -->


<div class="transcript transcript-mainVideo"><a name="blee-mainVideo-transcript"></a><h1>Transcript</h1>

[[!template text="""Greetings. Salaam. This is Mohsen Banan.""" start="00:00:03.659" video="mainVideo-blee" id="subtitle"]]
[[!template text="""I am a software and internet engineer.""" start="00:00:08.400" video="mainVideo-blee" id="subtitle"]]
[[!template text="""The title of this presentation is &quot;About Blee&quot;.""" start="00:00:11.480" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Blee stands for""" start="00:00:16.360" video="mainVideo-blee" id="subtitle"]]
[[!template text="""ByStar Libre-Halaal Emacs Environment.""" start="00:00:17.260" video="mainVideo-blee" id="subtitle"]]
[[!template text="""In this presentation I want to look""" start="00:00:22.440" video="mainVideo-blee" id="subtitle"]]
[[!template text="""at Emacs as a primary ingredient for the usage""" start="00:00:24.320" video="mainVideo-blee" id="subtitle"]]
[[!template text="""environment of an autonomy and morality""" start="00:00:28.320" video="mainVideo-blee" id="subtitle"]]
[[!template text="""directed digital ecosystem.""" start="00:00:32.600" video="mainVideo-blee" id="subtitle"]]
[[!template text="""My focus here is not just Emacs.""" start="00:00:35.800" video="mainVideo-blee" id="subtitle"]]
[[!template text="""This is about augmenting Emacs in the context of""" start="00:00:38.280" video="mainVideo-blee" id="subtitle"]]
[[!template text="""our own specific digital ecosystem.""" start="00:00:42.320" video="mainVideo-blee" id="subtitle"]]
[[!template text="""This presentation is part theoretical""" start="00:00:46.716" video="mainVideo-blee" id="subtitle"]]
[[!template text="""and part practical.""" start="00:00:48.920" video="mainVideo-blee" id="subtitle"]]
[[!template text="""I spend about half of my time on the""" start="00:00:50.720" video="mainVideo-blee" id="subtitle"]]
[[!template text="""theory and the bigger picture.""" start="00:00:53.000" video="mainVideo-blee" id="subtitle"]]
[[!template text="""The second half is hands on and Emacs centric.""" start="00:00:55.000" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Emacs has long been recognized as the ultimate""" start="00:01:01.440" video="mainVideo-blee" id="subtitle"]]
[[!template text="""integration platform, enabling the creation of an""" start="00:01:04.960" video="mainVideo-blee" id="subtitle"]]
[[!template text="""unparalleled user environment.""" start="00:01:09.040" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Tomohiro is right on the mark when he says:""" start="00:01:12.820" video="mainVideo-blee" id="subtitle"]]
[[!template text="""&quot;The reason why Emacs platform is good""" start="00:01:16.240" video="mainVideo-blee" id="subtitle"]]
[[!template text="""is that it cooperates with OS,""" start="00:01:19.240" video="mainVideo-blee" id="subtitle"]]
[[!template text="""not because it is good by itself.&quot;""" start="00:01:21.920" video="mainVideo-blee" id="subtitle"]]
[[!template text="""But this recognition has often been in the""" start="00:01:25.000" video="mainVideo-blee" id="subtitle"]]
[[!template text="""context of a generic and abstract &quot;OS&quot;""" start="00:01:27.520" video="mainVideo-blee" id="subtitle"]]
[[!template text="""So, I am updating MATSUYAMA's observation as:""" start="00:01:31.680" video="mainVideo-blee" id="subtitle"]]
[[!template text="""&quot;The reason why Emacs platform is good is that""" start="00:01:36.460" video="mainVideo-blee" id="subtitle"]]
[[!template text="""it facilitates creation of specific integrated""" start="00:01:39.760" video="mainVideo-blee" id="subtitle"]]
[[!template text="""usage environments like Blee, which cooperate""" start="00:01:43.800" video="mainVideo-blee" id="subtitle"]]
[[!template text="""with Debian and BISOS as part of""" start="00:01:48.280" video="mainVideo-blee" id="subtitle"]]
[[!template text="""the Libre-Halaal ByStar Digital Ecosystem.&quot;""" start="00:01:51.360" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Emacs is an especially good choice as the universal core of""" start="00:01:57.320" video="mainVideo-blee" id="subtitle"]]
[[!template text="""user environments of a digital ecosystem, because it has an""" start="00:02:01.960" video="mainVideo-blee" id="subtitle"]]
[[!template text="""incredibly powerful display engine, and an incredibly""" start="00:02:07.840" video="mainVideo-blee" id="subtitle"]]
[[!template text="""powerful Elisp engine, and an incredibly powerful input""" start="00:02:12.160" video="mainVideo-blee" id="subtitle"]]
[[!template text="""methods engine, and an incredibly powerful common agents""" start="00:02:16.560" video="mainVideo-blee" id="subtitle"]]
[[!template text="""paradigm, and a very rich set of mature and convivial idioms""" start="00:02:20.960" video="mainVideo-blee" id="subtitle"]]
[[!template text="""and means for absorption and integration of external""" start="00:02:26.640" video="mainVideo-blee" id="subtitle"]]
[[!template text="""software services continuum capabilities.""" start="00:02:31.160" video="mainVideo-blee" id="subtitle"]]
[[!template text="""In our model, we first augment Emacs with a set""" start="00:02:35.880" video="mainVideo-blee" id="subtitle"]]
[[!template text="""of cohesive elisp capabilities and create Blee --""" start="00:02:40.000" video="mainVideo-blee" id="subtitle"]]
[[!template text="""ByStar Libre-Halaal Emacs Environment.""" start="00:02:45.080" video="mainVideo-blee" id="subtitle"]]
[[!template text="""We then further enhance Blee with an integrated""" start="00:02:48.960" video="mainVideo-blee" id="subtitle"]]
[[!template text="""framework on top of Debian called BISOS ---""" start="00:02:52.440" video="mainVideo-blee" id="subtitle"]]
[[!template text="""ByStar Internet Services Operating System.""" start="00:02:57.760" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Blee is inherently intertwined""" start="00:03:02.080" video="mainVideo-blee" id="subtitle"]]
[[!template text="""and integrated with BISOS.""" start="00:03:04.960" video="mainVideo-blee" id="subtitle"]]
[[!template text="""This combination of the universal BISOS and Blee""" start="00:03:07.560" video="mainVideo-blee" id="subtitle"]]
[[!template text="""then forms a foundation for creation of an""" start="00:03:12.160" video="mainVideo-blee" id="subtitle"]]
[[!template text="""autonomy directed digital ecosystem that we call""" start="00:03:15.720" video="mainVideo-blee" id="subtitle"]]
[[!template text="""ByStar.""" start="00:03:19.880" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Over the past two decades, I have been working on""" start="00:03:23.640" video="mainVideo-blee" id="subtitle"]]
[[!template text="""creating a comprehensive, interdisciplinary, and""" start="00:03:26.880" video="mainVideo-blee" id="subtitle"]]
[[!template text="""non-proprietary digital ecosystem.""" start="00:03:30.800" video="mainVideo-blee" id="subtitle"]]
[[!template text="""We call it ByStar (By*).""" start="00:03:34.240" video="mainVideo-blee" id="subtitle"]]
[[!template text="""ByStar challenges the existing""" start="00:03:36.360" video="mainVideo-blee" id="subtitle"]]
[[!template text="""proprietary American digital ecosystem""" start="00:03:38.440" video="mainVideo-blee" id="subtitle"]]
[[!template text="""while operating concurrently alongside it.""" start="00:03:41.240" video="mainVideo-blee" id="subtitle"]]
[[!template text="""ByStar's primary offerings are tangible autonomy""" start="00:03:46.120" video="mainVideo-blee" id="subtitle"]]
[[!template text="""and genuine privacy on a very large scale.""" start="00:03:50.472" video="mainVideo-blee" id="subtitle"]]
[[!template text="""By* is about redecentralization of internet""" start="00:03:54.960" video="mainVideo-blee" id="subtitle"]]
[[!template text="""application services.""" start="00:03:59.120" video="mainVideo-blee" id="subtitle"]]
[[!template text="""The * in ByStar stands for Unix's globing symbol.""" start="00:04:01.760" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Signifying that our scope is everything.""" start="00:04:06.840" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Blee is a bigger and different vision for Emacs.""" start="00:04:11.920" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Let's compare and contrast""" start="00:04:16.280" video="mainVideo-blee" id="subtitle"]]
[[!template text="""what I am proposing against""" start="00:04:17.800" video="mainVideo-blee" id="subtitle"]]
[[!template text="""common current practices of the Emacs culture.""" start="00:04:19.840" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Please permit me to be slightly cynical.""" start="00:04:24.500" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Much of what we have been seeing in the""" start="00:04:28.080" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Emacs culture and in emacsConf""" start="00:04:30.120" video="mainVideo-blee" id="subtitle"]]
[[!template text="""can be characterized as""" start="00:04:33.880" video="mainVideo-blee" id="subtitle"]]
[[!template text="""stories of tunnel vision engineers""" start="00:04:35.760" video="mainVideo-blee" id="subtitle"]]
[[!template text="""scratching various itches""" start="00:04:38.720" video="mainVideo-blee" id="subtitle"]]
[[!template text="""by integrating various capabilities""" start="00:04:40.560" video="mainVideo-blee" id="subtitle"]]
[[!template text="""and providing DIY recipes.""" start="00:04:43.880" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Emacs and Lisp are so powerful that""" start="00:04:47.720" video="mainVideo-blee" id="subtitle"]]
[[!template text="""people have come up""" start="00:04:50.040" video="mainVideo-blee" id="subtitle"]]
[[!template text="""with catch phrases like the""" start="00:04:51.840" video="mainVideo-blee" id="subtitle"]]
[[!template text="""&quot;Curse of Lisp&quot;.""" start="00:04:53.760" video="mainVideo-blee" id="subtitle"]]
[[!template text="""The curse is that""" start="00:04:56.440" video="mainVideo-blee" id="subtitle"]]
[[!template text="""the power of Lisp breeds individualism.""" start="00:04:57.560" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Because you can be so powerful alone,""" start="00:05:01.580" video="mainVideo-blee" id="subtitle"]]
[[!template text="""you work longer alone.""" start="00:05:04.600" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Because it is easy to spin""" start="00:05:06.720" video="mainVideo-blee" id="subtitle"]]
[[!template text="""your own whatever library,""" start="00:05:08.360" video="mainVideo-blee" id="subtitle"]]
[[!template text="""many people do.""" start="00:05:10.973" video="mainVideo-blee" id="subtitle"]]
[[!template text="""I am suggesting that we should raise the bar.""" start="00:05:13.220" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Let's cultivate Emacs in the context""" start="00:05:15.680" video="mainVideo-blee" id="subtitle"]]
[[!template text="""of our own digital ecosystem instead.""" start="00:05:19.360" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Do more and do more outside of Emacs and""" start="00:05:22.860" video="mainVideo-blee" id="subtitle"]]
[[!template text="""recognize that a well integrated""" start="00:05:26.840" video="mainVideo-blee" id="subtitle"]]
[[!template text="""smaller Emacs leads to a better usage environment.""" start="00:05:29.600" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Broadly speaking, digital ecosystems are viewed""" start="00:05:35.600" video="mainVideo-blee" id="subtitle"]]
[[!template text="""as consisting of 4 parts.""" start="00:05:39.000" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Ideology, Software, Services and Content.""" start="00:05:41.800" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Software, Services and Content are polyexistentials""" start="00:05:45.560" video="mainVideo-blee" id="subtitle"]]
[[!template text="""and can be analyzed from 3 different aspects:""" start="00:05:49.520" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Functionality, Usage and Manner-of-Existence.""" start="00:05:53.120" video="mainVideo-blee" id="subtitle"]]
[[!template text="""By &quot;manner-of-existence&quot; of polyexistentials""" start="00:05:57.280" video="mainVideo-blee" id="subtitle"]]
[[!template text="""we mean everything relating to how the""" start="00:06:00.560" video="mainVideo-blee" id="subtitle"]]
[[!template text="""polyexistential exists within society.""" start="00:06:03.120" video="mainVideo-blee" id="subtitle"]]
[[!template text="""This includes for example,""" start="00:06:06.480" video="mainVideo-blee" id="subtitle"]]
[[!template text="""are polyexistentials internally transparent?""" start="00:06:08.880" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Societal ideology determines manner-of-existence""" start="00:06:12.900" video="mainVideo-blee" id="subtitle"]]
[[!template text="""of Software, Services and Content.""" start="00:06:16.680" video="mainVideo-blee" id="subtitle"]]
[[!template text="""And in turn, manner-of-existence of Software,""" start="00:06:19.400" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Services and Content impacts society.""" start="00:06:22.800" video="mainVideo-blee" id="subtitle"]]
[[!template text="""In the American model,""" start="00:06:26.574" video="mainVideo-blee" id="subtitle"]]
[[!template text="""loss of privacy and autonomy are direct""" start="00:06:28.200" video="mainVideo-blee" id="subtitle"]]
[[!template text="""consequences of the IPR regime.""" start="00:06:31.720" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Based on this characterization, let's consider""" start="00:06:36.320" video="mainVideo-blee" id="subtitle"]]
[[!template text="""these three Digital Ecosystems:""" start="00:06:39.680" video="mainVideo-blee" id="subtitle"]]
[[!template text="""the Proprietary American Digital Ecosystem,""" start="00:06:42.500" video="mainVideo-blee" id="subtitle"]]
[[!template text="""FOSS and ByStar.""" start="00:06:45.880" video="mainVideo-blee" id="subtitle"]]
[[!template text="""The 5 big American proprietary tech companies,""" start="00:06:48.480" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Google, Microsoft, Apple, Facebook and Amazon""" start="00:06:51.720" video="mainVideo-blee" id="subtitle"]]
[[!template text="""have created 5 competing enclaves as mostly""" start="00:06:54.640" video="mainVideo-blee" id="subtitle"]]
[[!template text="""separate and isolated digital ecosystem.""" start="00:06:59.120" video="mainVideo-blee" id="subtitle"]]
[[!template text="""In this slide, I am focusing on the first 3""" start="00:07:03.395" video="mainVideo-blee" id="subtitle"]]
[[!template text="""and each of their OSs,""" start="00:07:06.160" video="mainVideo-blee" id="subtitle"]]
[[!template text="""their usage environments""" start="00:07:08.400" video="mainVideo-blee" id="subtitle"]]
[[!template text="""and their clouds.""" start="00:07:10.000" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Let's clearly recognize that the economic model""" start="00:07:12.640" video="mainVideo-blee" id="subtitle"]]
[[!template text="""of these proprietary digital ecosystems is""" start="00:07:15.760" video="mainVideo-blee" id="subtitle"]]
[[!template text="""&quot;Surveillance Capitalism&quot;.""" start="00:07:19.075" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Now, let's focus on""" start="00:07:21.695" video="mainVideo-blee" id="subtitle"]]
[[!template text="""the right side of this picture.""" start="00:07:23.280" video="mainVideo-blee" id="subtitle"]]
[[!template text="""On the non-proprietary side,""" start="00:07:24.920" video="mainVideo-blee" id="subtitle"]]
[[!template text="""based on the FOSS model,""" start="00:07:27.560" video="mainVideo-blee" id="subtitle"]]
[[!template text="""we have ended up with lots of components.""" start="00:07:29.120" video="mainVideo-blee" id="subtitle"]]
[[!template text="""We have Debian as a platform,""" start="00:07:32.080" video="mainVideo-blee" id="subtitle"]]
[[!template text="""we have Emacs as""" start="00:07:34.840" video="mainVideo-blee" id="subtitle"]]
[[!template text="""an editor-centered usage environment.""" start="00:07:35.760" video="mainVideo-blee" id="subtitle"]]
[[!template text="""But on the non-proprietary side we don't have""" start="00:07:38.890" video="mainVideo-blee" id="subtitle"]]
[[!template text="""anything that can""" start="00:07:42.040" video="mainVideo-blee" id="subtitle"]]
[[!template text="""reasonably be considered a digital ecosystem.""" start="00:07:43.080" video="mainVideo-blee" id="subtitle"]]
[[!template text="""I mean, the services aspect is missing.""" start="00:07:46.760" video="mainVideo-blee" id="subtitle"]]
[[!template text="""ByStar aspires to be""" start="00:07:52.140" video="mainVideo-blee" id="subtitle"]]
[[!template text="""a complete non-proprietary digital ecosystem.""" start="00:07:54.520" video="mainVideo-blee" id="subtitle"]]
[[!template text="""We were all born into the belief system of""" start="00:07:58.680" video="mainVideo-blee" id="subtitle"]]
[[!template text="""intellectual property rights,""" start="00:08:01.640" video="mainVideo-blee" id="subtitle"]]
[[!template text="""making it exceedingly difficult for us""" start="00:08:03.680" video="mainVideo-blee" id="subtitle"]]
[[!template text="""to even imagine that this""" start="00:08:07.320" video="mainVideo-blee" id="subtitle"]]
[[!template text="""foundational ownership framework""" start="00:08:08.720" video="mainVideo-blee" id="subtitle"]]
[[!template text="""could be fundamentally flawed.""" start="00:08:12.200" video="mainVideo-blee" id="subtitle"]]
[[!template text="""I am delighted to announce the availability of my""" start="00:08:15.759" video="mainVideo-blee" id="subtitle"]]
[[!template text="""recent book,""" start="00:08:19.480" video="mainVideo-blee" id="subtitle"]]
[[!template text="""&quot;Nature of Polyexistentials&quot;.""" start="00:08:20.920" video="mainVideo-blee" id="subtitle"]]
[[!template text="""The full title of my book is:""" start="00:08:24.100" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Nature of Polyexistentials""" start="00:08:26.743" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Basis for Abolishment of the""" start="00:08:28.760" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Western Intellectual Property Rights Regime""" start="00:08:31.040" video="mainVideo-blee" id="subtitle"]]
[[!template text="""And Introduction of""" start="00:08:35.460" video="mainVideo-blee" id="subtitle"]]
[[!template text="""the Libre-Halaal ByStar Digital Ecosystem.""" start="00:08:37.000" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Knowledge, know-how, uses of know-how, ideas,""" start="00:08:42.480" video="mainVideo-blee" id="subtitle"]]
[[!template text="""formulas, software and information are inherently""" start="00:08:45.240" video="mainVideo-blee" id="subtitle"]]
[[!template text="""non-scarce.""" start="00:08:49.000" video="mainVideo-blee" id="subtitle"]]
[[!template text="""They are polyexistentials.""" start="00:08:50.840" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Unlike monoexistentials which exist in singular,""" start="00:08:53.680" video="mainVideo-blee" id="subtitle"]]
[[!template text="""polyexistentials naturally exist in multiples.""" start="00:08:58.600" video="mainVideo-blee" id="subtitle"]]
[[!template text="""What is abundant in nature is being made""" start="00:09:03.500" video="mainVideo-blee" id="subtitle"]]
[[!template text="""artificially scarce through man-made ownership""" start="00:09:06.840" video="mainVideo-blee" id="subtitle"]]
[[!template text="""rules called copyright and patents.""" start="00:09:10.640" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Let me provide a brief overview.""" start="00:09:15.282" video="mainVideo-blee" id="subtitle"]]
[[!template text="""This book is divided into five parts,""" start="00:09:18.300" video="mainVideo-blee" id="subtitle"]]
[[!template text="""each representing a layer of interest to you""" start="00:09:20.960" video="mainVideo-blee" id="subtitle"]]
[[!template text="""and to our societal policymakers.""" start="00:09:24.400" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Part I, the philosophical layer""" start="00:09:28.351" video="mainVideo-blee" id="subtitle"]]
[[!template text="""delves into the concept of polyexistence.""" start="00:09:31.040" video="mainVideo-blee" id="subtitle"]]
[[!template text="""In this part, I introduce,""" start="00:09:34.480" video="mainVideo-blee" id="subtitle"]]
[[!template text="""for the very first time,""" start="00:09:37.480" video="mainVideo-blee" id="subtitle"]]
[[!template text="""the concepts and terminology of &quot;polyexistentials&quot;.""" start="00:09:39.040" video="mainVideo-blee" id="subtitle"]]
[[!template text="""The topic of restriction of polyexistentals""" start="00:09:43.840" video="mainVideo-blee" id="subtitle"]]
[[!template text="""and the Western IPR is one and the same.""" start="00:09:47.480" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Comprehending polyexistence invalidates""" start="00:09:50.800" video="mainVideo-blee" id="subtitle"]]
[[!template text="""the Western IPR model.""" start="00:09:55.360" video="mainVideo-blee" id="subtitle"]]
[[!template text="""We are living inside of an ownership fallacy.""" start="00:09:57.633" video="mainVideo-blee" id="subtitle"]]
[[!template text="""The Western IPR regime is a sin of our times.""" start="00:10:00.840" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Part II is the pathology layer.""" start="00:10:06.147" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Over the course of the past two centuries,""" start="00:10:09.560" video="mainVideo-blee" id="subtitle"]]
[[!template text="""numerous theories have been proposed to justify""" start="00:10:12.960" video="mainVideo-blee" id="subtitle"]]
[[!template text="""intellectual property.""" start="00:10:16.600" video="mainVideo-blee" id="subtitle"]]
[[!template text="""In this Part, I offer""" start="00:10:18.680" video="mainVideo-blee" id="subtitle"]]
[[!template text="""my perspective on the weaknesses inherent""" start="00:10:20.760" video="mainVideo-blee" id="subtitle"]]
[[!template text="""in each of these theories.""" start="00:10:23.840" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Part III, the ethics layer,""" start="00:10:26.700" video="mainVideo-blee" id="subtitle"]]
[[!template text="""focuses on contours of cures.""" start="00:10:29.120" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Having dismissed the Western intellectual""" start="00:10:32.500" video="mainVideo-blee" id="subtitle"]]
[[!template text="""property rights regime as an erroneous""" start="00:10:35.221" video="mainVideo-blee" id="subtitle"]]
[[!template text="""governance model for polyexistentials,""" start="00:10:38.641" video="mainVideo-blee" id="subtitle"]]
[[!template text="""I propose the""" start="00:10:42.000" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Libre-Halaal model of governance of polyexistentials""" start="00:10:43.440" video="mainVideo-blee" id="subtitle"]]
[[!template text="""towards facilitating conviviality of tools.""" start="00:10:48.280" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Part IV, the engineering layer, introduces the""" start="00:10:53.480" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Libre-Halaal ByStar Digital Ecosystem.""" start="00:10:57.200" video="mainVideo-blee" id="subtitle"]]
[[!template text="""as an ethical alternative to the prevailing""" start="00:11:00.200" video="mainVideo-blee" id="subtitle"]]
[[!template text="""proprietary American digital ecosystem.""" start="00:11:04.320" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Part V, the sociology layer,""" start="00:11:08.071" video="mainVideo-blee" id="subtitle"]]
[[!template text="""delves into formulation of""" start="00:11:11.160" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Libre-Halaal oriented societal policies.""" start="00:11:13.800" video="mainVideo-blee" id="subtitle"]]
[[!template text="""It is evident that the abolition of intellectual""" start="00:11:17.560" video="mainVideo-blee" id="subtitle"]]
[[!template text="""property carries significant consequences.""" start="00:11:21.680" video="mainVideo-blee" id="subtitle"]]
[[!template text="""In this Part, I present my thoughts on this""" start="00:11:25.280" video="mainVideo-blee" id="subtitle"]]
[[!template text="""particular dimension for Eastern societies.""" start="00:11:29.120" video="mainVideo-blee" id="subtitle"]]
[[!template text="""For Western societies I confine myself to""" start="00:11:33.080" video="mainVideo-blee" id="subtitle"]]
[[!template text="""inside of IPR strategies.""" start="00:11:37.440" video="mainVideo-blee" id="subtitle"]]
[[!template text="""You can think of this book as being in two volumes.""" start="00:11:41.500" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Our focus is Blee in Volume II.""" start="00:11:44.880" video="mainVideo-blee" id="subtitle"]]
[[!template text="""But as our blueprint needs to be interdisciplinary,""" start="00:11:48.980" video="mainVideo-blee" id="subtitle"]]
[[!template text="""there are some key concepts of Volume I that I'll""" start="00:11:52.880" video="mainVideo-blee" id="subtitle"]]
[[!template text="""briefly discuss here.""" start="00:11:56.840" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Volume I deals with the general concept of""" start="00:12:00.359" video="mainVideo-blee" id="subtitle"]]
[[!template text="""polyexistence and invalidity of IPR.""" start="00:12:03.600" video="mainVideo-blee" id="subtitle"]]
[[!template text="""In Chapter 11, I introduce the very sensitive and potent""" start="00:12:07.600" video="mainVideo-blee" id="subtitle"]]
[[!template text="""vocabulary of Halaal and Libre-Halaal.""" start="00:12:13.440" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Volume II is backed by software and internet""" start="00:12:17.780" video="mainVideo-blee" id="subtitle"]]
[[!template text="""services.""" start="00:12:20.920" video="mainVideo-blee" id="subtitle"]]
[[!template text="""The contents of this book""" start="00:12:22.602" video="mainVideo-blee" id="subtitle"]]
[[!template text="""belong to all of humanity""" start="00:12:23.800" video="mainVideo-blee" id="subtitle"]]
[[!template text="""and verbatim copying of it is unrestricted.""" start="00:12:26.320" video="mainVideo-blee" id="subtitle"]]
[[!template text="""If you want to read it, this book is yours.""" start="00:12:29.840" video="mainVideo-blee" id="subtitle"]]
[[!template text="""The &quot;Nature of Polyexistentials&quot; book is""" start="00:12:33.681" video="mainVideo-blee" id="subtitle"]]
[[!template text="""available both online and in print.""" start="00:12:36.920" video="mainVideo-blee" id="subtitle"]]
[[!template text="""This book is available as two editions.""" start="00:12:41.500" video="mainVideo-blee" id="subtitle"]]
[[!template text="""The US Edition and the International edition.""" start="00:12:44.160" video="mainVideo-blee" id="subtitle"]]
[[!template text="""The US Edition is written with""" start="00:12:48.082" video="mainVideo-blee" id="subtitle"]]
[[!template text="""a slightly milder Western unfriendly tone,""" start="00:12:50.680" video="mainVideo-blee" id="subtitle"]]
[[!template text="""while the International Edition""" start="00:12:54.280" video="mainVideo-blee" id="subtitle"]]
[[!template text="""includes additional original content in Farsi.""" start="00:12:57.160" video="mainVideo-blee" id="subtitle"]]
[[!template text="""I consider the International Edition to be the""" start="00:13:02.324" video="mainVideo-blee" id="subtitle"]]
[[!template text="""authoritative version.""" start="00:13:05.840" video="mainVideo-blee" id="subtitle"]]
[[!template text="""However, many readers in""" start="00:13:07.160" video="mainVideo-blee" id="subtitle"]]
[[!template text="""the US and Western countries""" start="00:13:09.960" video="mainVideo-blee" id="subtitle"]]
[[!template text="""may prefer the US Edition.""" start="00:13:12.240" video="mainVideo-blee" id="subtitle"]]
[[!template text="""I maintain separate Git repositories""" start="00:13:15.614" video="mainVideo-blee" id="subtitle"]]
[[!template text="""for each edition on GitHub.""" start="00:13:18.720" video="mainVideo-blee" id="subtitle"]]
[[!template text="""US Edition is at bxplpc/120033 and""" start="00:13:21.560" video="mainVideo-blee" id="subtitle"]]
[[!template text="""International Edition is at bxplpc/120074""" start="00:13:28.640" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Cloning these repositories will give you access""" start="00:13:36.140" video="mainVideo-blee" id="subtitle"]]
[[!template text="""to the book in PDF format (suitable for both A4""" start="00:13:40.400" video="mainVideo-blee" id="subtitle"]]
[[!template text="""and US Letter printing) and in EPUB format.""" start="00:13:45.560" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Alternatively, the content can be downloaded""" start="00:13:50.640" video="mainVideo-blee" id="subtitle"]]
[[!template text="""directly from your browser without needing to""" start="00:13:54.400" video="mainVideo-blee" id="subtitle"]]
[[!template text="""clone the repositories.""" start="00:13:58.640" video="mainVideo-blee" id="subtitle"]]
[[!template text="""To ensure broader online availability and""" start="00:14:01.948" video="mainVideo-blee" id="subtitle"]]
[[!template text="""stability, I have also published the book on""" start="00:14:05.200" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Zenodo, complete with a""" start="00:14:09.280" video="mainVideo-blee" id="subtitle"]]
[[!template text="""DOI (Digital Object Identifier).""" start="00:14:11.880" video="mainVideo-blee" id="subtitle"]]
[[!template text="""You can download both the A4 and""" start="00:14:16.400" video="mainVideo-blee" id="subtitle"]]
[[!template text="""8.5 x 11 PDFs from there as well.""" start="00:14:20.400" video="mainVideo-blee" id="subtitle"]]
[[!template text="""The book is also available in print on Amazon and""" start="00:14:25.290" video="mainVideo-blee" id="subtitle"]]
[[!template text="""at most major bookstores in""" start="00:14:28.920" video="mainVideo-blee" id="subtitle"]]
[[!template text="""the US and Western regions.""" start="00:14:30.960" video="mainVideo-blee" id="subtitle"]]
[[!template text="""The ISBNs for both editions""" start="00:14:34.140" video="mainVideo-blee" id="subtitle"]]
[[!template text="""are included in this slide.""" start="00:14:36.320" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Additionally, I have published""" start="00:14:38.900" video="mainVideo-blee" id="subtitle"]]
[[!template text="""this book in Iran through Jangal Publishers.""" start="00:14:41.080" video="mainVideo-blee" id="subtitle"]]
[[!template text="""I did not write this book for profit.""" start="00:14:45.520" video="mainVideo-blee" id="subtitle"]]
[[!template text="""My aim is to share my thoughts""" start="00:14:47.800" video="mainVideo-blee" id="subtitle"]]
[[!template text="""and encourage readers to""" start="00:14:50.080" video="mainVideo-blee" id="subtitle"]]
[[!template text="""engage with my views and ideas.""" start="00:14:52.480" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Your feedback is welcome, and""" start="00:14:54.800" video="mainVideo-blee" id="subtitle"]]
[[!template text="""I am genuinely interested in""" start="00:14:57.240" video="mainVideo-blee" id="subtitle"]]
[[!template text="""hearing your perspectives.""" start="00:14:59.280" video="mainVideo-blee" id="subtitle"]]
[[!template text="""In Western markets, I have priced the print""" start="00:15:02.040" video="mainVideo-blee" id="subtitle"]]
[[!template text="""edition somewhat above production costs.""" start="00:15:05.000" video="mainVideo-blee" id="subtitle"]]
[[!template text="""If you find value in the""" start="00:15:09.220" video="mainVideo-blee" id="subtitle"]]
[[!template text="""book and the ByStar project,""" start="00:15:10.920" video="mainVideo-blee" id="subtitle"]]
[[!template text="""purchasing a copy will help support my work.""" start="00:15:13.400" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Thanks in advance for your support.""" start="00:15:16.840" video="mainVideo-blee" id="subtitle"]]
[[!template text="""And here are the same links""" start="00:15:22.315" video="mainVideo-blee" id="subtitle"]]
[[!template text="""as a native Reveal slide.""" start="00:15:24.200" video="mainVideo-blee" id="subtitle"]]
[[!template text="""If instead of a video, you are viewing this""" start="00:15:26.900" video="mainVideo-blee" id="subtitle"]]
[[!template text="""presentation as a Reveal web page,""" start="00:15:29.520" video="mainVideo-blee" id="subtitle"]]
[[!template text="""you can just click on the pointers and URLs.""" start="00:15:32.480" video="mainVideo-blee" id="subtitle"]]
[[!template text="""The concept of polyexistentials has not appeared""" start="00:15:37.680" video="mainVideo-blee" id="subtitle"]]
[[!template text="""in prior discussions of validity of IPR.""" start="00:15:41.520" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Once you start thinking in terms of monoexistence""" start="00:15:46.340" video="mainVideo-blee" id="subtitle"]]
[[!template text="""and polyexistence, the recognition of""" start="00:15:49.920" video="mainVideo-blee" id="subtitle"]]
[[!template text="""illegitimacy of Western IPR becomes very simple.""" start="00:15:53.760" video="mainVideo-blee" id="subtitle"]]
[[!template text="""I want to very quickly give you a taste of that.""" start="00:15:58.949" video="mainVideo-blee" id="subtitle"]]
[[!template text="""You can of course dig deeper in the book.""" start="00:16:03.060" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Existence and possession are aspects of nature.""" start="00:16:06.495" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Ownership are man-made rules.""" start="00:16:10.620" video="mainVideo-blee" id="subtitle"]]
[[!template text="""All material  objects exist in singular""" start="00:16:13.780" video="mainVideo-blee" id="subtitle"]]
[[!template text="""and are  monoexistentials.""" start="00:16:16.760" video="mainVideo-blee" id="subtitle"]]
[[!template text="""For monoexistentials, things  are simple.""" start="00:16:19.481" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Monoexsitentials, say paper,""" start="00:16:22.971" video="mainVideo-blee" id="subtitle"]]
[[!template text="""exists  in singular.""" start="00:16:25.520" video="mainVideo-blee" id="subtitle"]]
[[!template text="""It naturally has a single  possessor.""" start="00:16:27.600" video="mainVideo-blee" id="subtitle"]]
[[!template text="""A single owner can be assigned to it""" start="00:16:31.776" video="mainVideo-blee" id="subtitle"]]
[[!template text="""which then makes that single possession lawful.""" start="00:16:35.080" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Polyexistentials naturally exist in multiples.""" start="00:16:40.580" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Much of our world is actually a mixture of""" start="00:16:45.200" video="mainVideo-blee" id="subtitle"]]
[[!template text="""monoexistentials and polyexistentials,""" start="00:16:48.280" video="mainVideo-blee" id="subtitle"]]
[[!template text="""which we call mixed-existentials.""" start="00:16:51.240" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Possession of polyexistentials is naturally""" start="00:16:57.040" video="mainVideo-blee" id="subtitle"]]
[[!template text="""many-to-many. Without any conflict,""" start="00:17:01.000" video="mainVideo-blee" id="subtitle"]]
[[!template text="""polyexistentials can have many possessors.""" start="00:17:04.160" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Polyexistentials are inherently Non-Rivalry.""" start="00:17:07.880" video="mainVideo-blee" id="subtitle"]]
[[!template text="""The requirement for ownership to be in harmony""" start="00:17:13.640" video="mainVideo-blee" id="subtitle"]]
[[!template text="""with the nature of possession and existence is""" start="00:17:17.520" video="mainVideo-blee" id="subtitle"]]
[[!template text="""violated by the Western IPR regime which assigns""" start="00:17:20.840" video="mainVideo-blee" id="subtitle"]]
[[!template text="""a single owner to what exists""" start="00:17:26.080" video="mainVideo-blee" id="subtitle"]]
[[!template text="""and is possessed in multiples.""" start="00:17:28.640" video="mainVideo-blee" id="subtitle"]]
[[!template text="""The end result is""" start="00:17:32.340" video="mainVideo-blee" id="subtitle"]]
[[!template text="""creation of Artificial Scarcity.""" start="00:17:33.720" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Ramification of ownership mistakes""" start="00:17:37.140" video="mainVideo-blee" id="subtitle"]]
[[!template text="""are usually catastrophic.""" start="00:17:39.600" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Consider the previous Western and American""" start="00:17:41.680" video="mainVideo-blee" id="subtitle"]]
[[!template text="""ownership mistake -- that of American Slavery --""" start="00:17:45.760" video="mainVideo-blee" id="subtitle"]]
[[!template text="""ownership of Africans by Americans and Europeans.""" start="00:17:50.080" video="mainVideo-blee" id="subtitle"]]
[[!template text="""See Chapter 7 -""" start="00:17:55.000" video="mainVideo-blee" id="subtitle"]]
[[!template text="""&quot;Western Slavery and the Western IPR Regime&quot;""" start="00:17:56.640" video="mainVideo-blee" id="subtitle"]]
[[!template text="""of the book for some parallels""" start="00:18:00.320" video="mainVideo-blee" id="subtitle"]]
[[!template text="""between these mistakes.""" start="00:18:02.960" video="mainVideo-blee" id="subtitle"]]
[[!template text="""This time with the Western IPR ownership mistake""" start="00:18:04.480" video="mainVideo-blee" id="subtitle"]]
[[!template text="""all of humanity is in danger.""" start="00:18:09.400" video="mainVideo-blee" id="subtitle"]]
[[!template text="""So, how are we to""" start="00:18:13.780" video="mainVideo-blee" id="subtitle"]]
[[!template text="""correct this catastrophic mistake?""" start="00:18:15.560" video="mainVideo-blee" id="subtitle"]]
[[!template text="""The strategies of Public Licenses and""" start="00:18:18.740" video="mainVideo-blee" id="subtitle"]]
[[!template text="""FOSS are not sufficient.""" start="00:18:21.680" video="mainVideo-blee" id="subtitle"]]
[[!template text="""hese are minor band-aids.""" start="00:18:24.680" video="mainVideo-blee" id="subtitle"]]
[[!template text="""We need to do a lot more.""" start="00:18:26.680" video="mainVideo-blee" id="subtitle"]]
[[!template text="""We need to understand what are we going to""" start="00:18:28.640" video="mainVideo-blee" id="subtitle"]]
[[!template text="""replace the mistaken Western IPR regime with.""" start="00:18:31.720" video="mainVideo-blee" id="subtitle"]]
[[!template text="""My answer is:""" start="00:18:36.280" video="mainVideo-blee" id="subtitle"]]
[[!template text="""&quot;Libre-Halaal Governance of Polyexistentials&quot;.""" start="00:18:37.560" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Much of my book revolves around that.""" start="00:18:41.360" video="mainVideo-blee" id="subtitle"]]
[[!template text="""We need to fully reject ownership of""" start="00:18:44.480" video="mainVideo-blee" id="subtitle"]]
[[!template text="""polyexistentals and replace it with attribution""" start="00:18:47.880" video="mainVideo-blee" id="subtitle"]]
[[!template text="""machinaries towards just rewards.""" start="00:18:52.120" video="mainVideo-blee" id="subtitle"]]
[[!template text="""We need to abolish the &quot;Artificial Scarcity&quot; of""" start="00:18:56.090" video="mainVideo-blee" id="subtitle"]]
[[!template text="""polyexistentials that the Western IPR regime""" start="00:19:00.880" video="mainVideo-blee" id="subtitle"]]
[[!template text="""has created and restore""" start="00:19:04.040" video="mainVideo-blee" id="subtitle"]]
[[!template text="""polyexistentals back to their natural state,""" start="00:19:06.800" video="mainVideo-blee" id="subtitle"]]
[[!template text="""that of &quot;Non-Rivalrous Public Goods&quot;.""" start="00:19:10.080" video="mainVideo-blee" id="subtitle"]]
[[!template text="""By now many Westerners and many West-Toxicated""" start="00:19:16.940" video="mainVideo-blee" id="subtitle"]]
[[!template text="""are thinking: these are empty slogans that are""" start="00:19:20.120" video="mainVideo-blee" id="subtitle"]]
[[!template text="""going no where.""" start="00:19:24.040" video="mainVideo-blee" id="subtitle"]]
[[!template text="""And they are right.""" start="00:19:25.000" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Copyright and Patents are""" start="00:19:26.280" video="mainVideo-blee" id="subtitle"]]
[[!template text="""fully entrenched in the West.""" start="00:19:28.520" video="mainVideo-blee" id="subtitle"]]
[[!template text="""But what about the rest of the world,""" start="00:19:30.680" video="mainVideo-blee" id="subtitle"]]
[[!template text="""what about the""" start="00:19:33.320" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Chinese, the Iranians, Brazilians, Cubans""" start="00:19:34.520" video="mainVideo-blee" id="subtitle"]]
[[!template text="""and the rest.""" start="00:19:37.560" video="mainVideo-blee" id="subtitle"]]
[[!template text="""The Intellectual Property Rights""" start="00:19:39.240" video="mainVideo-blee" id="subtitle"]]
[[!template text="""regime is not universal.""" start="00:19:41.240" video="mainVideo-blee" id="subtitle"]]
[[!template text="""There is more to the World than the West.""" start="00:19:43.880" video="mainVideo-blee" id="subtitle"]]
[[!template text="""What if the WTO was to be recognized""" start="00:19:47.320" video="mainVideo-blee" id="subtitle"]]
[[!template text="""for what it is:""" start="00:19:50.760" video="mainVideo-blee" id="subtitle"]]
[[!template text="""the Western Trade Organization?""" start="00:19:52.320" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Thus far, I have been discussing the nature of""" start="00:19:56.120" video="mainVideo-blee" id="subtitle"]]
[[!template text="""all polyexistentials -- any formula in any form.""" start="00:19:58.880" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Next, I want to turn our attention to""" start="00:20:04.520" video="mainVideo-blee" id="subtitle"]]
[[!template text="""digitals in general and Software in particular.""" start="00:20:07.440" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Software is a""" start="00:20:12.480" video="mainVideo-blee" id="subtitle"]]
[[!template text="""very special form of polyexistentials.""" start="00:20:13.360" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Software is immediately useful.""" start="00:20:16.160" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Software produces tools.""" start="00:20:18.720" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Digitals as text, music, video, etc.""" start="00:20:21.120" video="mainVideo-blee" id="subtitle"]]
[[!template text="""are pure forms of polyexistentials""" start="00:20:25.400" video="mainVideo-blee" id="subtitle"]]
[[!template text="""that are controlled by software.""" start="00:20:28.720" video="mainVideo-blee" id="subtitle"]]
[[!template text="""As developers we know well that we can best""" start="00:20:31.320" video="mainVideo-blee" id="subtitle"]]
[[!template text="""produce good software through collaboration.""" start="00:20:35.680" video="mainVideo-blee" id="subtitle"]]
[[!template text="""In that collaborative model,""" start="00:20:38.760" video="mainVideo-blee" id="subtitle"]]
[[!template text="""the software itself performs a collaborative role.""" start="00:20:41.560" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Software functions as a vessel for accumulation""" start="00:20:45.880" video="mainVideo-blee" id="subtitle"]]
[[!template text="""of our expert component contributions.""" start="00:20:50.360" video="mainVideo-blee" id="subtitle"]]
[[!template text="""The Western IPR model cultivates""" start="00:20:54.560" video="mainVideo-blee" id="subtitle"]]
[[!template text="""&quot;Artificial Scarcities&quot; and &quot;competition&quot;,""" start="00:20:57.680" video="mainVideo-blee" id="subtitle"]]
[[!template text="""but software developers instinctly""" start="00:21:00.920" video="mainVideo-blee" id="subtitle"]]
[[!template text="""recognized the superiority of""" start="00:21:04.280" video="mainVideo-blee" id="subtitle"]]
[[!template text="""the natural collaborative model.""" start="00:21:07.040" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Through Public Licenses, us software developers,""" start="00:21:10.440" video="mainVideo-blee" id="subtitle"]]
[[!template text="""have done a jujitsu on the IPR model and have""" start="00:21:14.120" video="mainVideo-blee" id="subtitle"]]
[[!template text="""created a collaborative framework inside of the""" start="00:21:19.230" video="mainVideo-blee" id="subtitle"]]
[[!template text="""copyright model. Based on that,""" start="00:21:22.720" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Natural Public Goods""" start="00:21:25.920" video="mainVideo-blee" id="subtitle"]]
[[!template text="""have defeated Artificial Scarcity.""" start="00:21:27.720" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Our success with software is proof that the""" start="00:21:31.680" video="mainVideo-blee" id="subtitle"]]
[[!template text="""entirety of the Western IPR regime is flawed.""" start="00:21:34.480" video="mainVideo-blee" id="subtitle"]]
[[!template text="""As a profession, us Software Engineers, need to""" start="00:21:40.240" video="mainVideo-blee" id="subtitle"]]
[[!template text="""create a relationship with society.""" start="00:21:44.280" video="mainVideo-blee" id="subtitle"]]
[[!template text="""We need to demand for societal rules""" start="00:21:47.380" video="mainVideo-blee" id="subtitle"]]
[[!template text="""which establish proper manner-of-existence""" start="00:21:50.520" video="mainVideo-blee" id="subtitle"]]
[[!template text="""of software and internet application services.""" start="00:21:53.600" video="mainVideo-blee" id="subtitle"]]
[[!template text="""In return, based on that,""" start="00:21:57.000" video="mainVideo-blee" id="subtitle"]]
[[!template text="""we should fulfill our guardianship role and make""" start="00:21:59.360" video="mainVideo-blee" id="subtitle"]]
[[!template text="""sure that autonomy and privacy are preserved and""" start="00:22:03.200" video="mainVideo-blee" id="subtitle"]]
[[!template text="""that practiced digital ecosystems are healthy.""" start="00:22:07.800" video="mainVideo-blee" id="subtitle"]]
[[!template text="""To get there we need to come up with the right""" start="00:22:11.760" video="mainVideo-blee" id="subtitle"]]
[[!template text="""label that represents the proper""" start="00:22:15.240" video="mainVideo-blee" id="subtitle"]]
[[!template text="""manner-of-existence of software.""" start="00:22:18.080" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Thus far, two labels""" start="00:22:20.940" video="mainVideo-blee" id="subtitle"]]
[[!template text="""have appeared on the scene:""" start="00:22:23.000" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Free Software and Open Source.""" start="00:22:24.400" video="mainVideo-blee" id="subtitle"]]
[[!template text="""I am saying that both are problematic.""" start="00:22:28.160" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Free Software is ill directed.""" start="00:22:32.200" video="mainVideo-blee" id="subtitle"]]
[[!template text="""It is based on the model of granting users,""" start="00:22:34.480" video="mainVideo-blee" id="subtitle"]]
[[!template text="""freedoms that are irrelevant to most software users.""" start="00:22:38.200" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Perhaps Copyleft or Ethical Software""" start="00:22:43.610" video="mainVideo-blee" id="subtitle"]]
[[!template text="""could have been better labels.""" start="00:22:46.680" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Open Source is a moral compromise.""" start="00:22:49.700" video="mainVideo-blee" id="subtitle"]]
[[!template text="""It rejects the requirement for perpetuity of Copyleft.""" start="00:22:52.360" video="mainVideo-blee" id="subtitle"]]
[[!template text="""It facilitates convergence of corporate interest""" start="00:22:58.440" video="mainVideo-blee" id="subtitle"]]
[[!template text="""and surrogate activities of software developers.""" start="00:23:02.000" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Over time, proprietary corporations too""" start="00:23:06.600" video="mainVideo-blee" id="subtitle"]]
[[!template text="""have come to recognize the""" start="00:23:09.840" video="mainVideo-blee" id="subtitle"]]
[[!template text="""superiority of the collaborative model.""" start="00:23:11.960" video="mainVideo-blee" id="subtitle"]]
[[!template text="""These proprietary corporations then derailed""" start="00:23:15.820" video="mainVideo-blee" id="subtitle"]]
[[!template text="""the original intent that all software""" start="00:23:18.960" video="mainVideo-blee" id="subtitle"]]
[[!template text="""should always remain open-source.""" start="00:23:21.920" video="mainVideo-blee" id="subtitle"]]
[[!template text="""With permissive public licenses which""" start="00:23:24.160" video="mainVideo-blee" id="subtitle"]]
[[!template text="""permit open-source becoming proprietary,""" start="00:23:27.320" video="mainVideo-blee" id="subtitle"]]
[[!template text="""the intent of Free Software has been""" start="00:23:31.720" video="mainVideo-blee" id="subtitle"]]
[[!template text="""marginalized and permissive open-source""" start="00:23:34.080" video="mainVideo-blee" id="subtitle"]]
[[!template text="""has become the norm.""" start="00:23:37.680" video="mainVideo-blee" id="subtitle"]]
[[!template text="""I expand on all of this in Chapter 12,""" start="00:23:40.120" video="mainVideo-blee" id="subtitle"]]
[[!template text="""&quot;Digital Non-Proprietary Movements&quot;.""" start="00:23:42.680" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Instead of Free Software and Open Source,""" start="00:23:46.900" video="mainVideo-blee" id="subtitle"]]
[[!template text="""the label that I introduce is: &quot;Libre-Halaal&quot;.""" start="00:23:49.600" video="mainVideo-blee" id="subtitle"]]
[[!template text="""The Libre-Halaal label is distinct and""" start="00:23:55.320" video="mainVideo-blee" id="subtitle"]]
[[!template text="""different from FOSS labels.""" start="00:23:58.320" video="mainVideo-blee" id="subtitle"]]
[[!template text="""As an inside-of-IPR strategy,""" start="00:24:00.240" video="mainVideo-blee" id="subtitle"]]
[[!template text="""the Libre-Halaal label maps""" start="00:24:03.480" video="mainVideo-blee" id="subtitle"]]
[[!template text="""to a single public license ---""" start="00:24:06.240" video="mainVideo-blee" id="subtitle"]]
[[!template text="""the Affero GPL (AGPL).""" start="00:24:08.440" video="mainVideo-blee" id="subtitle"]]
[[!template text="""In the Libre-Halaal model,""" start="00:24:11.780" video="mainVideo-blee" id="subtitle"]]
[[!template text="""it is not up to developers to""" start="00:24:13.440" video="mainVideo-blee" id="subtitle"]]
[[!template text="""choose their own licenses.""" start="00:24:15.600" video="mainVideo-blee" id="subtitle"]]
[[!template text="""There is only one correct license that conveys the""" start="00:24:18.230" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Libre-Halaal manner-of-existence of software.""" start="00:24:21.800" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Also, unlike the FOSS labels that dance around""" start="00:24:25.830" video="mainVideo-blee" id="subtitle"]]
[[!template text="""the validity of the Western IPR regime,""" start="00:24:29.760" video="mainVideo-blee" id="subtitle"]]
[[!template text="""the Libre-Halaal label recognizes""" start="00:24:33.440" video="mainVideo-blee" id="subtitle"]]
[[!template text="""the invalidity of the Western IPR regime,""" start="00:24:37.040" video="mainVideo-blee" id="subtitle"]]
[[!template text="""calls for abolishment of Western IPR""" start="00:24:40.200" video="mainVideo-blee" id="subtitle"]]
[[!template text="""and suggests various outside-of-IPR strategies.""" start="00:24:43.960" video="mainVideo-blee" id="subtitle"]]
[[!template text="""See Part V, &quot;Formulation of Societal Policies&quot;""" start="00:24:49.780" video="mainVideo-blee" id="subtitle"]]
[[!template text="""for details.""" start="00:24:54.200" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Furthermore, unlike FOSS which is""" start="00:24:55.860" video="mainVideo-blee" id="subtitle"]]
[[!template text="""just software oriented, the Libre-Halaal label goes""" start="00:24:59.360" video="mainVideo-blee" id="subtitle"]]
[[!template text="""beyond software and also""" start="00:25:03.520" video="mainVideo-blee" id="subtitle"]]
[[!template text="""applies to internet application services.""" start="00:25:05.800" video="mainVideo-blee" id="subtitle"]]
[[!template text="""In many ways, software is yesterday's news.""" start="00:25:11.060" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Much of what we are experiencing""" start="00:25:15.010" video="mainVideo-blee" id="subtitle"]]
[[!template text="""today is in the form of""" start="00:25:17.520" video="mainVideo-blee" id="subtitle"]]
[[!template text="""internet application services.""" start="00:25:18.640" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Internet application services provide""" start="00:25:21.610" video="mainVideo-blee" id="subtitle"]]
[[!template text="""remote access to execution of software.""" start="00:25:24.160" video="mainVideo-blee" id="subtitle"]]
[[!template text="""As such, much of FOSS has become proprietary""" start="00:25:28.140" video="mainVideo-blee" id="subtitle"]]
[[!template text="""internet application services""" start="00:25:31.720" video="mainVideo-blee" id="subtitle"]]
[[!template text="""as AGPL is rarely used.""" start="00:25:33.680" video="mainVideo-blee" id="subtitle"]]
[[!template text="""This is why the Libre-Halaal definitions and labels""" start="00:25:38.900" video="mainVideo-blee" id="subtitle"]]
[[!template text="""span software and Internet Application Services.""" start="00:25:42.360" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Based on the interdisciplinary stage setting that""" start="00:25:48.560" video="mainVideo-blee" id="subtitle"]]
[[!template text="""the &quot;Nature of Polyexistentials&quot; book provided""" start="00:25:52.320" video="mainVideo-blee" id="subtitle"]]
[[!template text="""and the ByStar blueprint that we reviewed, we can""" start="00:25:55.960" video="mainVideo-blee" id="subtitle"]]
[[!template text="""now focus on Blee.""" start="00:25:59.480" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Think of Blee as a layer on top of Emacs and""" start="00:26:01.680" video="mainVideo-blee" id="subtitle"]]
[[!template text="""think of BISOS as a layer on top of Debian.""" start="00:26:04.840" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Let's bootstrap Raw-BISOS and Raw-Blee.""" start="00:26:09.590" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Starting from scratch,""" start="00:26:13.960" video="mainVideo-blee" id="subtitle"]]
[[!template text="""get yourself a fresh copy of Debian 12.""" start="00:26:15.440" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Then go to https://github.com/bxGenesis/start""" start="00:26:19.460" video="mainVideo-blee" id="subtitle"]]
[[!template text="""The README.org file of that github repo is same""" start="00:26:26.220" video="mainVideo-blee" id="subtitle"]]
[[!template text="""as Chapter 18,""" start="00:26:29.440" video="mainVideo-blee" id="subtitle"]]
[[!template text="""&quot;Engineering Adoption of BISOS and ByStar&quot;""" start="00:26:30.480" video="mainVideo-blee" id="subtitle"]]
[[!template text="""of the book.""" start="00:26:32.880" video="mainVideo-blee" id="subtitle"]]
[[!template text="""We will next run &quot;raw-bisos.sh&quot;, but prior to""" start="00:26:35.160" video="mainVideo-blee" id="subtitle"]]
[[!template text="""that let's take a quick look.""" start="00:26:41.560" video="mainVideo-blee" id="subtitle"]]
[[!template text="""This bootstrap scripts will""" start="00:26:44.680" video="mainVideo-blee" id="subtitle"]]
[[!template text="""do a lot as root on your Fresh-Debian.""" start="00:26:47.000" video="mainVideo-blee" id="subtitle"]]
[[!template text="""It is best to first try it on a disposable VM.""" start="00:26:50.200" video="mainVideo-blee" id="subtitle"]]
[[!template text="""raw-bisos.sh adds""" start="00:26:54.950" video="mainVideo-blee" id="subtitle"]]
[[!template text="""the current debian user to sudoers.""" start="00:26:58.320" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Then it installs pipx.""" start="00:27:00.880" video="mainVideo-blee" id="subtitle"]]
[[!template text="""And then with pipx""" start="00:27:04.120" video="mainVideo-blee" id="subtitle"]]
[[!template text="""it installs from PyPI bisos.provision.""" start="00:27:06.680" video="mainVideo-blee" id="subtitle"]]
[[!template text="""bisos.provision includes additional""" start="00:27:12.710" video="mainVideo-blee" id="subtitle"]]
[[!template text="""bash scripts that are then executed.""" start="00:27:15.920" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Full installation involves setting up various""" start="00:27:19.820" video="mainVideo-blee" id="subtitle"]]
[[!template text="""accounts, groups, various directory hierarchies,""" start="00:27:23.280" video="mainVideo-blee" id="subtitle"]]
[[!template text="""lots of apt packages and lots of python packages""" start="00:27:26.960" video="mainVideo-blee" id="subtitle"]]
[[!template text="""from the bisos namespace.""" start="00:27:31.240" video="mainVideo-blee" id="subtitle"]]
[[!template text="""If you are ready, copy and paste this line and""" start="00:27:35.240" video="mainVideo-blee" id="subtitle"]]
[[!template text="""run it.""" start="00:27:38.720" video="mainVideo-blee" id="subtitle"]]
[[!template text="""You will be prompted for the root password.""" start="00:27:40.460" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Then be patient.""" start="00:27:43.420" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Full installation can take 15 minutes or so.""" start="00:27:45.170" video="mainVideo-blee" id="subtitle"]]
[[!template text="""The logs of this script are also captured in""" start="00:27:49.000" video="mainVideo-blee" id="subtitle"]]
[[!template text="""~/raw-bisos-${dateTag}-log.org""" start="00:27:52.600" video="mainVideo-blee" id="subtitle"]]
[[!template text="""What has been installed on your system are""" start="00:27:59.840" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Raw-BISOS and Raw-Blee.""" start="00:28:02.320" video="mainVideo-blee" id="subtitle"]]
[[!template text="""The universality of Debian let's us build on""" start="00:28:05.250" video="mainVideo-blee" id="subtitle"]]
[[!template text="""BISOS and Blee both in the usage environment and""" start="00:28:09.080" video="mainVideo-blee" id="subtitle"]]
[[!template text="""the service environment.""" start="00:28:13.600" video="mainVideo-blee" id="subtitle"]]
[[!template text="""With Emacs 30 now available on Android and with""" start="00:28:16.570" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Termux apt packages infrastructure in place, it""" start="00:28:20.760" video="mainVideo-blee" id="subtitle"]]
[[!template text="""will be very viable to""" start="00:28:25.560" video="mainVideo-blee" id="subtitle"]]
[[!template text="""port BISOS and Blee to Android.""" start="00:28:27.040" video="mainVideo-blee" id="subtitle"]]
[[!template text="""We have not done so yet.""" start="00:28:30.380" video="mainVideo-blee" id="subtitle"]]
[[!template text="""We are waiting for Emacs-30 to mature up.""" start="00:28:32.580" video="mainVideo-blee" id="subtitle"]]
[[!template text="""This is ByStar's &quot;Mobile Second&quot; strategy.""" start="00:28:36.240" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Upon completion of the bootstrapping process, you""" start="00:28:40.480" video="mainVideo-blee" id="subtitle"]]
[[!template text="""end up with Raw-BISOS and Raw-Blee.""" start="00:28:44.040" video="mainVideo-blee" id="subtitle"]]
[[!template text="""You then need to relogin.""" start="00:28:47.960" video="mainVideo-blee" id="subtitle"]]
[[!template text="""At which point you notice that a new account""" start="00:28:49.640" video="mainVideo-blee" id="subtitle"]]
[[!template text="""called bystar has been created.""" start="00:28:52.560" video="mainVideo-blee" id="subtitle"]]
[[!template text="""&quot;bystar&quot; is the default usage account.""" start="00:28:56.280" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Let's login into it.""" start="00:28:59.680" video="mainVideo-blee" id="subtitle"]]
[[!template text="""You will see a customized ByStar Gnome Desktop.""" start="00:29:01.800" video="mainVideo-blee" id="subtitle"]]
[[!template text="""You will also notice a &quot;Blee Startup&quot; icon.""" start="00:29:06.100" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Let's use it and start Blee.""" start="00:29:10.320" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Notice that the Emacs splash-screen has been""" start="00:29:13.620" video="mainVideo-blee" id="subtitle"]]
[[!template text="""replaced and also note that the splash-screen is""" start="00:29:17.040" video="mainVideo-blee" id="subtitle"]]
[[!template text="""in org-mode.""" start="00:29:20.920" video="mainVideo-blee" id="subtitle"]]
[[!template text="""All the original Emacs splash-screen""" start="00:29:23.300" video="mainVideo-blee" id="subtitle"]]
[[!template text="""info is kept under &quot;About Emacs&quot;.""" start="00:29:26.640" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Let me enlarge the screen.""" start="00:29:32.000" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Now we can live inside of Blee.""" start="00:29:34.640" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Notice that the top""" start="00:29:37.620" video="mainVideo-blee" id="subtitle"]]
[[!template text="""drop down Emacs menus have been augmented.""" start="00:29:38.960" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Everything to the left of the &quot;File&quot; menu, is new.""" start="00:29:43.720" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Notice the &quot;Panels&quot; menus.""" start="00:29:48.660" video="mainVideo-blee" id="subtitle"]]
[[!template text="""More on these later.""" start="00:29:51.320" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Now let me get myself a shell.""" start="00:29:54.020" video="mainVideo-blee" id="subtitle"]]
[[!template text="""And run tail /etc/passwd.""" start="00:29:56.560" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Notice that a number of""" start="00:30:02.660" video="mainVideo-blee" id="subtitle"]]
[[!template text="""new accounts have been created.""" start="00:30:04.160" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Notably: bisos, bystar and bpos-delimiter.""" start="00:30:06.840" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Let's next cd to /bisos.""" start="00:30:14.880" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Everything related to bisos is in here.""" start="00:30:18.640" video="mainVideo-blee" id="subtitle"]]
[[!template text="""The rest is as Debian was.""" start="00:30:21.880" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Let's take a look at /bisos/blee/env3.""" start="00:30:26.320" video="mainVideo-blee" id="subtitle"]]
[[!template text="""All the elisp code for Blee is in here.""" start="00:30:33.360" video="mainVideo-blee" id="subtitle"]]
[[!template text="""For now, Blee is layered on top of Doom.""" start="00:30:37.140" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Raw-BISOS and Raw-Blee are starting points.""" start="00:30:41.300" video="mainVideo-blee" id="subtitle"]]
[[!template text="""They are meant to be customized.""" start="00:30:45.200" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Let's next see how that is done.""" start="00:30:47.960" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Raw-BISOS and Raw-Blee are foundational layers.""" start="00:30:53.740" video="mainVideo-blee" id="subtitle"]]
[[!template text="""They can be augmented in a variety of ways.""" start="00:30:58.850" video="mainVideo-blee" id="subtitle"]]
[[!template text="""The basic unit in the ByStar model is the""" start="00:31:01.720" video="mainVideo-blee" id="subtitle"]]
[[!template text="""&quot;Autonomous Site&quot;.""" start="00:31:05.600" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Think of the &quot;Autonomous Site&quot; as the""" start="00:31:07.960" video="mainVideo-blee" id="subtitle"]]
[[!template text="""totality of computing and communication""" start="00:31:10.560" video="mainVideo-blee" id="subtitle"]]
[[!template text="""capabilities in a modern family""" start="00:31:13.440" video="mainVideo-blee" id="subtitle"]]
[[!template text="""home plus the ability of that family to host""" start="00:31:16.240" video="mainVideo-blee" id="subtitle"]]
[[!template text="""their own internet application services.""" start="00:31:20.400" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Let's walk through how Raw-BISOS and Raw-Blee are""" start="00:31:24.280" video="mainVideo-blee" id="subtitle"]]
[[!template text="""used to construct an Autonomous Site.""" start="00:31:28.640" video="mainVideo-blee" id="subtitle"]]
[[!template text="""BISOS augmentation model is based on""" start="00:31:32.880" video="mainVideo-blee" id="subtitle"]]
[[!template text="""&quot;BISOS Capability Bundles&quot; BCBs.""" start="00:31:36.040" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Raw-BISOS can be augmented to""" start="00:31:40.300" video="mainVideo-blee" id="subtitle"]]
[[!template text="""become a Virtual Machines Hosting service.""" start="00:31:43.480" video="mainVideo-blee" id="subtitle"]]
[[!template text="""From there on we can use reproducible images to""" start="00:31:46.660" video="mainVideo-blee" id="subtitle"]]
[[!template text="""implement the infrastructure of sites.""" start="00:31:50.600" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Two key site services are the""" start="00:31:54.200" video="mainVideo-blee" id="subtitle"]]
[[!template text="""&quot;Site BPOs Gitlab Server&quot;""" start="00:31:56.800" video="mainVideo-blee" id="subtitle"]]
[[!template text="""and &quot;Site Registrars&quot;.""" start="00:32:01.220" video="mainVideo-blee" id="subtitle"]]
[[!template text="""With these in place we can facilitate""" start="00:32:04.080" video="mainVideo-blee" id="subtitle"]]
[[!template text="""self-hosting, which in the BISOS model is called""" start="00:32:06.800" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Possession Assertable Libre Services (PALS).""" start="00:32:10.880" video="mainVideo-blee" id="subtitle"]]
[[!template text="""These topics and these concepts are described in""" start="00:32:15.440" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Chapter 17, &quot;Technology of ByStar: BISOS&quot;.""" start="00:32:18.640" video="mainVideo-blee" id="subtitle"]]
[[!template text="""The concepts of Service Portability, Service""" start="00:32:25.220" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Possession Assertion, Autonomous Site and Inner,""" start="00:32:28.840" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Outer and Exposed Rims of Autonomous Site are""" start="00:32:32.600" video="mainVideo-blee" id="subtitle"]]
[[!template text="""fundamental to ByStar.""" start="00:32:37.000" video="mainVideo-blee" id="subtitle"]]
[[!template text="""These are shown in this figure as""" start="00:32:39.900" video="mainVideo-blee" id="subtitle"]]
[[!template text="""&quot;Network Abodes&quot;.""" start="00:32:42.280" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Chapter 17 of the book provides more details.""" start="00:32:43.520" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Blee introduces a number of new concepts that""" start="00:32:49.490" video="mainVideo-blee" id="subtitle"]]
[[!template text="""augment Emacs. Some of these are intertwined with""" start="00:32:52.920" video="mainVideo-blee" id="subtitle"]]
[[!template text="""BISOS and ByStar. But some are not.""" start="00:32:57.360" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Here, I provide some examples of these new""" start="00:33:01.040" video="mainVideo-blee" id="subtitle"]]
[[!template text="""general concepts.""" start="00:33:04.200" video="mainVideo-blee" id="subtitle"]]
[[!template text="""We love Emacs and we love Unix because their""" start="00:33:07.020" video="mainVideo-blee" id="subtitle"]]
[[!template text="""design is convivial. By convivial, I am referring""" start="00:33:10.600" video="mainVideo-blee" id="subtitle"]]
[[!template text="""to Ivan Illich's concept and terminology of""" start="00:33:14.600" video="mainVideo-blee" id="subtitle"]]
[[!template text="""&quot;Tools for Conviviality&quot;. It was first""" start="00:33:17.800" video="mainVideo-blee" id="subtitle"]]
[[!template text="""published in 1973. It's a must read.""" start="00:33:21.160" video="mainVideo-blee" id="subtitle"]]
[[!template text="""A goal of the design of the ByStar Digital""" start="00:33:25.220" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Ecosystem is to enlarge aggregated conviviality.""" start="00:33:28.520" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Here, let's start by reviewing the idioms and""" start="00:33:32.640" video="mainVideo-blee" id="subtitle"]]
[[!template text="""means that have made Emacs and Unix so very""" start="00:33:37.240" video="mainVideo-blee" id="subtitle"]]
[[!template text="""convivial and some of the key idioms that have""" start="00:33:40.560" video="mainVideo-blee" id="subtitle"]]
[[!template text="""augmented them over the years -- I am showing""" start="00:33:44.640" video="mainVideo-blee" id="subtitle"]]
[[!template text="""them as &quot;Linux PlusPlus&quot;""" start="00:33:48.080" video="mainVideo-blee" id="subtitle"]]
[[!template text="""and &quot;Emacs PlusPlus&quot;.""" start="00:33:50.280" video="mainVideo-blee" id="subtitle"]]
[[!template text="""For the most part these""" start="00:33:52.920" video="mainVideo-blee" id="subtitle"]]
[[!template text="""two philosophies have not been combined.""" start="00:33:54.760" video="mainVideo-blee" id="subtitle"]]
[[!template text="""They were developed and have""" start="00:33:57.960" video="mainVideo-blee" id="subtitle"]]
[[!template text="""evolved mostly separately.""" start="00:33:59.760" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Think of BISOS idioms as an extension of Linux""" start="00:34:01.720" video="mainVideo-blee" id="subtitle"]]
[[!template text="""PlusPlus idioms and think of Blee idioms as an""" start="00:34:06.480" video="mainVideo-blee" id="subtitle"]]
[[!template text="""extension of Emacs PlusPlus.""" start="00:34:10.520" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Then intertwine BISOS and Blee.""" start="00:34:14.180" video="mainVideo-blee" id="subtitle"]]
[[!template text="""This aggregated convivial tools powers ByStar.""" start="00:34:16.800" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Let me first explain what I mean by aggregated""" start="00:34:22.179" video="mainVideo-blee" id="subtitle"]]
[[!template text="""convivial tools, and then""" start="00:34:25.480" video="mainVideo-blee" id="subtitle"]]
[[!template text="""let me give some examples.""" start="00:34:28.280" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Here is a key sentence from Illich's,""" start="00:34:32.140" video="mainVideo-blee" id="subtitle"]]
[[!template text="""&quot;Tools for Conviviality&quot; 1973 essay:""" start="00:34:34.760" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Convivial tools are those which give each person""" start="00:34:39.720" video="mainVideo-blee" id="subtitle"]]
[[!template text="""who uses them the greatest opportunity to enrich""" start="00:34:43.600" video="mainVideo-blee" id="subtitle"]]
[[!template text="""the environment with the""" start="00:34:47.200" video="mainVideo-blee" id="subtitle"]]
[[!template text="""fruits of his or her vision.""" start="00:34:48.840" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Proprietary manner-of-existence of software""" start="00:34:52.740" video="mainVideo-blee" id="subtitle"]]
[[!template text="""makes them industrial.""" start="00:34:55.560" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Libre-Halaal manner-of-existence""" start="00:34:58.000" video="mainVideo-blee" id="subtitle"]]
[[!template text="""of software is a prerequisite for conviviality.""" start="00:35:00.400" video="mainVideo-blee" id="subtitle"]]
[[!template text="""The concept of""" start="00:35:03.320" video="mainVideo-blee" id="subtitle"]]
[[!template text="""&quot;Org Dynamic Blocks&quot; is very powerful.""" start="00:35:07.440" video="mainVideo-blee" id="subtitle"]]
[[!template text="""But, why should they be primarily used""" start="00:35:10.640" video="mainVideo-blee" id="subtitle"]]
[[!template text="""in Org-Mode.""" start="00:35:14.400" video="mainVideo-blee" id="subtitle"]]
[[!template text="""I say let's generalize them to""" start="00:35:16.280" video="mainVideo-blee" id="subtitle"]]
[[!template text="""&quot;Emacs Dynamic Blocks&quot;.""" start="00:35:18.600" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Have defaults for org-dblock-start-re in""" start="00:35:20.240" video="mainVideo-blee" id="subtitle"]]
[[!template text="""every relevant mode and use them everywhere.""" start="00:35:24.280" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Blee does that.""" start="00:35:29.760" video="mainVideo-blee" id="subtitle"]]
[[!template text="""In programming languages, Dynamic""" start="00:35:30.680" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Blocks can be used as visible macros.""" start="00:35:33.240" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Let me give you an example of how I use them.""" start="00:35:34.880" video="mainVideo-blee" id="subtitle"]]
[[!template text="""For those of us who live inside of Emacs,""" start="00:35:38.940" video="mainVideo-blee" id="subtitle"]]
[[!template text="""enhancing programming with org-mode capabilities""" start="00:35:41.760" video="mainVideo-blee" id="subtitle"]]
[[!template text="""is awesome.""" start="00:35:46.360" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Incredibly awesome!""" start="00:35:47.860" video="mainVideo-blee" id="subtitle"]]
[[!template text="""This can be done in two ways.""" start="00:35:50.380" video="mainVideo-blee" id="subtitle"]]
[[!template text="""(1) With Literate Programming and org-babel.""" start="00:35:52.820" video="mainVideo-blee" id="subtitle"]]
[[!template text="""and (2) with""" start="00:35:57.160" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Traditional/Surrounded Programming and COMEEGA.""" start="00:35:58.800" video="mainVideo-blee" id="subtitle"]]
[[!template text="""COMEEGA stands for""" start="00:36:03.460" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Collaborative Org-Mode Enhanced Emacs""" start="00:36:04.960" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Generalized Authorship.""" start="00:36:08.680" video="mainVideo-blee" id="subtitle"]]
[[!template text="""It is just an acronym that I have come up with.""" start="00:36:10.560" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Literate Programming and org-babel""" start="00:36:15.260" video="mainVideo-blee" id="subtitle"]]
[[!template text="""are well established.""" start="00:36:18.320" video="mainVideo-blee" id="subtitle"]]
[[!template text="""There is a related talk in EmacsConf-2024 titled:""" start="00:36:20.060" video="mainVideo-blee" id="subtitle"]]
[[!template text="""&quot;Literate Programming for the 21st Century&quot;.""" start="00:36:25.600" video="mainVideo-blee" id="subtitle"]]
[[!template text="""COMEEGA is the inverse of org-babel.""" start="00:36:30.840" video="mainVideo-blee" id="subtitle"]]
[[!template text="""I prefer COMEEGA over org-babel,""" start="00:36:34.080" video="mainVideo-blee" id="subtitle"]]
[[!template text="""because I prefer""" start="00:36:38.480" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Traditional/Surrounded Programming""" start="00:36:39.600" video="mainVideo-blee" id="subtitle"]]
[[!template text="""over Literate Programming.""" start="00:36:41.800" video="mainVideo-blee" id="subtitle"]]
[[!template text="""To each his own.""" start="00:36:44.900" video="mainVideo-blee" id="subtitle"]]
[[!template text="""This is not about that debate.""" start="00:36:46.360" video="mainVideo-blee" id="subtitle"]]
[[!template text="""This is about mixing your""" start="00:36:49.080" video="mainVideo-blee" id="subtitle"]]
[[!template text="""programming-mode with org-mode.""" start="00:36:51.040" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Much of Blee and BISOS""" start="00:36:55.020" video="mainVideo-blee" id="subtitle"]]
[[!template text="""are implemented in COMEEGA.""" start="00:36:56.800" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Almost all of our Elisp, Python, Bash""" start="00:36:58.720" video="mainVideo-blee" id="subtitle"]]
[[!template text="""and LaTeX work uses COMEEGA.""" start="00:37:02.408" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Full and proper use of COMEEGA,""" start="00:37:06.200" video="mainVideo-blee" id="subtitle"]]
[[!template text="""requires Polymode. Let's call that Poly-COMEEGA.""" start="00:37:08.175" video="mainVideo-blee" id="subtitle"]]
[[!template text="""But Emacs's Polymode is work-in-progress,""" start="00:37:13.280" video="mainVideo-blee" id="subtitle"]]
[[!template text="""particularly now with the new tree-sitter.""" start="00:37:16.740" video="mainVideo-blee" id="subtitle"]]
[[!template text="""So, in the interim, my usage of""" start="00:37:20.560" video="mainVideo-blee" id="subtitle"]]
[[!template text="""COMEEGA has been in the form of Toggle-COMEEGA.""" start="00:37:23.480" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Where I manually switch between the""" start="00:37:28.780" video="mainVideo-blee" id="subtitle"]]
[[!template text="""programming-mode and org-mode.""" start="00:37:30.840" video="mainVideo-blee" id="subtitle"]]
[[!template text="""For me this has""" start="00:37:33.800" video="mainVideo-blee" id="subtitle"]]
[[!template text="""proved to be a fine interim solution.""" start="00:37:34.840" video="mainVideo-blee" id="subtitle"]]
[[!template text="""In Emacs, the way that we have been""" start="00:37:41.700" video="mainVideo-blee" id="subtitle"]]
[[!template text="""dealing with documentation and""" start="00:37:43.640" video="mainVideo-blee" id="subtitle"]]
[[!template text="""information retrieval is archaic.""" start="00:37:45.360" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Man-pages, TeXInfo, Helpful-Mode and""" start="00:37:49.560" video="mainVideo-blee" id="subtitle"]]
[[!template text="""convention based Doc-Strings are old and""" start="00:37:52.730" video="mainVideo-blee" id="subtitle"]]
[[!template text="""limited.""" start="00:37:56.441" video="mainVideo-blee" id="subtitle"]]
[[!template text="""In BISOS and Blee, we use Blee-Panels for all""" start="00:37:57.700" video="mainVideo-blee" id="subtitle"]]
[[!template text="""kinds of documentation.""" start="00:38:01.760" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Let me show you some examples.""" start="00:38:03.780" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Two fundamental autonomy oriented capabilities""" start="00:38:09.360" video="mainVideo-blee" id="subtitle"]]
[[!template text="""that ByStar offers to individuals are:""" start="00:38:12.960" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Email and Content Generation and Publication.""" start="00:38:16.800" video="mainVideo-blee" id="subtitle"]]
[[!template text="""I'll give a quick overview of""" start="00:38:20.740" video="mainVideo-blee" id="subtitle"]]
[[!template text="""these two important capabilities.""" start="00:38:22.400" video="mainVideo-blee" id="subtitle"]]
[[!template text="""At the EmacsConf-2022, the title of my""" start="00:38:26.300" video="mainVideo-blee" id="subtitle"]]
[[!template text="""presentation was:""" start="00:38:30.680" video="mainVideo-blee" id="subtitle"]]
[[!template text="""&quot;Revisiting the anatomy of Emacs mail user agents&quot;.""" start="00:38:32.440" video="mainVideo-blee" id="subtitle"]]
[[!template text="""In that presentation I""" start="00:38:37.680" video="mainVideo-blee" id="subtitle"]]
[[!template text="""gave a brief overview of BISOS-MARMEE""" start="00:38:39.360" video="mainVideo-blee" id="subtitle"]]
[[!template text="""(Multi-Account Resident Mail Exchange Environment)""" start="00:38:43.120" video="mainVideo-blee" id="subtitle"]]
[[!template text="""and Blee-Gnus.""" start="00:38:47.740" video="mainVideo-blee" id="subtitle"]]
[[!template text="""In ByStar, these are typically paired with""" start="00:38:49.080" video="mainVideo-blee" id="subtitle"]]
[[!template text="""byname.net autonomous email services.""" start="00:38:53.080" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Content Production and Self-Publication is a""" start="00:38:58.040" video="mainVideo-blee" id="subtitle"]]
[[!template text="""foundational Blee and BISOS Capability Bundle.""" start="00:39:00.880" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Both this presentation and""" start="00:39:06.060" video="mainVideo-blee" id="subtitle"]]
[[!template text="""the Nature of Polyexistentials book""" start="00:39:08.080" video="mainVideo-blee" id="subtitle"]]
[[!template text="""were developed with Blee LCNT.""" start="00:39:11.740" video="mainVideo-blee" id="subtitle"]]
[[!template text="""The original text is always in COMEEGA-LaTeX --""" start="00:39:15.040" video="mainVideo-blee" id="subtitle"]]
[[!template text="""LaTeX augmented by Org-Mode.""" start="00:39:18.920" video="mainVideo-blee" id="subtitle"]]
[[!template text="""This is the inverse""" start="00:39:22.300" video="mainVideo-blee" id="subtitle"]]
[[!template text="""direction of exporting LaTeX from Org-Mode.""" start="00:39:23.440" video="mainVideo-blee" id="subtitle"]]
[[!template text="""For typesetting,""" start="00:39:27.160" video="mainVideo-blee" id="subtitle"]]
[[!template text="""the LaTeX syntax is far more""" start="00:39:28.760" video="mainVideo-blee" id="subtitle"]]
[[!template text="""powerful than org-mode.""" start="00:39:31.280" video="mainVideo-blee" id="subtitle"]]
[[!template text="""And with COMEEGA-LaTeX,""" start="00:39:33.540" video="mainVideo-blee" id="subtitle"]]
[[!template text="""you can also benefit from""" start="00:39:35.400" video="mainVideo-blee" id="subtitle"]]
[[!template text="""all that org-mode offers.""" start="00:39:37.000" video="mainVideo-blee" id="subtitle"]]
[[!template text="""For presentation/screen-casting,""" start="00:39:41.340" video="mainVideo-blee" id="subtitle"]]
[[!template text="""the original text is then augmented in layers""" start="00:39:44.320" video="mainVideo-blee" id="subtitle"]]
[[!template text="""by images, audio voice-overs, screen captures,""" start="00:39:48.680" video="mainVideo-blee" id="subtitle"]]
[[!template text="""videos and captions.""" start="00:39:53.840" video="mainVideo-blee" id="subtitle"]]
[[!template text="""The Beamer LaTeX file is then processed""" start="00:39:56.920" video="mainVideo-blee" id="subtitle"]]
[[!template text="""by both LaTeX and HeVeA.""" start="00:39:59.800" video="mainVideo-blee" id="subtitle"]]
[[!template text="""LaTeX produced slides are then""" start="00:40:02.560" video="mainVideo-blee" id="subtitle"]]
[[!template text="""absorbed in html by HeVeA as images.""" start="00:40:05.960" video="mainVideo-blee" id="subtitle"]]
[[!template text="""HeVeA is a LaTeX to html translator.""" start="00:40:10.520" video="mainVideo-blee" id="subtitle"]]
[[!template text="""HeVeA output is destined to be dispensed by Reveal.js.""" start="00:40:13.760" video="mainVideo-blee" id="subtitle"]]
[[!template text="""This video is just a screen capture of the autoplay of""" start="00:40:19.880" video="mainVideo-blee" id="subtitle"]]
[[!template text="""reveal file.""" start="00:40:25.120" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Viewing this presentation in its""" start="00:40:27.340" video="mainVideo-blee" id="subtitle"]]
[[!template text="""original Reveal form is a richer experience.""" start="00:40:30.960" video="mainVideo-blee" id="subtitle"]]
[[!template text="""All of this involves a whole lot of integration""" start="00:40:36.010" video="mainVideo-blee" id="subtitle"]]
[[!template text="""scripting. In Raw-BISOS these scripts are in""" start="00:40:39.680" video="mainVideo-blee" id="subtitle"]]
[[!template text="""file:/bisos/core/lcnt/bin""" start="00:40:44.160" video="mainVideo-blee" id="subtitle"]]
[[!template text="""To say that ByStar, BISOS and Blee are big and""" start="00:40:53.320" video="mainVideo-blee" id="subtitle"]]
[[!template text="""ambitious is an understatement.""" start="00:40:57.400" video="mainVideo-blee" id="subtitle"]]
[[!template text="""And clearly, a small team won't be able to""" start="00:41:00.360" video="mainVideo-blee" id="subtitle"]]
[[!template text="""deliver the outlandish blueprint that is outlined""" start="00:41:04.040" video="mainVideo-blee" id="subtitle"]]
[[!template text="""in the Nature of Polyexistentials book.""" start="00:41:07.960" video="mainVideo-blee" id="subtitle"]]
[[!template text="""We have been at this for over two decades and we""" start="00:41:12.380" video="mainVideo-blee" id="subtitle"]]
[[!template text="""feel that now in 2024,""" start="00:41:15.960" video="mainVideo-blee" id="subtitle"]]
[[!template text="""it makes sense to involve you.""" start="00:41:18.520" video="mainVideo-blee" id="subtitle"]]
[[!template text="""The pointers and instructions for installation""" start="00:41:23.060" video="mainVideo-blee" id="subtitle"]]
[[!template text="""and usage of BISOS and Blee that I have provided,""" start="00:41:26.720" video="mainVideo-blee" id="subtitle"]]
[[!template text="""produce systems that are minimally functional,""" start="00:41:31.200" video="mainVideo-blee" id="subtitle"]]
[[!template text="""but are not clean.""" start="00:41:34.680" video="mainVideo-blee" id="subtitle"]]
[[!template text="""At this time don't expect software and services""" start="00:41:37.400" video="mainVideo-blee" id="subtitle"]]
[[!template text="""stability and support.""" start="00:41:40.080" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Throughout this presentation, I have been""" start="00:41:42.760" video="mainVideo-blee" id="subtitle"]]
[[!template text="""emphasizing Service Portability and Possession""" start="00:41:45.320" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Assertable Libre Services (PALS).""" start="00:41:49.400" video="mainVideo-blee" id="subtitle"]]
[[!template text="""But, a complete digital ecosystem includes various other types of""" start="00:41:52.680" video="mainVideo-blee" id="subtitle"]]
[[!template text="""internet application services as well.""" start="00:41:58.360" video="mainVideo-blee" id="subtitle"]]
[[!template text="""In this slide PALS are the center and are then""" start="00:42:01.760" video="mainVideo-blee" id="subtitle"]]
[[!template text="""augmented by different other type of services.""" start="00:42:05.800" video="mainVideo-blee" id="subtitle"]]
[[!template text="""In the ByStar model, equivalent of Facebook style""" start="00:42:09.120" video="mainVideo-blee" id="subtitle"]]
[[!template text="""application services are called:""" start="00:42:13.640" video="mainVideo-blee" id="subtitle"]]
[[!template text="""&quot;Inter-Autonomous Interactions&quot;.""" start="00:42:16.360" video="mainVideo-blee" id="subtitle"]]
[[!template text="""With individual oriented PALS in place, using""" start="00:42:19.620" video="mainVideo-blee" id="subtitle"]]
[[!template text="""OAuth of PALS, resources can be shared.""" start="00:42:23.680" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Based on that we can then structure Inter-Autonomous""" start="00:42:28.280" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Interactions while preserving much privacy.""" start="00:42:32.480" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Any blueprint for a digital ecosystem must also""" start="00:42:37.320" video="mainVideo-blee" id="subtitle"]]
[[!template text="""consider the economic and business dimensions.""" start="00:42:41.720" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Chapter 13, &quot;Polyexistential Capitalism&quot;,""" start="00:42:46.040" video="mainVideo-blee" id="subtitle"]]
[[!template text="""delves into proper economic models for""" start="00:42:50.380" video="mainVideo-blee" id="subtitle"]]
[[!template text="""polyexsitentials.""" start="00:42:52.960" video="mainVideo-blee" id="subtitle"]]
[[!template text="""The concept of Attribution""" start="00:42:55.580" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Based Economics (ABE) which has been discussed in""" start="00:42:57.880" video="mainVideo-blee" id="subtitle"]]
[[!template text="""this forum before is included.""" start="00:43:02.400" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Chapter 21,""" start="00:43:05.720" video="mainVideo-blee" id="subtitle"]]
[[!template text="""&quot;Private Sector Strategies:""" start="00:43:06.840" video="mainVideo-blee" id="subtitle"]]
[[!template text="""ByStar Open Business Plan&quot;""" start="00:43:09.160" video="mainVideo-blee" id="subtitle"]]
[[!template text="""deals with the business dimension of ByStar.""" start="00:43:12.900" video="mainVideo-blee" id="subtitle"]]
[[!template text="""What if in addition to being ethics oriented,""" start="00:43:17.080" video="mainVideo-blee" id="subtitle"]]
[[!template text="""the entirety of this book could also be""" start="00:43:20.660" video="mainVideo-blee" id="subtitle"]]
[[!template text="""considered a sophisticated business plan?""" start="00:43:24.080" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Are there any Venture Capitalists that use Emacs?""" start="00:43:28.740" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Here is a set of relatively complete domains and""" start="00:43:34.140" video="mainVideo-blee" id="subtitle"]]
[[!template text="""links for digging deeper. These pointers are""" start="00:43:37.640" video="mainVideo-blee" id="subtitle"]]
[[!template text="""structured in 4 layers. Ideology, Software,""" start="00:43:41.920" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Services and Guardianship.""" start="00:43:46.120" video="mainVideo-blee" id="subtitle"]]
[[!template text="""If Blee, BISOS, ByStar, Libre-Halaal and""" start="00:43:50.160" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Polyexistentials have piqued your interest and if""" start="00:43:53.680" video="mainVideo-blee" id="subtitle"]]
[[!template text="""you wish to participate in making these ideas""" start="00:43:57.880" video="mainVideo-blee" id="subtitle"]]
[[!template text="""more widespread and want to further cultivate""" start="00:44:00.600" video="mainVideo-blee" id="subtitle"]]
[[!template text="""them, here are some suggestions.""" start="00:44:04.200" video="mainVideo-blee" id="subtitle"]]
[[!template text="""The examples of the Blee concepts that I chose""" start="00:44:06.920" video="mainVideo-blee" id="subtitle"]]
[[!template text="""were purposeful and targeted.""" start="00:44:11.720" video="mainVideo-blee" id="subtitle"]]
[[!template text="""I am hopeful that org-mode developers and emacs""" start="00:44:15.180" video="mainVideo-blee" id="subtitle"]]
[[!template text="""developers would recognize that it makes good""" start="00:44:18.600" video="mainVideo-blee" id="subtitle"]]
[[!template text="""sense to expand the scope of org dynamic blocks""" start="00:44:22.320" video="mainVideo-blee" id="subtitle"]]
[[!template text="""to the entirety of emacs.""" start="00:44:25.600" video="mainVideo-blee" id="subtitle"]]
[[!template text="""I am hopeful that the concept of polymode -- a""" start="00:44:28.780" video="mainVideo-blee" id="subtitle"]]
[[!template text="""single buffer with regions in different modes and""" start="00:44:31.400" video="mainVideo-blee" id="subtitle"]]
[[!template text="""org-mode in particular -- would receive a high""" start="00:44:35.280" video="mainVideo-blee" id="subtitle"]]
[[!template text="""priority in our tree-sitter transition. I am""" start="00:44:39.760" video="mainVideo-blee" id="subtitle"]]
[[!template text="""hopeful that Blee-COMEEGA can become a""" start="00:44:44.560" video="mainVideo-blee" id="subtitle"]]
[[!template text="""generalized form of polymode.""" start="00:44:47.800" video="mainVideo-blee" id="subtitle"]]
[[!template text="""I am hopeful that we can build on Blee-Panels and""" start="00:44:52.260" video="mainVideo-blee" id="subtitle"]]
[[!template text="""move towards having a richer base for a universal""" start="00:44:55.560" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Emacs documentation framework.""" start="00:44:59.440" video="mainVideo-blee" id="subtitle"]]
[[!template text="""If participation in any of these is of interest""" start="00:45:03.880" video="mainVideo-blee" id="subtitle"]]
[[!template text="""to you, please feel welcome to contact me.""" start="00:45:07.080" video="mainVideo-blee" id="subtitle"]]
[[!template text="""Emacs Conferences have proven to be""" start="00:45:10.660" video="mainVideo-blee" id="subtitle"]]
[[!template text="""very useful and productive.""" start="00:45:13.520" video="mainVideo-blee" id="subtitle"]]
[[!template text="""I look forward to your thoughts, feedback and questions.""" start="00:45:16.660" video="mainVideo-blee" id="subtitle"]]
[[!template text="""I want to thank all the EmacsConf Organizers for""" start="00:45:21.540" video="mainVideo-blee" id="subtitle"]]
[[!template text="""their great work.""" start="00:45:24.800" video="mainVideo-blee" id="subtitle"]]
[[!template text="""And Sacha, Leo and Amin in particular.""" start="00:45:26.140" video="mainVideo-blee" id="subtitle"]]

</div>

Captioner: mohsen

<div class="transcript transcript-qanda"><a name="blee-qanda-transcript"></a><h1>Q&A transcript (unedited)</h1>

[[!template text="""Thank you for the talk. I mean, it was a fairly long one and we""" start="00:00:00.000" video="qanda-blee" id="subtitle"]]
[[!template text="""had two very distinct parts, one which dealt with a""" start="00:00:04.200" video="qanda-blee" id="subtitle"]]
[[!template text="""philosophy of Libre-Halaal software and then the application,""" start="00:00:08.000" video="qanda-blee" id="subtitle"]]
[[!template text="""obviously, of Bisos. So thank you so much for the""" start="00:00:12.080" video="qanda-blee" id="subtitle"]]
[[!template text="""presentation. Before we get started with the question, and""" start="00:00:14.280" video="qanda-blee" id="subtitle"]]
[[!template text="""for the record, we have about 14 minutes of question time, is""" start="00:00:17.840" video="qanda-blee" id="subtitle"]]
[[!template text="""there anything that you'd like to add on top of your""" start="00:00:21.800" video="qanda-blee" id="subtitle"]]
[[!template text="""presentation, something that perhaps would not have fit in""" start="00:00:25.080" video="qanda-blee" id="subtitle"]]
[[!template text="""the actual presentation format? Sure, but prior to that,""" start="00:00:27.760" video="qanda-blee" id="subtitle"]]
[[!template text="""félicitations à tous les Français pour le rouvrir de""" start="00:00:33.400" video="qanda-blee" id="subtitle"]]
[[!template text="""Notre-Dame. Thank you. I'll say thank you because I'm a""" start="00:00:37.840" video="qanda-blee" id="subtitle"]]
[[!template text="""Francophone and I'm also French, but OK.""" start="00:00:42.720" video="qanda-blee" id="subtitle"]]
[[!template text="""Yeah, so a few things have come up in various other talks,""" start="00:00:48.040" video="qanda-blee" id="subtitle"]]
[[!template text="""that kind of EmacsConf 2024 talks, that kind of dovetail""" start="00:00:58.160" video="qanda-blee" id="subtitle"]]
[[!template text="""with what I was saying. One idea was Peter Prevos's""" start="00:01:04.360" video="qanda-blee" id="subtitle"]]
[[!template text="""observation of working with Emacs versus working on Emacs.""" start="00:01:10.600" video="qanda-blee" id="subtitle"]]
[[!template text="""And I'm all for that. So the idea of BLEE is that""" start="00:01:20.640" video="qanda-blee" id="subtitle"]]
[[!template text="""Others can package things, and we are seeing this in the form""" start="00:01:28.280" video="qanda-blee" id="subtitle"]]
[[!template text="""of redistributions. There is Doom, there is Space Max, and""" start="00:01:32.600" video="qanda-blee" id="subtitle"]]
[[!template text="""we are seeing the evolution of Emacs into layers. So there is""" start="00:01:38.120" video="qanda-blee" id="subtitle"]]
[[!template text="""the core Emacs, and there are layers on top of it. And Peter""" start="00:01:44.080" video="qanda-blee" id="subtitle"]]
[[!template text="""also mentioned about too much choice, this notion of""" start="00:01:50.120" video="qanda-blee" id="subtitle"]]
[[!template text="""Not always too much choice is the right thing to have. And""" start="00:01:59.800" video="qanda-blee" id="subtitle"]]
[[!template text="""packaging Emacs with a layer on top of Debian gives you a""" start="00:02:08.920" video="qanda-blee" id="subtitle"]]
[[!template text="""platform and an environment where the choices are a lot""" start="00:02:18.280" video="qanda-blee" id="subtitle"]]
[[!template text="""less. And that is not necessarily a bad thing.""" start="00:02:24.160" video="qanda-blee" id="subtitle"]]
[[!template text="""So that was one idea. The other idea or the other theme""" start="00:02:31.160" video="qanda-blee" id="subtitle"]]
[[!template text="""throughout the various talks that we saw was this concept of""" start="00:02:36.720" video="qanda-blee" id="subtitle"]]
[[!template text="""mixing org mode with programming languages and What Babel""" start="00:02:42.920" video="qanda-blee" id="subtitle"]]
[[!template text="""has done is two things. One is it has successfully""" start="00:02:53.520" video="qanda-blee" id="subtitle"]]
[[!template text="""integrated org mode with all kinds of languages. And that""" start="00:03:00.480" video="qanda-blee" id="subtitle"]]
[[!template text="""has happened in the context of literate programming. Um, so""" start="00:03:06.800" video="qanda-blee" id="subtitle"]]
[[!template text="""a talk coming after mine is literate programming for the""" start="00:03:13.040" video="qanda-blee" id="subtitle"]]
[[!template text="""21st century, mixing org mode with program languages. And""" start="00:03:16.840" video="qanda-blee" id="subtitle"]]
[[!template text="""what I am saying is that there is an alternative and that's""" start="00:03:22.400" video="qanda-blee" id="subtitle"]]
[[!template text="""great, but we should also, uh, consider a traditional""" start="00:03:27.360" video="qanda-blee" id="subtitle"]]
[[!template text="""programming mixed with org mode and, um, Polymode is key to""" start="00:03:33.840" video="qanda-blee" id="subtitle"]]
[[!template text="""that. So those were some of the key concepts that I saw a""" start="00:03:40.160" video="qanda-blee" id="subtitle"]]
[[!template text="""resonance with as the conference went forward. Yeah, and I""" start="00:03:49.240" video="qanda-blee" id="subtitle"]]
[[!template text="""think, if my memory serves me right, we have another talk""" start="00:03:55.800" video="qanda-blee" id="subtitle"]]
[[!template text="""about hyperbole this year, right after this Q&A session.""" start="00:03:59.960" video="qanda-blee" id="subtitle"]]
[[!template text="""And hyperbole, it's not Org Mode, but I'm not sure if you're""" start="00:04:04.200" video="qanda-blee" id="subtitle"]]
[[!template text="""familiar with it, Mohsen, you might have seen it from""" start="00:04:07.920" video="qanda-blee" id="subtitle"]]
[[!template text="""various talks last year, but it also tends to have a similar""" start="00:04:10.360" video="qanda-blee" id="subtitle"]]
[[!template text="""stance than you, with the fact that text should be embedded""" start="00:04:14.640" video="qanda-blee" id="subtitle"]]
[[!template text="""in programming languages rather than having Org Mode""" start="00:04:18.920" video="qanda-blee" id="subtitle"]]
[[!template text="""implement, I mean, integrate other languages. And I found""" start="00:04:21.920" video="qanda-blee" id="subtitle"]]
[[!template text="""it funny that we have your talk and this talk which are about""" start="00:04:25.440" video="qanda-blee" id="subtitle"]]
[[!template text="""the other direction, which I find very resonating as well.""" start="00:04:28.360" video="qanda-blee" id="subtitle"]]
[[!template text="""Right, right, right. So in terms of other things that did not""" start="00:04:33.000" video="qanda-blee" id="subtitle"]]
[[!template text="""fit into my talk is that the several concepts that I""" start="00:04:40.440" video="qanda-blee" id="subtitle"]]
[[!template text="""introduced, namely""" start="00:04:47.000" video="qanda-blee" id="subtitle"]]
[[!template text="""dynamic blocks everywhere and COMEEGA.""" start="00:04:49.600" video="qanda-blee" id="subtitle"]]
[[!template text="""I'd be happy to expand on those by sharing your screen in due""" start="00:04:57.880" video="qanda-blee" id="subtitle"]]
[[!template text="""course, whatever is appropriate. Sure, considering the""" start="00:05:07.720" video="qanda-blee" id="subtitle"]]
[[!template text="""time that we have, we only have about 8 minutes 30 and we""" start="00:05:12.520" video="qanda-blee" id="subtitle"]]
[[!template text="""already have about four, five questions actually. I""" start="00:05:16.120" video="qanda-blee" id="subtitle"]]
[[!template text="""suggest we perhaps leave the screen sharing until later if""" start="00:05:19.000" video="qanda-blee" id="subtitle"]]
[[!template text="""people are interested. I mean this Q&A can last as long as you""" start="00:05:22.600" video="qanda-blee" id="subtitle"]]
[[!template text="""want. That makes perfect sense. OK, cool. So how about we""" start="00:05:25.400" video="qanda-blee" id="subtitle"]]
[[!template text="""focus on the question now and starting with the first one.""" start="00:05:30.080" video="qanda-blee" id="subtitle"]]

<div class="transcript-heading">[[!template new="1" text="""Q: I'm from Brazil, which edition would you recommend?""" start="00:05:33.280" video="qanda-blee" id="subtitle"]]</div>[[!template text="""You mentioned that there are two editions, one named at""" start="00:05:33.280" video="qanda-blee" id="subtitle"]]
[[!template text="""Westerners and one for worldwide readers. I'm from Brazil.""" start="00:05:36.280" video="qanda-blee" id="subtitle"]]
[[!template text="""Which edition would you recommend? It's a Western country,""" start="00:05:40.160" video="qanda-blee" id="subtitle"]]
[[!template text="""but you didn't make the distinction exclusive for the""" start="00:05:42.600" video="qanda-blee" id="subtitle"]]
[[!template text="""second edition. So I thought it would be better to ask.""" start="00:05:45.480" video="qanda-blee" id="subtitle"]]
[[!template text="""Right. So definitely, I would say for everybody who is on""" start="00:05:48.200" video="qanda-blee" id="subtitle"]]
[[!template text="""this conference, the international edition is the right""" start="00:05:56.120" video="qanda-blee" id="subtitle"]]
[[!template text="""choice. In this book, I take some aggressive stance against""" start="00:06:01.960" video="qanda-blee" id="subtitle"]]
[[!template text="""intellectual property and I link that specifically to the""" start="00:06:11.640" video="qanda-blee" id="subtitle"]]
[[!template text="""American culture. So there are pieces in the book where the""" start="00:06:19.280" video="qanda-blee" id="subtitle"]]
[[!template text="""typical American audience may be offended. And if your skin""" start="00:06:27.440" video="qanda-blee" id="subtitle"]]
[[!template text="""is thick enough to deal with what I consider reasonable""" start="00:06:36.400" video="qanda-blee" id="subtitle"]]
[[!template text="""criticism, then the International Edition is definitely""" start="00:06:43.280" video="qanda-blee" id="subtitle"]]
[[!template text="""the better choice. Right. So yeah, I believe you also""" start="00:06:48.320" video="qanda-blee" id="subtitle"]]
[[!template text="""mentioned it. Pretty much exactly the same thing in your""" start="00:06:54.440" video="qanda-blee" id="subtitle"]]
[[!template text="""talk. So if you need to review, just watch the talk. And I""" start="00:06:56.960" video="qanda-blee" id="subtitle"]]
[[!template text="""think Mohsen also provides extra information about this.""" start="00:07:00.240" video="qanda-blee" id="subtitle"]]
[[!template text="""Moving on to the second question. Thank you for this talk.""" start="00:07:03.440" video="qanda-blee" id="subtitle"]]

<div class="transcript-heading">[[!template new="1" text="""Q: Thank you for this talk! How does your perspective interface with works such as Yanis Varoufakis' Technofeudalism?""" start="00:07:07.080" video="qanda-blee" id="subtitle"]]</div>[[!template text="""How does your perspective interface with work such as Yanis""" start="00:07:07.080" video="qanda-blee" id="subtitle"]]
[[!template text="""Varoufakis' Technofeudalism?""" start="00:07:10.320" video="qanda-blee" id="subtitle"]]
[[!template text="""I haven't read much of that. I think there is a whole lot of""" start="00:07:14.640" video="qanda-blee" id="subtitle"]]
[[!template text="""global growth and collective understanding towards this""" start="00:07:24.920" video="qanda-blee" id="subtitle"]]
[[!template text="""notion that the direction we are headed in And by that, I mean""" start="00:07:34.200" video="qanda-blee" id="subtitle"]]
[[!template text="""American digital ecosystems""" start="00:07:42.480" video="qanda-blee" id="subtitle"]]
[[!template text="""are dangerous and that we should revisit""" start="00:07:46.880" video="qanda-blee" id="subtitle"]]
[[!template text="""the entirety of the model and strategy.""" start="00:07:53.160" video="qanda-blee" id="subtitle"]]
[[!template text="""If the person who asked the question has any additional""" start="00:08:03.240" video="qanda-blee" id="subtitle"]]
[[!template text="""information, I'll be happy to hear it. Sure. We'll see if the""" start="00:08:10.120" video="qanda-blee" id="subtitle"]]
[[!template text="""person actually comes back to this. All right. In the""" start="00:08:16.120" video="qanda-blee" id="subtitle"]]
[[!template text="""meantime, moving on to the next question.""" start="00:08:19.560" video="qanda-blee" id="subtitle"]]

<div class="transcript-heading">[[!template new="1" text="""Q: To what extent do you agree that the introduction of proprietary systems in education creates an environment for exploitation while at the same time diluting the learning value of the curriculum?""" start="00:08:21.980" video="qanda-blee" id="subtitle"]]</div>[[!template text="""To what extent do""" start="00:08:21.980" video="qanda-blee" id="subtitle"]]
[[!template text="""you agree that the introduction of proprietary systems in""" start="00:08:22.960" video="qanda-blee" id="subtitle"]]
[[!template text="""education creates an environment for exploitation whilst""" start="00:08:25.520" video="qanda-blee" id="subtitle"]]
[[!template text="""at the same time diluting the learning value of the""" start="00:08:29.280" video="qanda-blee" id="subtitle"]]
[[!template text="""curriculum? My computing education at school amounted to""" start="00:08:31.680" video="qanda-blee" id="subtitle"]]
[[!template text="""learning how to use the Microsoft Office suite, i.e. the""" start="00:08:34.880" video="qanda-blee" id="subtitle"]]
[[!template text="""opposite of lasting open knowledge. Yeah, that's right on""" start="00:08:38.400" video="qanda-blee" id="subtitle"]]
[[!template text="""the mark. That's right on the mark. So the idea is that""" start="00:08:44.680" video="qanda-blee" id="subtitle"]]
[[!template text="""teaching and learning should be unrestricted. In the""" start="00:08:49.720" video="qanda-blee" id="subtitle"]]
[[!template text="""Muslim tradition and in Iranian tradition, we say that""" start="00:08:55.920" video="qanda-blee" id="subtitle"]]
[[!template text="""passing along the learning is the tax on having learned. So""" start="00:09:02.480" video="qanda-blee" id="subtitle"]]
[[!template text="""absolutely. I think it makes very little sense for the""" start="00:09:12.920" video="qanda-blee" id="subtitle"]]
[[!template text="""proprietary Microsoft software to be used as part of""" start="00:09:20.360" video="qanda-blee" id="subtitle"]]
[[!template text="""education. So the question is right on the mark. Okay,""" start="00:09:27.040" video="qanda-blee" id="subtitle"]]
[[!template text="""great. Let me just take a note of this. All right, moving on to""" start="00:09:33.520" video="qanda-blee" id="subtitle"]]
[[!template text="""the next question.""" start="00:09:38.520" video="qanda-blee" id="subtitle"]]

<div class="transcript-heading">[[!template new="1" text="""Q: As a specific example of how "ownership is not clean" ...""" start="00:09:40.053" video="qanda-blee" id="subtitle"]]</div>[[!template text="""As a specific example of how ownership is""" start="00:09:40.053" video="qanda-blee" id="subtitle"]]
[[!template text="""not something clean, look at the Star Trek Picard series.""" start="00:09:43.360" video="qanda-blee" id="subtitle"]]
[[!template text="""They continuously asked Patrick Stewart to come to do""" start="00:09:46.240" video="qanda-blee" id="subtitle"]]
[[!template text="""another Star Trek series, but he couldn't because Star Trek""" start="00:09:48.840" video="qanda-blee" id="subtitle"]]
[[!template text="""changed from what it used to be, at least until they came up""" start="00:09:52.160" video="qanda-blee" id="subtitle"]]
[[!template text="""with a series that honored what Star Trek used to be. Does""" start="00:09:54.960" video="qanda-blee" id="subtitle"]]
[[!template text="""this intersect? Let me read this for a moment.""" start="00:09:58.000" video="qanda-blee" id="subtitle"]]
[[!template text="""Yeah, I am not sure I fully get the point, but. Let me make a""" start="00:10:21.840" video="qanda-blee" id="subtitle"]]
[[!template text="""point about my criticisms of the false movement""" start="00:10:30.600" video="qanda-blee" id="subtitle"]]
[[!template text="""in the presentation and in the book. The idea is that we have""" start="00:10:35.960" video="qanda-blee" id="subtitle"]]
[[!template text="""jumped on the false movement and recognize it as an""" start="00:10:47.400" video="qanda-blee" id="subtitle"]]
[[!template text="""alternative But we haven't looked deeply enough to see if""" start="00:10:53.920" video="qanda-blee" id="subtitle"]]
[[!template text="""our own philosophy and movement have problems. The""" start="00:11:02.280" video="qanda-blee" id="subtitle"]]
[[!template text="""problems that I note is that The first movement does not""" start="00:11:07.760" video="qanda-blee" id="subtitle"]]
[[!template text="""recognize clearly and explicitly that the entirety of the""" start="00:11:14.960" video="qanda-blee" id="subtitle"]]
[[!template text="""intellectual property rights regime is flawed. The second""" start="00:11:21.280" video="qanda-blee" id="subtitle"]]
[[!template text="""piece is that it's only now that we are seeing the FOSS""" start="00:11:30.400" video="qanda-blee" id="subtitle"]]
[[!template text="""movement is broader than the Western world. The third""" start="00:11:37.240" video="qanda-blee" id="subtitle"]]
[[!template text="""problem is that the labels of free software and open source""" start="00:11:45.480" video="qanda-blee" id="subtitle"]]
[[!template text="""are not necessarily correct. The fourth problem is that we""" start="00:11:54.920" video="qanda-blee" id="subtitle"]]
[[!template text="""are not paying enough attention to establishing a""" start="00:12:01.160" video="qanda-blee" id="subtitle"]]
[[!template text="""relationship with society.""" start="00:12:07.240" video="qanda-blee" id="subtitle"]]
[[!template text="""So there's a whole chapter in the book dedicated to this""" start="00:12:10.000" video="qanda-blee" id="subtitle"]]
[[!template text="""topic. What I'm not sure about is if I got the point of the""" start="00:12:16.440" video="qanda-blee" id="subtitle"]]
[[!template text="""question correctly. So again, if the person who asked the""" start="00:12:23.960" video="qanda-blee" id="subtitle"]]
[[!template text="""question could clarify, I'll be happy to further expand.""" start="00:12:30.280" video="qanda-blee" id="subtitle"]]
[[!template text="""Okay, considering the time, we only have about one minute to""" start="00:12:35.680" video="qanda-blee" id="subtitle"]]
[[!template text="""ten seconds until we go. So what we're going to do, as we""" start="00:12:40.280" video="qanda-blee" id="subtitle"]]
[[!template text="""usually do, Mohsen, is that we're going to move the stream""" start="00:12:42.960" video="qanda-blee" id="subtitle"]]
[[!template text="""onto the next talk. And if you want to take a little bit of time""" start="00:12:45.440" video="qanda-blee" id="subtitle"]]
[[!template text="""in this room to answer the question, I'm putting a link to the""" start="00:12:47.840" video="qanda-blee" id="subtitle"]]
[[!template text="""pad in the BBB chat so you can open it on your end. But as we are""" start="00:12:51.800" video="qanda-blee" id="subtitle"]]
[[!template text="""still live for 15 more seconds, do you have any last words?""" start="00:12:56.520" video="qanda-blee" id="subtitle"]]
[[!template text="""Keep up the good work. Those would be my last words, that the""" start="00:12:59.320" video="qanda-blee" id="subtitle"]]
[[!template text="""free software and the open source and Emacs are a very valid""" start="00:13:09.040" video="qanda-blee" id="subtitle"]]
[[!template text="""strategy for inside of IPR resistance. And thank you, Leo""" start="00:13:14.240" video="qanda-blee" id="subtitle"]]
[[!template text="""and Sacha and the rest of the folks for this wonderful yearly""" start="00:13:24.480" video="qanda-blee" id="subtitle"]]
[[!template text="""event. Well, thank you so much. And it's always a pleasure to""" start="00:13:29.720" video="qanda-blee" id="subtitle"]]
[[!template text="""have you. And thank you for your thankings. So we'll be""" start="00:13:33.560" video="qanda-blee" id="subtitle"]]
[[!template text="""moving to the next talk in 10 seconds. Mohsen, thank you so""" start="00:13:36.120" video="qanda-blee" id="subtitle"]]
[[!template text="""much. And I'll see you later. Thank you. Bye-bye. Bye.""" start="00:13:38.440" video="qanda-blee" id="subtitle"]]
[[!template text="""All right. We are off air. So thank you so much, Mohsen. I'll""" start="00:13:47.560" video="qanda-blee" id="subtitle"]]
[[!template text="""need to get moving to get ready for the next talk. So again,""" start="00:13:50.160" video="qanda-blee" id="subtitle"]]
[[!template text="""feel free to take the time you need to answer the questions.""" start="00:13:52.560" video="qanda-blee" id="subtitle"]]
[[!template text="""I'm going to stop sharing my screen because I need to leave.""" start="00:13:54.520" video="qanda-blee" id="subtitle"]]
[[!template text="""But take all the time you need. And when you're finished, you""" start="00:13:56.720" video="qanda-blee" id="subtitle"]]
[[!template text="""can just leave the room. OK. All right, bye-bye. Thank you.""" start="00:13:59.320" video="qanda-blee" id="subtitle"]]
[[!template text="""Great. I see one more person in the room.""" start="00:14:04.040" video="qanda-blee" id="subtitle"]]
[[!template text="""Hi, John.""" start="00:14:23.440" video="qanda-blee" id="subtitle"]]
[[!template text="""I was looking at the questions.""" start="00:14:35.680" video="qanda-blee" id="subtitle"]]
[[!template text="""To see if there is more that I can add. So.""" start="00:14:38.080" video="qanda-blee" id="subtitle"]]
[[!template text="""through the regard of societal impacts on ethical,""" start="00:14:46.240" video="qanda-blee" id="subtitle"]]
[[!template text="""philosophical and wider force community. I'm involved in""" start="00:14:54.920" video="qanda-blee" id="subtitle"]]
[[!template text="""politics in my country, my party is very sympathetic to""" start="00:14:58.440" video="qanda-blee" id="subtitle"]]
[[!template text="""force ideas and I have public...""" start="00:15:02.240" video="qanda-blee" id="subtitle"]]

<div class="transcript-heading">[[!template new="1" text="""Q: Do you have any recommended reading materials designed for such an audience?""" start="00:15:05.278" video="qanda-blee" id="subtitle"]]</div>[[!template text="""Do you have any recommendation""" start="00:15:05.278" video="qanda-blee" id="subtitle"]]
[[!template text="""to reading materials designed for such an audience? Um,""" start="00:15:08.040" video="qanda-blee" id="subtitle"]]
[[!template text="""yeah, this is with regard to the last question""" start="00:15:12.360" video="qanda-blee" id="subtitle"]]
[[!template text="""that's on the etherpad at this moment. The idea is""" start="00:15:18.000" video="qanda-blee" id="subtitle"]]
[[!template text="""that my own book would be an excellent resource. I'd""" start="00:15:24.440" video="qanda-blee" id="subtitle"]]
[[!template text="""say the bibliography in the book contains various""" start="00:15:32.200" video="qanda-blee" id="subtitle"]]
[[!template text="""other pointers that could be quite useful.""" start="00:15:39.280" video="qanda-blee" id="subtitle"]]
[[!template text="""I'm reading again.""" start="00:15:43.040" video="qanda-blee" id="subtitle"]]
[[!template text="""Yeah.""" start="00:15:55.400" video="qanda-blee" id="subtitle"]]
[[!template text="""Very good. If there are no other questions,""" start="00:15:57.800" video="qanda-blee" id="subtitle"]]
[[!template text="""I think I'm going to consider this a day and move on.""" start="00:16:20.160" video="qanda-blee" id="subtitle"]]
[[!template text="""Thank you.""" start="00:16:31.840" video="qanda-blee" id="subtitle"]]

</div>Questions or comments? Please e-mail [emacsconf-org-private@gnu.org](mailto:emacsconf-org-private@gnu.org?subject=Comment%20for%20EmacsConf%202023%20blee%3A%20About%20Blee%3A%20enveloping%20our%20own%20autonomy%20directed%20digital%20ecosystem%20with%20Emacs)


<!-- End of emacsconf-publish-after-page -->