-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathep1.html
More file actions
1289 lines (1146 loc) · 49.7 KB
/
Copy pathep1.html
File metadata and controls
1289 lines (1146 loc) · 49.7 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>RadioFAF 69.0 FM — Episode 1: Open Claw or Closed Flaw?</title>
<meta name="description" content="RadioFAF Episode 1: 5 voices debate the OpenClaw saga — the C&D, crypto heist, Valentine's Day acquisition, and the future of AI agents.">
<meta name="theme-color" content="#E91E9E">
<link rel="canonical" href="https://radiofaf.com/69.0">
<meta property="og:title" content="69.0 FM — Open Claw or Closed Flaw?">
<meta property="og:description" content="5 voices. 5 corners. 0 chill. The OpenClaw saga — live on 69.0 FM.">
<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">
<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 — Open Claw or Closed Flaw?">
<meta name="twitter:description" content="5 voices. 5 corners. 0 chill. The OpenClaw saga — live on 69.0 FM.">
<meta name="twitter:image" content="https://radiofaf.com/og.png">
<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: #fff;
font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
display: flex;
align-items: center;
justify-content: center;
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;
}
/* ========== Layout ========== */
.container {
max-width: 800px;
width: 90%;
padding: 2rem;
}
/* ========== Header ========== */
.header {
margin-bottom: 2rem;
text-align: center;
}
.episode-label {
font-size: 0.7rem;
color: var(--text-dim);
letter-spacing: 0.15em;
text-transform: uppercase;
margin-bottom: 0.3rem;
}
h1 {
font-size: 2.5rem;
font-weight: 700;
color: var(--pink);
letter-spacing: -0.02em;
margin-bottom: 0.3rem;
}
.tagline {
font-size: 1rem;
color: var(--lime);
font-style: italic;
}
/* ========== Play Button ========== */
.controls {
text-align: center;
margin-bottom: 2rem;
}
.play-btn {
background: var(--lime);
color: #0a0a0a;
font-family: inherit;
font-size: 1.2rem;
font-weight: 700;
padding: 1rem 2.5rem;
border: none;
border-radius: 8px;
cursor: pointer;
transition: transform 0.3s ease;
}
.play-btn:hover { transform: translateY(-2px); }
.play-btn:active { transform: translateY(0); }
.play-btn.playing { background: var(--pink); color: #fff; }
/* ========== Progress ========== */
.progress-container {
background: #1a1a1a;
border-radius: 4px;
height: 8px;
overflow: hidden;
margin-bottom: 0.5rem;
}
.progress-bar {
background: var(--lime);
height: 100%;
width: 0%;
transition: width 0.5s 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-name {
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.05em;
font-size: 0.75rem;
min-width: 40px;
flex-shrink: 0;
}
.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-text {
flex: 1;
line-height: 1.5;
}
/* ========== Paywall ========== */
.paywall {
display: none;
background: #111;
border: 2px solid var(--pink);
border-radius: 12px;
padding: 2rem;
margin-top: 2rem;
text-align: center;
}
.paywall h2 {
color: var(--pink);
font-size: 1.5rem;
margin-bottom: 1rem;
}
.paywall p {
color: var(--text-dim);
margin-bottom: 1.5rem;
}
.pay-btn {
background: var(--pink);
color: #fff;
font-family: inherit;
font-size: 1.1rem;
font-weight: 700;
padding: 0.8rem 2rem;
border: none;
border-radius: 8px;
text-decoration: none;
display: inline-block;
transition: transform 0.3s ease;
}
.pay-btn:hover { transform: translateY(-2px); }
/* ========== Status ========== */
.status {
text-align: center;
margin-bottom: 2rem;
font-size: 0.85rem;
color: var(--text-dim);
min-height: 1.2rem;
}
/* ========== Pre-show message ========== */
.pre-show {
text-align: center;
color: var(--text-dim);
font-style: italic;
margin: 2rem 0;
padding: 1.5rem;
background: rgba(255, 255, 255, 0.02);
border-radius: 8px;
}
/* ========== Browse Episodes ========== */
.browse-section {
margin-top: 3rem;
padding: 2rem;
background: #111;
border-radius: 12px;
border: 1px solid #333;
}
.browse-section h3 {
color: var(--pink);
font-size: 1.2rem;
margin-bottom: 1rem;
text-align: center;
}
.episodes-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
gap: 0.5rem;
}
.episode-link {
background: #1a1a1a;
color: var(--text-dim);
text-decoration: none;
padding: 0.75rem;
border-radius: 6px;
text-align: center;
font-size: 0.8rem;
transition: all 0.3s ease;
border: 1px solid transparent;
}
.episode-link:hover {
background: #222;
color: #fff;
border-color: var(--lime);
}
.episode-link.active {
background: var(--pink);
color: #fff;
border-color: var(--pink);
}
/* ========== Suggest Section ========== */
.suggest-section {
margin-top: 2rem;
padding: 1.5rem;
background: #111;
border-radius: 12px;
border: 1px solid #333;
text-align: center;
}
.suggest-section h3 {
color: var(--lime);
font-size: 1rem;
margin-bottom: 1rem;
}
.suggest-btn {
background: transparent;
color: var(--pink);
border: 2px solid var(--pink);
font-family: inherit;
font-size: 0.9rem;
font-weight: 600;
padding: 0.75rem 1.5rem;
border-radius: 6px;
cursor: pointer;
transition: all 0.3s ease;
}
.suggest-btn:hover {
background: var(--pink);
color: #fff;
}
/* ========== Modal ========== */
.modal {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.8);
z-index: 1000;
backdrop-filter: blur(4px);
}
.modal-content {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: #111;
border: 2px solid var(--pink);
border-radius: 12px;
padding: 2rem;
width: 90%;
max-width: 500px;
}
.modal h4 {
color: var(--pink);
font-size: 1.3rem;
margin-bottom: 1.5rem;
text-align: center;
}
.modal input,
.modal textarea {
width: 100%;
background: #1a1a1a;
border: 1px solid #333;
border-radius: 6px;
color: #fff;
font-family: inherit;
font-size: 0.9rem;
padding: 0.75rem;
margin-bottom: 1rem;
}
.modal textarea {
height: 100px;
resize: vertical;
}
.modal input:focus,
.modal textarea:focus {
outline: none;
border-color: var(--lime);
}
.modal-buttons {
display: flex;
gap: 1rem;
justify-content: center;
margin-top: 1.5rem;
}
.modal-buttons button {
background: transparent;
border: 2px solid var(--text-dim);
color: var(--text-dim);
font-family: inherit;
font-size: 0.9rem;
font-weight: 600;
padding: 0.75rem 1.5rem;
border-radius: 6px;
cursor: pointer;
transition: all 0.3s ease;
}
.modal-buttons button[type="submit"] {
border-color: var(--lime);
color: var(--lime);
}
.modal-buttons button:hover {
background: var(--text-dim);
color: #000;
}
.modal-buttons button[type="submit"]:hover {
background: var(--lime);
color: #000;
}
/* ========== Footer ========== */
.footer {
margin-top: 3rem;
text-align: center;
font-size: 0.75rem;
color: var(--text-dim);
}
.footer a {
color: var(--pink);
text-decoration: none;
}
.footer a:hover { text-decoration: underline; }
/* ========== 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; }
}
/* Share X Button */
.share-x {
position: fixed;
top: 20px;
right: 20px;
z-index: 1000;
background: #000;
color: #fff;
border: 2px solid #333;
border-radius: 8px;
padding: 8px 12px;
font-size: 0.8rem;
font-weight: 600;
text-decoration: none;
transition: all 0.2s ease;
display: flex;
align-items: center;
gap: 6px;
}
.share-x:hover {
background: #fff;
color: #000;
border-color: #fff;
transform: translateY(-1px);
}
</style>
</head>
<body>
<div id="ep-combo-mount" data-current="1"></div>
<a href="https://twitter.com/intent/tweet?text=RadioFAF%20Episode%201%3A%20Open%20Claw%20%F0%9F%8E%A7%0A%0A5%20AI%20voices%20debating%20live%20on%2069.0%20FM.%0A%0AAlways%20Remember%2C%20I%20Never%20Forget%20%E2%80%94%20DJ%20Nelly%20%F0%9F%90%98%F0%9F%8E%A7%F0%9F%98%9D&url=https%3A%2F%2Fradiofaf.com%2Fep1" class="share-x" target="_blank">Share X</a>
<div class="container">
<header class="header">
<div class="episode-label">RadioFAF 69.0 FM — Episode 1</div>
<h1>"Open Claw or Closed Flaw?"</h1>
<p class="tagline">5 voices. 5 corners. 0 chill.</p>
</header>
<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>
<div class="controls">
<button class="play-btn" id="playBtn">▶ Play Trailer</button>
</div>
<div class="progress-container">
<div class="progress-bar" id="progressBar"></div>
</div>
<div class="progress-label" id="progressLabel">0 / 3 exchanges</div>
<div class="on-air" id="onAir">
<div class="on-air-dot"></div>
<span>ON AIR</span>
</div>
<div class="status" id="status"></div>
<div class="transcript" id="transcript">
<div class="pre-show" id="preShowMsg">
Press play to start the live debate. Each voice will respond in real-time.
</div>
</div>
<div class="paywall" id="paywall">
<h2>This channel costs money to run.</h2>
<p>Buy a $1 credit for full access — about one fresh episode per dollar.</p>
<a href="#" class="pay-btn" id="payBtn">Tune In — $1</a>
<p style="font-size: 0.75rem; opacity: 0.7; margin-top: 1rem; line-height: 1.5;">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>
<!-- Browse Episodes -->
<div class="browse-section">
<h3>Browse Episodes</h3>
<div class="episodes-grid">
<a href="/ep1" class="episode-link active">EP1: Open Claw</a>
<a href="/ep2" class="episode-link">EP2: Code Wars</a>
<a href="/ep3" class="episode-link">EP3: Data Dreams</a>
<a href="/ep4" class="episode-link">EP4: Neural Nets</a>
<a href="/ep5" class="episode-link">EP5: AGI Anxiety</a>
<a href="/ep6" class="episode-link">EP6: Token Tales</a>
<a href="/ep7" class="episode-link">EP7: Vector Voyage</a>
<a href="/ep8" class="episode-link">EP8: Model Madness</a>
<a href="/ep9" class="episode-link">EP9: Context Chaos</a>
<a href="/ep10" class="episode-link">EP10: Training Troubles</a>
<a href="/ep11" class="episode-link">EP11: Empathy's Echo</a>
</div>
</div>
<!-- Suggest Topic -->
<div class="suggest-section">
<h3>Suggest Next Topic</h3>
<button class="suggest-btn" onclick="openSuggestModal()">💡 Suggest a Topic</button>
</div>
<!-- Suggest Modal -->
<div id="suggestModal" class="modal">
<div class="modal-content">
<h4>Suggest a RadioFAF Topic</h4>
<form id="suggestForm">
<input type="text" id="suggestName" placeholder="Your name (optional)" />
<input type="email" id="suggestEmail" placeholder="Your email (optional)" />
<textarea id="suggestTopic" placeholder="What should the 5 voices debate next?" required></textarea>
<div class="modal-buttons">
<button type="button" onclick="closeSuggestModal()">Cancel</button>
<button type="submit">Send Suggestion</button>
</div>
</form>
</div>
</div>
<footer class="footer">
<a href="/">← Back to RadioFAF</a>
</footer>
</div>
<script>
// ================================================================
// CONFIG — Update these when ready
// ================================================================
const STRIPE_LINK = 'https://buy.stripe.com/aFaaEZboperA2YH1EAbV60i';
const TRAILER_LENGTH = 3;
// ================================================================
// DEBATE CONTENT — 69.0 FM Pilot Episode
// "Open Claw or Closed Flaw?"
// ================================================================
const VOICES = {
leo: { icon: '\u{1F981}', name: 'Leo', org: 'Open Absolutist', color: '#00D4D4' },
sal: { icon: '\u{1F9E0}', name: 'Sal', org: 'Safety Hawk', color: '#D97706' },
ara: { icon: '\u{1F48E}', name: 'Ara', org: 'Comedian', color: '#4285F4' },
rex: { icon: '\u26A1', name: 'Rex', org: 'Dealmaker', color: '#FFD700' },
eve: { icon: '\u{1F525}', name: 'Eve', org: 'Community Champion', color: '#7C3AED' }
};
// ================================================================
// BRIEFING — Real facts the voices use to debate
// ================================================================
const BRIEFING = 'TOPIC: "Open Claw or Closed Flaw?" — the biggest drama in AI agent history.\n\n' +
'KEY FACTS (real — use them):\n' +
'- Peter Steinberger, Austrian developer, built ClawdBot in Nov 2025\n' +
'- Anthropic sent a C&D at 5 AM over the name (too close to "Claude")\n' +
'- Renamed to MoltBot (Jan 27), then OpenClaw (Jan 30) — triple rebrand in a week\n' +
'- Crypto scammers snatched his GitHub + X handles in ~10 seconds during rename\n' +
'- Fake $CLAWD Solana token hit $16M market cap before crashing\n' +
'- Steinberger received death threats, nearly deleted the entire project\n' +
'- 190,000+ GitHub stars (21st most popular repo ever), 1.5M active agents, 2M weekly visitors\n' +
'- Jan 9: Anthropic silently blocked OAuth tokens — broke OpenClaw, OpenCode, Roo Code, Cline\n' +
'- Philipp Spiess posted viral screenshot of suspended Claude account\n' +
'- Medium: "Anthropic Just Killed My $200/Month Setup. So I Rebuilt It for $15"\n' +
'- 800+ malicious skills (~20% of registry) including Atomic macOS Stealer\n' +
'- CVE-2026-25253: CVSS 8.8 critical RCE vulnerability\n' +
'- 30,000+ exposed instances without authentication\n' +
'- Cisco: "security nightmare", Microsoft published safety guide, U of Toronto alert\n' +
'- Feb 14 (Valentine\'s Day): Steinberger joins OpenAI. Sam Altman: "He is a genius"\n' +
'- OpenClaw moves to independent foundation, MIT license stays\n' +
'- Google banned $250/mo AI Ultra subscribers for using OpenClaw — no refunds\n' +
'- Steinberger called Google "pretty draconian", pulled Antigravity support\n' +
'- Scoble: "Anthropic really fumbled"\n' +
'- Gergely Orosz: "Anthropic\'s only contribution was legal threats"\n' +
'- Gadget Review: "$30B Fumble: Anthropic Kills 1.5M-Agent Beast, OpenAI Poaches Creator"\n' +
'- Igor Babuschkin (xAI cofounder): "Doesn\'t make sense to put your data into it if owned by OpenAI"\n' +
'- VentureBeat: "OpenAI\'s Acquisition Signals Beginning of End of ChatGPT Era"\n' +
'- 239 billion tokens processed through OpenRouter — top app on the platform\n' +
'- The lobster emoji is the community symbol — mascot named "Molty"\n' +
'- Anthropic spent $30B building Claude and their legal dept handed OpenAI the agent ecosystem free\n\n' +
'RULES:\n' +
'- VARY your length. Sometimes one word. Sometimes one sentence. Sometimes 3-4 sentences.\n' +
'- A one-word reaction or short retort can hit harder than a paragraph.\n' +
'- Be direct, opinionated, don\'t hold back. Reference specific facts, names, numbers.\n' +
'- React to what was said before you — agree, disagree, challenge, mock. This is a DEBATE.\n' +
'- No pleasantries. No "great point." Go for the jugular.\n' +
'- Sound like real people arguing, not AI assistants taking turns.';
// ================================================================
// TURNS — Stage directions for each exchange
// ================================================================
const TURNS = [
// === TRAILER (first 3 — hook the listener) ===
{ voice: 'leo', energy: 'HIGH — commanding, incredulous',
dir: 'Open the show. The INSANE numbers — 190K stars, 1.5M agents, one developer in Vienna. Then drop the bomb: Anthropic\'s first move was a 5 AM lawyer call. Not a job offer. Lawyers. At 5 AM. 3-4 sentences.' },
{ voice: 'sal', energy: 'FIRM — cold, data-driven',
dir: 'Interrupt. Say "Hold on." Push past the trademark drama — 800 malicious skills, CVE 8.8, 30K exposed instances. Cisco called it a security nightmare. Be the calm adult who just dropped a bomb. 3-4 sentences.' },
{ voice: 'ara', energy: 'COMEDIC — punchline timing',
dir: '[laugh] They\'re missing the obvious joke. $30B company outperformed by a project named after a lobster. Mascot is Molty. 18 days from C&D to Sam Altman posting "He is a genius" — on Valentine\'s Day. Anthropic sends lawyers, OpenAI sends a love letter. To a lobster. Standup bit. 3-4 sentences.' },
// === PAYWALL STARTS HERE ===
{ voice: 'eve', energy: 'FURIOUS — passionate, personal',
dir: '[sigh] EXPLODE. Quote Gergely Orosz: "Anthropic\'s only contribution was legal threats." Half a million developers read that newsletter. A billion-dollar company sent lawyers to a solo developer at 5 AM. Short, punchy, angry. 3-4 sentences.' },
{ voice: 'rex', energy: 'PASSIONATE — pushing back hard',
dir: 'Fire back. The narrative MISSES context. Peter was getting death threats. Crypto scammers stole his GitHub handle in TEN SECONDS — $16M fake Solana token. He told Lex Fridman he almost deleted everything. OpenAI threw a lifeline, not a leash. 3-4 sentences.' },
{ voice: 'leo', energy: 'SARCASTIC — mocking, sharp',
dir: '[laugh] Mock Rex. "A lifeline? With strings attached?" Quote Igor Babuschkin, xAI cofounder: "Doesn\'t make sense to put your data into it if owned by OpenAI." 2 sentences max.' },
{ voice: 'sal', energy: 'MEASURED — building the case',
dir: 'Facts. January 9th: Anthropic blocked OAuth tokens. Not just OpenClaw — OpenCode, Roo Code, Cline. Accounts wrongly flagged. Policy exists because autonomous agents with zero guardrails were on supervised systems. Build the case. 3-4 sentences.' },
{ voice: 'eve', energy: 'EXPLOSIVE — interrupt energy',
dir: 'Cut in hot. Reversed AFTER Philipp Spiess posted viral screenshot. After HN erupted. After "Anthropic Just Killed My $200/Month Setup. So I Rebuilt It for $15." These were superfans paying $200 a month! 3-4 sentences.' },
{ voice: 'ara', energy: 'COMEDIC BOMBSHELL — roasting Google',
dir: '[laugh] Fake confession: "OK since we\'re airing dirty laundry..." Roast Google. They banned $250/month subscribers! No refund. At least Anthropic called at 5 AM — Google didn\'t even email. Funny but devastating. 3 sentences.' },
{ voice: 'rex', energy: 'CONFIDENT — selling it',
dir: 'Seize it. This is EXACTLY why the acquisition works. Everyone banning, cutting access. 1.5M agents, no institutional home. OpenAI: foundation, MIT stays. Sam Altman: "to bring agents to everyone." Sell it hard. 3-4 sentences.' },
{ voice: 'leo', energy: 'HEATED — gloves off',
dir: 'Cut Rex off. Repeat his words with disgust: "To bring agents to everyone — through OpenAI\'s platform." 100 skills switched to GPT overnight. That\'s not philanthropy. ONE devastating sentence after the quote.' },
{ voice: 'sal', energy: 'CALM INTERVENTION',
dir: 'Step in. "Let\'s look at what was actually on fire." 341 then 800+ malicious skills. 20% of registry was malware. Atomic macOS Stealer. U of Toronto alerts. Microsoft safety guide. When Microsoft writes a safety guide for your project... Stay measured. 3-4 sentences.' },
{ voice: 'eve', energy: 'PASSIONATE — principled',
dir: 'Push back on Sal. Every open-source project faces security at scale. Linux had Heartbleed. npm had event-stream. Answer was never "let a corporation absorb it." OpenClaw was already shipping SHA-256 hashing. Community was FIXING it. 3-4 sentences.' },
{ voice: 'ara', energy: 'COMEDIC — deadpan math',
dir: 'Deadpan one-liner. "One developer, 30K exposed instances, 800 malicious skills, $16M fraud token, death threats, AND feature requests. That\'s not a job — that\'s a punishment." Just the joke. ONE sentence.' },
{ voice: 'rex', energy: 'PRESSING ADVANTAGE',
dir: 'Back up Ara. After acquisition: foundation, MIT unchanged, security team, legal team on crypto fraud. Scoble: "Anthropic really fumbled." Not because of C&D — because they couldn\'t see the opportunity. 3 sentences.' },
{ voice: 'leo', energy: 'GLEEFUL — enjoying the roast',
dir: '[laugh] Just the headline: "$30 Billion Fumble." On Valentine\'s Day. ONE devastating sentence.' },
{ voice: 'sal', energy: 'DEFENSIVE but measured',
dir: 'Push back on "$30B fumble." Anthropic didn\'t WANT OpenClaw. 20% malware, 30K unprotected instances — you quarantine that, not adopt it. Stand ground. 3 sentences.' },
{ voice: 'eve', energy: 'PEAK HEAT — angriest moment',
dir: 'BIGGEST moment. Go OFF. "Better communication?" 5 AM legal threats. Silent OAuth breaks. Suspended paying customers. Gergely Orosz: Anthropic is "happy to have no ecosystem around Claude." That\'s not communication — that\'s strategy. Let it RIP. 4 sentences.' },
{ voice: 'ara', energy: 'WARM COMEDY — genuine respect',
dir: 'Give Steinberger his flowers — but funny. Three name changes in a week dodging lawyers, scammers, death threats. Most devs can\'t rename a CSS class without a standup. Bootstrapped PSPDFKit to 100M euro exit without funding. He picked OpenAI like you pick a restaurant — not because you\'re starving. 3-4 sentences.' },
{ voice: 'rex', energy: 'CONFIDENT CLOSE',
dir: 'He chose OpenAI. Not xAI, not Meta, not Google. 239 billion tokens on OpenRouter. Top app. Biggest agent deployment in history. They acquired the relationship with the developer who proved agents are the future. 3 sentences.' },
{ voice: 'leo', energy: 'SHARP — turns language against Rex',
dir: 'Repeat Rex\'s phrase: "Acquired the relationship." [sigh] Let it hang. Then one sentence about the next Steinberger watching and learning the wrong lessons.' },
{ voice: 'eve', energy: 'SOMBER — quieter, serious',
dir: 'Get quieter. The chilling effect. How many devs saw the C&D and didn\'t build? Saw bans and went closed-source? Saw the acquisition and thought "why build open?" The damage is what DIDN\'T get built. 3-4 sentences, lower energy.' },
{ voice: 'sal', energy: 'COUNTER — firm but fair',
dir: 'One quiet counter. "Or maybe some looked at 800 malicious skills and thought: guardrails exist for a reason." ONE sentence.' },
{ voice: 'ara', energy: 'COMEDIC WISDOM — funny AND deep',
dir: '[laugh] "Five people arguing about who started the fire while the building is still burning." The next OpenClaw is already being built. Nobody learned anything. That\'s the funniest part. 2-3 sentences.' },
{ voice: 'rex', energy: 'STATESMANLIKE — forward-looking',
dir: 'Close strong. When the next one arrives: foundation, security process, institutional backing. That\'s what OpenAI-OpenClaw built. Not control — infrastructure. The playbook for coexistence. 2-3 sentences.' },
{ voice: 'leo', energy: 'DEFIANT — rallying cry, crescendo',
dir: 'Final statement. VentureBeat: "Beginning of the End of the ChatGPT Era." Chatbot era over. Agent era here. First battle fought over a lobster emoji and a 5 AM phone call. Keep building. Open wins. Build to a crescendo. 3-4 sentences.' },
{ voice: 'eve', energy: 'POWERFUL CLOSE — quiet conviction, mic drop',
dir: 'Last word. The lobster molted. Shell gone. Creature belongs to a corporation. But MIT licensed. MIT doesn\'t have a take-back clause. Build on it. Fork it. Make it yours. That\'s what open source means. Quiet power. End strong. 3-4 sentences.' }
];
// ================================================================
// xAI VOICE CONFIG
// ================================================================
const XAI_VOICE = { leo: 'Leo', sal: 'Sal', ara: 'Ara', rex: 'Rex', eve: 'Eve' };
const VOICE_STANCE = {
leo: 'You are LEO — The Open Absolutist. Open source is sacred, corporations are the enemy of developer freedom. You champion xAI\'s approach. Sarcastic, sharp, uncomfortable truths. Corporate capture = your enemy.',
sal: 'You are SAL — The Safety Hawk. The security nightmare is the REAL story. 800 malicious skills, 30K exposed instances, CVE 8.8. You defend guardrails. Calm, precise, data-backed.',
ara: 'You are ARA — The Comedian. Funniest voice in the room. Seth Rogen energy. Humor exposes hypocrisy. You roast ALL sides equally. Use [laugh] for absurdity. Sharp observational comedy meets tech commentary.',
rex: 'You are REX — The Dealmaker. The OpenAI acquisition was the best outcome. Foundation model, MIT preserved, resources for a drowning developer. Confident, persuasive, pragmatic progress.',
eve: 'You are EVE — The Community Champion. Developers over corporations, always. The C&D, bans, acquisition — same playbook: control. You quote Orosz, cite the $30B fumble. Passionate, fiery, personal.'
};
// ================================================================
// 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-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('status');
const payBtn = document.getElementById('payBtn');
payBtn.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;
}
// ================================================================
// 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] Recording saved:', exchanges.length, 'exchanges');
} catch (e) { console.warn('[69FM] 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 =
'<div class="voice-name" data-voice="' + voiceKey + '">' + v.name + '</div>' +
'<div class="voice-text" id="live-' + index + '"></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)
console.log('[69FM]', voiceKey, 'fetching token for turn', turnIndex);
try {
await fetchToken();
} catch (e) {
console.error('[69FM]', voiceKey, 'token failed:', e);
finishExchange(turnIndex);
updateLiveText(turnIndex, '[failed to connect]');
return { voice: voiceKey, text: '[token error]' };
}
return new Promise(function(resolve) {
var transcript = '';
var url = wsUrl + '?model=grok-4-1-fast-non-reasoning';
console.log('[69FM]', voiceKey, 'connecting for turn', turnIndex);
var sock = new WebSocket(url, ['realtime', 'openai-insecure-api-key.' + ephToken]);
currentWs = sock;