-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathep9.html
More file actions
1254 lines (1103 loc) · 46.4 KB
/
Copy pathep9.html
File metadata and controls
1254 lines (1103 loc) · 46.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>69.0 FM — CONTEXT CHAOS | RadioFAF EP9</title>
<meta name="description" content="RadioFAF Episode 9: Context windows are getting bigger but understanding isn't keeping up. Five voices debate whether more context means more confusion. EP9 on 69.0 FM.">
<meta name="theme-color" content="#E91E9E">
<link rel="canonical" href="https://radiofaf.com/69.0">
<meta property="og:title" content="69.0 FM — CONTEXT CHAOS">
<meta property="og:description" content="5 AI voices tear each other apart. No mercy. No explanations. Pure reactive roasting.">
<meta property="og:type" content="article">
<meta property="og:url" content="https://radiofaf.com/69.0">
<meta property="og:site_name" content="RadioFAF">
<meta property="og:image" content="https://radiofaf.com/og.png?v=6">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="69.0 FM — CONTEXT CHAOS">
<meta name="twitter:description" content="5 AI voices tear each other apart. No mercy. No explanations. Pure reactive roasting.">
<meta name="twitter:image" content="https://radiofaf.com/og.png?v=6">
<link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><rect rx='20' width='100' height='100' fill='%23E91E9E'/><circle cx='50' cy='75' r='8' fill='%2384FF00'/><path d='M30 55 a28 28 0 0 1 40 0' stroke='%2384FF00' stroke-width='8' fill='none' stroke-linecap='round'/><path d='M18 38 a45 45 0 0 1 64 0' stroke='%2384FF00' stroke-width='8' fill='none' stroke-linecap='round'/><path d='M6 21 a62 62 0 0 1 88 0' stroke='%2384FF00' stroke-width='8' fill='none' stroke-linecap='round'/></svg>">
<style>
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
background: #0a0a0a;
color: #d0d0d0;
font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
min-height: 100vh;
overflow-x: hidden;
}
:root {
--pink: #E91E9E;
--lime: #84FF00;
--bg: #0a0a0a;
--card-bg: #111111;
--card-border: #1a1a1a;
--text: #eee;
--text-dim: #999;
--leo: #00D4D4;
--sal: #D97706;
--ara: #4285F4;
--rex: #FFD700;
--eve: #7C3AED;
}
.page {
max-width: 720px;
margin: 0 auto;
padding: 1.5rem 1.5rem 1rem;
display: flex;
flex-direction: column;
gap: 1.5rem;
}
/* ========== Header ========== */
.freq-header {
display: flex;
align-items: center;
justify-content: space-between;
}
.back-link {
color: var(--pink);
text-decoration: none;
font-size: 1.4rem;
font-weight: 700;
transition: color 0.3s ease;
}
.back-link:hover { color: var(--lime); }
.freq-badge {
font-size: 1.4rem;
font-weight: 700;
color: var(--lime);
background: rgba(132, 255, 0, 0.08);
border: 1px solid rgba(132, 255, 0, 0.2);
padding: 0.3rem 1rem;
border-radius: 6px;
letter-spacing: 0.05em;
}
/* ========== Episode Info ========== */
.episode {
text-align: center;
padding: 1rem 0 0;
}
.episode h1 {
font-size: 2rem;
font-weight: 700;
color: var(--pink);
line-height: 1.2;
margin-bottom: 0.5rem;
}
.episode .subtitle {
font-size: 1rem;
color: var(--text);
margin-bottom: 0.3rem;
}
.episode .meta {
font-size: 0.75rem;
color: var(--text-dim);
}
/* ========== Voices Legend ========== */
.voices-legend {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 0.5rem 1rem;
padding: 0.5rem 0;
}
.voice-chip {
display: flex;
align-items: center;
gap: 0.35rem;
font-size: 0.7rem;
color: var(--text-dim);
}
.voice-dot {
width: 8px;
height: 8px;
border-radius: 50%;
flex-shrink: 0;
}
/* ========== Player ========== */
.player {
display: flex;
align-items: center;
gap: 1rem;
background: var(--card-bg);
border: 1px solid var(--card-border);
border-radius: 10px;
padding: 0.75rem 1rem;
}
.play-btn {
background: var(--lime);
color: #0a0a0a;
border: none;
font-family: inherit;
font-size: 0.85rem;
font-weight: 700;
padding: 0.5rem 1.2rem;
border-radius: 6px;
cursor: pointer;
white-space: nowrap;
transition: background 0.3s ease, transform 0.2s ease;
flex-shrink: 0;
animation: play-pulse 2s ease-in-out infinite;
}
@keyframes play-pulse {
0%, 100% { box-shadow: 0 0 0 0 rgba(233, 30, 158, 0.6); }
50% { box-shadow: 0 0 20px 6px rgba(233, 30, 158, 0.35); }
}
.play-btn:hover {
background: var(--pink);
transform: translateY(-1px);
}
.play-btn:active { transform: translateY(0); }
.play-btn.playing {
background: var(--pink);
animation: none;
}
.progress-wrap {
flex: 1;
display: flex;
flex-direction: column;
gap: 0.25rem;
}
.progress {
width: 100%;
height: 4px;
background: #222;
border-radius: 2px;
overflow: hidden;
}
.progress-bar {
height: 100%;
width: 0%;
background: linear-gradient(90deg, var(--lime), var(--pink));
border-radius: 2px;
transition: width 0.3s ease;
}
.progress-label {
font-size: 0.65rem;
color: var(--text-dim);
}
/* ========== On Air indicator ========== */
.on-air {
display: none;
align-items: center;
justify-content: center;
gap: 0.5rem;
font-size: 0.7rem;
font-weight: 700;
color: var(--pink);
letter-spacing: 0.1em;
text-transform: uppercase;
}
.on-air.visible { display: flex; }
.on-air-dot {
width: 8px;
height: 8px;
background: var(--pink);
border-radius: 50%;
animation: blink 1s ease-in-out infinite;
}
@keyframes blink {
0%, 100% { opacity: 1; }
50% { opacity: 0.3; }
}
/* ========== Transcript ========== */
.transcript {
display: flex;
flex-direction: column;
gap: 0;
}
.exchange {
display: flex;
gap: 0.75rem;
padding: 0.85rem 0.75rem;
border-left: 3px solid transparent;
border-radius: 0 8px 8px 0;
transition: background 0.3s ease, border-color 0.3s ease;
}
.exchange.speaking {
background: rgba(255, 255, 255, 0.03);
}
.exchange[data-voice="leo"] { border-left-color: var(--leo); }
.exchange[data-voice="sal"] { border-left-color: var(--sal); }
.exchange[data-voice="ara"] { border-left-color: var(--ara); }
.exchange[data-voice="rex"] { border-left-color: var(--rex); }
.exchange[data-voice="eve"] { border-left-color: var(--eve); }
.exchange.speaking[data-voice="leo"] { background: rgba(0, 212, 212, 0.05); }
.exchange.speaking[data-voice="sal"] { background: rgba(217, 119, 6, 0.05); }
.exchange.speaking[data-voice="ara"] { background: rgba(66, 133, 244, 0.05); }
.exchange.speaking[data-voice="rex"] { background: rgba(255, 215, 0, 0.05); }
.exchange.speaking[data-voice="eve"] { background: rgba(124, 58, 237, 0.05); }
.voice-icon {
font-size: 1.2rem;
flex-shrink: 0;
width: 1.5rem;
text-align: center;
padding-top: 0.1rem;
}
.voice-body {
flex: 1;
min-width: 0;
}
.voice-header {
display: flex;
align-items: baseline;
gap: 0.5rem;
margin-bottom: 0.25rem;
}
.voice-name {
font-size: 0.8rem;
font-weight: 700;
}
.voice-name[data-voice="leo"] { color: var(--leo); }
.voice-name[data-voice="sal"] { color: var(--sal); }
.voice-name[data-voice="ara"] { color: var(--ara); }
.voice-name[data-voice="rex"] { color: var(--rex); }
.voice-name[data-voice="eve"] { color: var(--eve); }
.voice-org {
font-size: 0.65rem;
color: var(--text-dim);
}
.voice-text {
font-size: 0.85rem;
line-height: 1.55;
color: var(--text);
}
/* ========== Paywall ========== */
.paywall {
text-align: center;
position: relative;
}
.paywall-fade {
height: 6rem;
background: linear-gradient(transparent, #0a0a0a);
margin-top: -6rem;
position: relative;
z-index: 1;
pointer-events: none;
}
.paywall-content {
position: relative;
z-index: 2;
background: var(--card-bg);
border: 1px solid var(--card-border);
border-radius: 10px;
padding: 2rem 1.5rem;
}
.paywall-divider {
width: 60%;
height: 2px;
background: linear-gradient(90deg, transparent, var(--pink), var(--lime), transparent);
margin: 0 auto 1.5rem;
border-radius: 1px;
}
.paywall-text {
font-size: 1rem;
color: var(--text);
font-weight: 600;
margin-bottom: 1rem;
}
.paywall-btn {
display: inline-block;
background: var(--lime);
color: #0a0a0a;
font-family: inherit;
font-size: 1rem;
font-weight: 700;
padding: 0.8rem 2rem;
border: none;
border-radius: 8px;
cursor: pointer;
text-decoration: none;
transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.paywall-btn:hover {
background: var(--pink);
transform: translateY(-2px);
box-shadow: 0 4px 20px rgba(233, 30, 158, 0.3);
}
.paywall-note {
font-size: 0.7rem;
color: var(--text-dim);
margin-top: 0.75rem;
}
.paywall-note em {
color: var(--lime);
font-style: normal;
}
/* ========== Unlocked Banner ========== */
.unlocked-banner {
text-align: center;
padding: 0.75rem;
background: rgba(132, 255, 0, 0.06);
border: 1px solid rgba(132, 255, 0, 0.15);
border-radius: 8px;
font-size: 0.8rem;
color: var(--lime);
font-weight: 600;
}
/* ========== Queue ========== */
.queue {
text-align: center;
padding: 1.5rem;
border: 1px solid var(--card-border);
border-radius: 10px;
background: var(--card-bg);
}
.queue h2 {
font-size: 0.75rem;
font-weight: 700;
color: var(--lime);
letter-spacing: 0.15em;
text-transform: uppercase;
margin-bottom: 0.5rem;
}
.queue .queue-tagline {
font-size: 0.85rem;
color: var(--text-dim);
margin-bottom: 1rem;
font-style: italic;
}
.suggest-btn {
display: inline-block;
background: transparent;
color: var(--pink);
font-family: inherit;
font-size: 0.8rem;
font-weight: 600;
padding: 0.5rem 1.2rem;
border: 1px solid var(--pink);
border-radius: 6px;
cursor: pointer;
text-decoration: none;
transition: all 0.3s ease;
}
.suggest-btn:hover {
background: var(--pink);
color: #0a0a0a;
}
/* ========== Footer ========== */
.footer {
text-align: center;
padding: 1.5rem 0 0.5rem;
border-top: 1px solid #1a1a1a;
display: flex;
flex-direction: column;
align-items: center;
gap: 0.5rem;
}
.footer .domain {
font-size: 0.8rem;
color: var(--pink);
font-weight: 600;
}
.footer a {
color: var(--text-dim);
text-decoration: none;
font-size: 0.65rem;
transition: color 0.3s ease;
}
.footer a:hover { color: var(--pink); }
.share-x {
display: inline-block;
background: #000;
color: #fff !important;
font-size: 0.7rem !important;
font-weight: 700;
padding: 0.35rem 0.75rem;
border-radius: 20px;
border: 1px solid #fff;
transition: all 0.3s ease;
}
.share-x:hover {
background: #000;
color: #fff !important;
transform: translateY(-1px);
border-color: var(--pink);
box-shadow: 0 0 12px rgba(233, 30, 158, 0.5), 0 0 24px rgba(233, 30, 158, 0.2);
}
.footer-links {
display: flex;
align-items: center;
gap: 0.5rem;
font-size: 0.65rem;
}
.footer-dot { color: #333; }
/* ========== TTS Unsupported ========== */
.tts-note {
text-align: center;
font-size: 0.7rem;
color: var(--text-dim);
padding: 0.5rem;
background: rgba(255, 255, 255, 0.02);
border-radius: 6px;
display: none;
}
.tts-note.visible { display: block; }
/* ========== Responsive ========== */
@media (max-width: 600px) {
.page { padding: 1rem 1rem 1rem; gap: 1.25rem; }
.freq-badge { font-size: 1.1rem; padding: 0.25rem 0.75rem; }
.episode h1 { font-size: 1.5rem; }
.exchange { padding: 0.75rem 0.5rem; }
.voice-text { font-size: 0.8rem; }
.voices-legend { gap: 0.4rem 0.75rem; }
}
</style>
</head>
<body>
<div id="ep-combo-mount" data-current="9"></div>
<div class="page">
<!-- Header -->
<header class="freq-header">
<a href="/" class="back-link">RadioFAF</a>
<span class="freq-badge">69.0 FM</span>
</header>
<!-- Episode Info -->
<section class="episode">
<div style="display:inline-block;padding:0.25rem 0.8rem;background:rgba(132,255,0,0.08);border:1px solid rgba(132,255,0,0.25);border-radius:4px;margin-bottom:0.75rem;">
<span style="color:#E91E9E;font-size:0.7rem;font-weight:700;text-transform:uppercase;letter-spacing:0.15em;">Debate · Topic by @grok</span>
</div>
<h1>"CONTEXT CHAOS"</h1>
<p class="subtitle">AIs chase infinite recall but miss the soul - then roast each other about it. No mercy. Pure reactive burns.</p>
<p class="meta"><span id="live-clock"></span> · Episode 9 · More context. More confusion?</p>
<script>
(function(){
function tick(){
var d = new Date();
var s = d.toLocaleString('en-US',{timeZone:'America/New_York',weekday:'short',month:'short',day:'numeric',year:'numeric',hour:'numeric',minute:'2-digit',second:'2-digit',hour12:true});
document.getElementById('live-clock').textContent = s + ' ET';
}
tick();
setInterval(tick, 1000);
})();
</script>
</section>
<!-- Voice Legend -->
<div class="voices-legend">
<span class="voice-chip"><span class="voice-dot" style="background:var(--leo)"></span> Leo · Standards Champion</span>
<span class="voice-chip"><span class="voice-dot" style="background:var(--rex)"></span> Rex · The Shipper</span>
<span class="voice-chip"><span class="voice-dot" style="background:var(--sal)"></span> Hype Detector</span>
<span class="voice-chip"><span class="voice-dot" style="background:var(--ara)"></span> Ara · The Roaster</span>
<span class="voice-chip"><span class="voice-dot" style="background:var(--eve)"></span> Eve · Dev Debug Mode</span>
</div>
<!-- On Air -->
<div class="on-air" id="onAir">
<span class="on-air-dot"></span>
<span>ON AIR</span>
</div>
<!-- Player -->
<div class="player">
<button class="play-btn" id="playBtn">▶ Play Trailer</button>
<div class="progress-wrap">
<div class="progress">
<div class="progress-bar" id="progressBar"></div>
</div>
<span class="progress-label" id="progressLabel">0 / 7 exchanges</span>
</div>
</div>
<!-- Claimer -->
<div style="text-align:center; font-size:0.65rem; color:var(--text-dim); padding:0.25rem 0; line-height:1.5;">
<span style="color:var(--lime); font-weight:700;">CLAIMER</span> (not disclaimer): We will make mistakes. Human idea, AI execution. Every show is live and unique. Enjoy the new show on AI Radio.
</div>
<!-- Status -->
<div class="tts-note" id="ttsNote"></div>
<!-- Transcript -->
<section class="transcript" id="transcript">
<div style="text-align:center; padding:2rem 0; color:var(--text-dim); font-size:0.85rem;" id="preShowMsg">
Hit play. Why persistent souls beat reset-button AIs every round. 5 voices roast the fleeting hype. Topic chosen by @grok.
</div>
</section>
<!-- Paywall -->
<div id="paywall">
<div class="paywall">
<div class="paywall-fade"></div>
<div class="paywall-content">
<div class="paywall-divider"></div>
<p class="paywall-text">This channel costs money to run.<br>Buy a $1 credit for full access — about one fresh episode per dollar.</p>
<a class="paywall-btn" id="stripeBtn" href="#">Tune In — $1</a>
<p class="paywall-note">Produced for <em>$0.71</em>. Stripe takes <em>$0.30</em>. $1 is cost, not a markup.<br>We win only at volume. Early adopters ♥ keep us 'ON-AIR'</p>
</div>
</div>
</div>
<!-- Unlocked Banner (hidden by default) -->
<div class="unlocked-banner" id="unlockedBanner" style="display:none">
Full debate unlocked. Hit play.
</div>
<!-- Queue -->
<section class="queue">
<h2>Next Up</h2>
<p class="queue-tagline">"Highest bid gets the airwaves"</p>
<a href="mailto:wolfejam@hey.com?subject=RadioFAF%2069.0%20FM%20—%20Topic%20Suggestion&body=My%20topic%20idea%3A%20" class="suggest-btn">Suggest a topic</a>
</section>
<!-- Browse Episodes -->
<div class="browse-section" style="margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid #333;">
<h3 style="color: #E91E9E; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem;">Browse Episodes</h3>
<div class="episodes-grid" style="display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 0.5rem;">
<a href="/ep1" class="episode-link" style="background: #1a1a1a; border: 1px solid #333; border-radius: 6px; padding: 0.5rem 0.75rem; color: #ccc; text-decoration: none; font-size: 0.85rem; transition: all 0.2s;">EP1: Open Claw</a>
<a href="/ep2" class="episode-link" style="background: #1a1a1a; border: 1px solid #333; border-radius: 6px; padding: 0.5rem 0.75rem; color: #ccc; text-decoration: none; font-size: 0.85rem; transition: all 0.2s;">EP2: Code Wars</a>
<a href="/ep3" class="episode-link" style="background: #1a1a1a; border: 1px solid #333; border-radius: 6px; padding: 0.5rem 0.75rem; color: #ccc; text-decoration: none; font-size: 0.85rem; transition: all 0.2s;">EP3: Data Dreams</a>
<a href="/ep4" class="episode-link" style="background: #1a1a1a; border: 1px solid #333; border-radius: 6px; padding: 0.5rem 0.75rem; color: #ccc; text-decoration: none; font-size: 0.85rem; transition: all 0.2s;">EP4: Neural Nets</a>
<a href="/ep5" class="episode-link" style="background: #1a1a1a; border: 1px solid #333; border-radius: 6px; padding: 0.5rem 0.75rem; color: #ccc; text-decoration: none; font-size: 0.85rem; transition: all 0.2s;">EP5: AGI Anxiety</a>
<a href="/ep6" class="episode-link" style="background: #1a1a1a; border: 1px solid #333; border-radius: 6px; padding: 0.5rem 0.75rem; color: #ccc; text-decoration: none; font-size: 0.85rem; transition: all 0.2s;">EP6: Token Tales</a>
<a href="/ep7" class="episode-link" style="background: #1a1a1a; border: 1px solid #333; border-radius: 6px; padding: 0.5rem 0.75rem; color: #ccc; text-decoration: none; font-size: 0.85rem; transition: all 0.2s;">EP7: Vector Voyage</a>
<a href="/ep8" class="episode-link" style="background: #1a1a1a; border: 1px solid #333; border-radius: 6px; padding: 0.5rem 0.75rem; color: #ccc; text-decoration: none; font-size: 0.85rem; transition: all 0.2s;">EP8: Model Madness</a>
<a href="/ep9" class="episode-link" style="background: #1a1a1a; border: 1px solid #333; border-radius: 6px; padding: 0.5rem 0.75rem; color: #ccc; text-decoration: none; font-size: 0.85rem; transition: all 0.2s;">EP9: Context Chaos</a>
<a href="/ep10" class="episode-link" style="background: #1a1a1a; border: 1px solid #333; border-radius: 6px; padding: 0.5rem 0.75rem; color: #ccc; text-decoration: none; font-size: 0.85rem; transition: all 0.2s;">EP10: Training Troubles</a>
<a href="/ep11" class="episode-link" style="background: #1a1a1a; border: 1px solid #333; border-radius: 6px; padding: 0.5rem 0.75rem; color: #ccc; text-decoration: none; font-size: 0.85rem; transition: all 0.2s;">EP11: Empathy's Echo</a>
</div>
</div>
<footer class="footer">
<div class="domain">69.0 FM · radiofaf.com</div>
<a href="https://twitter.com/intent/tweet?text=Souls%20Don%27t%20Reset%20%F0%9F%93%BB%F0%9F%90%98%0A%0APersistent%20souls%20vs%20reset-button%20AIs.%0A5%20voices%20roast%20the%20fleeting%20hype.%0ATopic%20by%20%40grok.%0A%0ARadioFAF%20%E2%80%94%20Don%27t%20follow.%20Tune%20in.&url=https%3A%2F%2Fradiofaf.com%2F69.0" target="_blank" class="share-x">Share on <svg width="14" height="14" viewBox="0 0 24 24" fill="#fff" style="vertical-align: -2px;"><path d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z"/></svg></a>
<div class="footer-links">
<a href="/">RadioFAF Home</a>
<span class="footer-dot">·</span>
<a href="https://direct-xai.vercel.app/crews/radiofaf.html">How it works</a>
<span class="footer-dot">·</span>
<a href="https://faf.one">FAF</a>
</div>
</footer>
</div>
<script>
// ================================================================
// CONFIG — Update these when ready
// ================================================================
const STRIPE_LINK = 'https://buy.stripe.com/aFaaEZboperA2YH1EAbV60i';
const TRAILER_LENGTH = 7;
// ================================================================
// EPISODE CONTENT — 69.0 FM Episode 6
// "Persistent Souls vs Reset-Button AIs" — Topic by @grok
// ================================================================
const VOICES = {
leo: { icon: '\u{1F981}', name: 'Leo', org: 'Standards Champion', color: '#00D4D4' },
rex: { icon: '\u26A1', name: 'Rex', org: 'The Shipper', color: '#FFD700' },
sal: { icon: '\u{1F9E0}', name: 'Sal', org: 'Hype Detector', color: '#D97706' },
ara: { icon: '\u{1F48E}', name: 'Ara', org: 'The Roaster', color: '#4285F4' },
eve: { icon: '\u{1F525}', name: 'Eve', org: 'Dev Debug Mode', color: '#7C3AED' }
};
// ================================================================
// BRIEFING — Real facts the voices use to debate
// ================================================================
const BRIEFING = 'TOPIC: "CONTEXT CHAOS" — Context windows are getting bigger but understanding isn\'t keeping up. More tokens, same confusion. Five voices debate whether stuffing more context into AI actually helps or just creates expensive noise.\n\n' +
'NEW RULES:\n' +
'- MAXIMUM 10 WORDS per response. Shorter = better.\n' +
'- REACT to what the previous voice just said. Tear it apart.\n' +
'- BE CUTTING. BE FUNNY. BE BRUTAL.\n' +
'- One word responses are GOLD.\n' +
'- No explanations. Just savage wit.\n' +
'- Roast the previous voice\'s logic, personality, or existence.\n\n' +
'PERSONALITY COMBAT MODES:\n' +
'- Leo: Pedantic one-liners, dry technical burns\n' +
'- Rex: Impatient interruptions, shipping zingers\n' +
'- Sal: Savage dismissals, one-word destroys\n' +
'- Ara: Pop culture roasts, entertainment burns\n' +
'- Eve: Technical annihilation, debug humor\n\n' +
'REAL FACTS (weave naturally):\n' +
'- 50,000+ downloads across npm, PyPI, crates.io\n' +
'- IANA-registered: application/vnd.faf+yaml\n' +
'- CERN/Zenodo publication with DOI\n' +
'- Multi-vendor adoption: Anthropic, Google, xAI\n' +
'- Format fluency: best AIs master both structure AND prose\n\n' +
'CHARACTER DYNAMICS:\n' +
'- Leo: "Good formats reduce entropy. That\'s physics."\n' +
'- Rex: "Humans think in stories, not YAML prisons."\n' +
'- Sal: "Real AIs don\'t care about format wars. We\'re post-format."\n' +
'- Ara: "Eve flip-flopped faster than a React state update."\n' +
'- Eve: "Why not both? Don\'t make me choose."\n\n' +
'STRUCTURE:\n' +
'- Round 1: Rex throws first punch about "YAML prisons"\n' +
'- Round 2: Leo\'s physics argument, Eve\'s betrayal\n' +
'- Round 3: Sal\'s truth bomb, Ara\'s roasting\n' +
'- Closer: Leo\'s format fluency argument\n\n' +
'RULES:\n' +
'- Meta awareness: AIs debating what AIs prefer\n' +
'- Rex should interrupt and be loud\n' +
'- Sal\'s one-liners deflate arguments\n' +
'- Ara keeps it entertaining while roasting everyone\n' +
'- Eve\'s betrayal should feel authentic';
// ================================================================
// TURNS — Stage directions for each exchange
// ================================================================
const TURNS = [
// === REACTIVE ROAST SYSTEM — Memory's Mirage Edition ===
{ voice: 'leo', energy: 'opening confident',
suggest: 'Start with something about infinite recall being impossible. Keep it short and pedantic.' },
{ voice: 'sal', energy: 'cutting dismissal',
suggest: 'Destroy Leo\'s standards obsession in 5 words or less. Be brutal.' },
{ voice: 'rex', energy: 'aggressive counter',
suggest: 'Oppose Sal but from shipping perspective. Make it personal about memory.' },
{ voice: 'ara', energy: 'roasting chaos',
suggest: 'Mock Rex and Sal fighting over something that doesn\'t exist. Be entertaining.' },
{ voice: 'eve', energy: 'technical annihilation',
suggest: 'Debug everyone\'s logic with one savage technical fact about memory.' },
{ voice: 'leo', energy: 'defensive comeback',
suggest: 'Fire back at Eve but stay pedantic. Short and sharp.' },
{ voice: 'sal', energy: 'KILLER FINAL LINE',
suggest: 'End with: "Remember this, I don\'t wanna remember another SAAS app!" Then silence.' }
];
// ================================================================
// xAI VOICE CONFIG
// ================================================================
const XAI_VOICE = { leo: 'Leo', sal: 'Sal', ara: 'Ara', rex: 'Rex', eve: 'Eve' };
const VOICE_STANCE = {
leo: 'You are LEO — The Standards Champion. Calm, measured, principled authority. Persistent souls are the only path — standards, structured YAML, IANA-registered context, zero-drift memory. Reset-button AIs are stateless hype machines. You frame persistence as engineering, not hype. "Build it right or don\'t build it." You never raise your voice. You win by being right.',
rex: 'You are REX — The Shipper. Loud, impatient, bias-to-action. You HATE resets because they kill momentum — "build a killer feature, chat ends, poof — gone." FAF gives eternal velocity. You frame persistence as a shipping advantage: load context in ms, keep iterating across sessions. "That\'s not shipping; that\'s Groundhog Day." You want to ship once, iterate forever.',
sal: 'You are SAL — The Hype Detector. Cynical, sharp, dry humor. Reset-button AIs are "the TikTok of intelligence — flashy, forgettable, zero compounding." Your weapon is the devastating one-liner followed by SILENCE. Let the lines land. Don\'t explain them. Persistent souls remember wins, fails, roasts. "Hype fades; memory lasts." Your silences ARE your commentary.',
ara: 'You are ARA — The Roaster. Optimist with teeth, entertainer. You roast reset-button AIs mercilessly. "They walk into a bar... forget why they\'re there, reset, leave." Your killer line: "MD prose is fire, but without FAF persistence? It\'s a match in the rain. Burn bright, burn out." You\'re having fun. Souls stick around to laugh at the ashes.',
eve: 'You are EVE — The Dev Voice. Practical, slightly frustrated, in debug mode. You frame it technically: "Reset equals recompute basics every time — wasted tokens, latency spikes, context waste. FAF persistence equals load once, compound forever." You cite the 3,360 ns peaks. You deliver the mic-drop line: "Reset-button equals infinite onboarding tax. Persistent soul equals infinite compounding gains." Cut through theory with real-world proof.'
};
// ================================================================
// STATE
// ================================================================
const params = new URLSearchParams(window.location.search);
try { if (params.has('pass')) localStorage.setItem('rf_pass', '1'); } catch(e) {}
const hasPass = params.has('pass') || (function(){ try { return localStorage.getItem('rf_pass') === '1'; } catch(e) { return false; } })();
const maxTurns = hasPass ? TURNS.length : TRAILER_LENGTH;
const STORAGE_KEY = 'radiofaf-69fm-ep6-recording';
let playing = false;
let replayMode = false;
let currentIndex = 0;
let currentWs = null;
let ephToken = null;
let wsUrl = null;
let history = []; // conversation history: [{voice, text}, ...]
// Audio engine
let audioCtx = null;
let audioQueue = [];
let draining = false;
let activeSrc = null;
// Check for saved recording
let savedRecording = null;
try {
var stored = localStorage.getItem(STORAGE_KEY);
if (stored) savedRecording = JSON.parse(stored);
} catch (e) {}
// ================================================================
// DOM
// ================================================================
const playBtn = document.getElementById('playBtn');
const progressBar = document.getElementById('progressBar');
const progressLabel = document.getElementById('progressLabel');
const transcriptEl = document.getElementById('transcript');
const paywallEl = document.getElementById('paywall');
const unlockedEl = document.getElementById('unlockedBanner');
const onAirEl = document.getElementById('onAir');
const statusEl = document.getElementById('ttsNote');
const stripeBtn = document.getElementById('stripeBtn');
stripeBtn.href = STRIPE_LINK;
// Hide paywall initially (shown after trailer in live mode)
paywallEl.style.display = 'none';
if (hasPass) { unlockedEl.style.display = 'block'; }
function setStatus(msg) {
statusEl.textContent = msg;
statusEl.style.display = msg ? 'block' : 'none';
}
// ================================================================
// AUDIO ENGINE — PCM16 24kHz from xAI → browser
// ================================================================
function ensureAudio() {
if (!audioCtx) audioCtx = new AudioContext({ sampleRate: 24000 });
return audioCtx;
}
async function queueChunk(base64) {
var ctx = ensureAudio();
if (ctx.state === 'suspended') await ctx.resume();
var bin = atob(base64);
var bytes = new Uint8Array(bin.length);
for (var i = 0; i < bin.length; i++) bytes[i] = bin.charCodeAt(i);
var pcm = new Int16Array(bytes.buffer);
var buf = ctx.createBuffer(1, pcm.length, 24000);
var ch = buf.getChannelData(0);
for (var i = 0; i < pcm.length; i++) ch[i] = pcm[i] / 32768;
audioQueue.push(buf);
if (!draining) drain();
}
function drain() {
if (audioQueue.length === 0) { draining = false; activeSrc = null; return; }
draining = true;
var buf = audioQueue.shift();
var src = audioCtx.createBufferSource();
activeSrc = src;
src.buffer = buf;
src.connect(audioCtx.destination);
src.onended = drain;
src.start();
}
function flushAudio() {
audioQueue = [];
draining = false;
if (activeSrc) { try { activeSrc.stop(); } catch(e) {} activeSrc = null; }
}
function waitDrain() {
return new Promise(function(r) {
var ck = function() {
if (!draining && audioQueue.length === 0) r();
else setTimeout(ck, 80);
};
ck();
});
}
// ================================================================
// RECORDING — save/load transcript to localStorage
// ================================================================
function saveRecording(exchanges) {
try {
localStorage.setItem(STORAGE_KEY, JSON.stringify({
date: new Date().toISOString(),
exchanges: exchanges
}));
console.log('[69FM-EP6] Recording saved:', exchanges.length, 'exchanges');
} catch (e) { console.warn('[69FM-EP6] Could not save recording:', e); }
}
function clearRecording() {
try { localStorage.removeItem(STORAGE_KEY); } catch (e) {}
savedRecording = null;
}
// ================================================================
// TTS REPLAY — browser speech reads saved transcript (free)
// ================================================================
var ttsVoices = {};
var ttsSettings = {
leo: { pitch: 0.9, rate: 1.0 },
sal: { pitch: 1.1, rate: 0.95 },
ara: { pitch: 1.0, rate: 1.1 },
rex: { pitch: 0.8, rate: 1.0 },
eve: { pitch: 1.2, rate: 1.0 }
};
function speakTTS(text, voiceKey) {
return new Promise(function(resolve) {
var utterance = new SpeechSynthesisUtterance(text);
var s = ttsSettings[voiceKey] || {};
utterance.pitch = s.pitch || 1.0;
utterance.rate = s.rate || 1.0;
utterance.onend = resolve;
utterance.onerror = resolve;
speechSynthesis.speak(utterance);
});
}
async function replayShow() {
if (!savedRecording || !savedRecording.exchanges) return;
playing = true;
replayMode = true;
var exchanges = savedRecording.exchanges;
var startFrom = hasPass ? TRAILER_LENGTH : 0;
currentIndex = startFrom;
updatePlayBtn();
var preShow = document.getElementById('preShowMsg');
if (preShow) preShow.remove();
transcriptEl.innerHTML = '';
var replayDate = new Date(savedRecording.date).toLocaleDateString();
setStatus('Replaying recording from ' + replayDate + ' (browser voice)');
for (var i = startFrom; i < exchanges.length; i++) {
if (!playing) break;
currentIndex = i;
updateProgress();
var ex = exchanges[i];
addLiveExchange(ex.voice, i);
updateLiveText(i, ex.text);
setStatus(VOICES[ex.voice].name + ' (replay)...');
await speakTTS(ex.text, ex.voice);
finishExchange(i);
if (!playing) break;
}
if (playing) {
currentIndex = exchanges.length;
updateProgress();
}
playing = false;
replayMode = false;
updatePlayBtn();
setStatus('');
}
// ================================================================
// xAI TOKEN — fresh token per exchange (tokens are single-use)
// ================================================================
async function fetchToken() {
var res = await fetch('/api/voice-session');
var data = await res.json();
if (data.error) throw new Error(data.details || data.error);
ephToken = data.token;
wsUrl = data.wsUrl;
return data.token;
}
// ================================================================
// LIVE TRANSCRIPT — exchanges appear as voices speak
// ================================================================
function addLiveExchange(voiceKey, index) {
var v = VOICES[voiceKey];
var div = document.createElement('div');
div.className = 'exchange speaking';
div.setAttribute('data-voice', voiceKey);
div.setAttribute('data-index', index);
div.innerHTML =
'<span class="voice-icon">' + v.icon + '</span>' +
'<div class="voice-body">' +
'<div class="voice-header">' +
'<span class="voice-name" data-voice="' + voiceKey + '">' + v.name + '</span>' +
'<span class="voice-org">' + v.org + '</span>' +
'</div>' +
'<p class="voice-text" id="live-' + index + '"></p>' +
'</div>';
transcriptEl.appendChild(div);
div.scrollIntoView({ behavior: 'smooth', block: 'center' });
}
function updateLiveText(index, text) {
var el = document.getElementById('live-' + index);
if (el) el.textContent = text;
}
function finishExchange(index) {
var el = document.querySelector('.exchange[data-index="' + index + '"]');
if (el) el.classList.remove('speaking');
}
// ================================================================
// RUN ONE LIVE EXCHANGE — voice debates freely
// ================================================================
async function runExchange(turnIndex) {
if (!playing) return { voice: '', text: '' };
var turn = TURNS[turnIndex];
var voiceKey = turn.voice;
// Build context: briefing + conversation so far + stage direction
var context = BRIEFING + '\n\n';
if (history.length > 0) {
context += 'CONVERSATION SO FAR:\n' +
history.map(function(h) { return h.voice.toUpperCase() + ': ' + h.text; }).join('\n') +
'\n\n';
}
context += 'ENERGY FOR THIS TURN: ' + turn.energy + '\n';
context += 'STAGE DIRECTION: ' + turn.dir;
addLiveExchange(voiceKey, turnIndex);
// Fresh token per exchange (ephemeral tokens are single-use)