-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1712 lines (1448 loc) · 108 KB
/
index.html
File metadata and controls
1712 lines (1448 loc) · 108 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.0">
<title>KLOOM LO KADOSH // ARCHIVE</title>
<!-- SEO -->
<meta name="description" content="Kloom Lo Kadosh Radio Archive. Experimental sound, noise, and conversations hosted by Yaniv Schonfeld and friends. Nothing is Holy.">
<meta name="keywords" content="radio, experimental, noise, drone, glitch, israel, podcast, yaniv schonfeld, kloom lo kadosh, nothing is holy">
<meta name="author" content="Yaniv Schonfeld">
<!-- OpenGraph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://willbearfruits.github.io/kloom-radio/">
<meta property="og:title" content="NOTHING IS HOLY // RADIO ARCHIVE">
<meta property="og:description" content="The signal is the message. No gods, no masters. Listen to the archive.">
<meta property="og:image" content="https://willbearfruits.github.io/kloom-radio/assets/og-image.png">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
<meta property="og:site_name" content="Kloom Lo Kadosh">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://willbearfruits.github.io/kloom-radio/">
<meta property="twitter:title" content="NOTHING IS HOLY // RADIO ARCHIVE">
<meta property="twitter:description" content="The signal is the message. No gods, no masters. Listen to the archive.">
<meta property="twitter:image" content="https://willbearfruits.github.io/kloom-radio/assets/og-image.png">
<!-- Favicon & feeds -->
<link rel="icon" href="assets/favicon.svg">
<link rel="canonical" href="https://willbearfruits.github.io/kloom-radio/">
<link rel="alternate" type="application/rss+xml" title="KLOOM LO KADOSH" href="feed.xml">
<link rel="stylesheet" href="assets/player.css">
<!-- Plausible Analytics – uncomment and set your domain -->
<!-- <script defer src="https://plausible.io/js/script.js" data-domain="kloom-radio"></script> -->
<!-- Content Security Policy -->
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self' 'unsafe-inline' https://widget.mixcloud.com https://www.youtube.com; style-src 'self' 'unsafe-inline'; img-src 'self' https://thumbnailer.mixcloud.com https://i.ytimg.com data:; frame-src https://player-widget.mixcloud.com https://www.youtube.com; media-src 'self' blob:; connect-src 'self' https://api.mixcloud.com;">
<style>
:root {
--bg: #0000ff; /* Blue Screen of Death Blue */
--fg: #ffff00; /* Yellow Text */
--accent: #ff00ff; /* Magenta */
--highlight: #00ff00; /* Green */
--border-color: #000;
}
body {
background-color: var(--bg);
color: var(--fg);
font-family: 'Impact', sans-serif;
margin: 0;
padding: 0;
padding-bottom: 90px;
line-height: 1.4;
}
/* Glitch Title */
.site-header {
padding: 40px 20px;
border-bottom: 5px solid var(--border-color);
text-align: center;
background: var(--bg);
position: relative;
overflow: hidden;
}
h1 {
font-size: 8vw;
margin: 0;
text-transform: uppercase;
letter-spacing: 5px;
color: var(--fg);
text-shadow: 4px 4px 0px #000;
transform: rotate(-2deg);
mix-blend-mode: normal;
}
.subtitle {
font-family: 'Courier New', Courier, monospace;
font-size: 1.2rem;
color: #fff;
margin-top: 10px;
letter-spacing: 2px;
background: #000;
display: inline-block;
padding: 5px 10px;
transform: rotate(2deg);
}
/* Container */
.container {
max-width: 900px;
margin: 0 auto;
padding: 40px 20px;
}
/* Filter/Search Bar (Visual Only for now) */
.controls {
margin-bottom: 40px;
display: flex;
justify-content: space-between;
border-bottom: 3px solid #000;
padding-bottom: 10px;
font-family: monospace;
font-weight: bold;
color: #fff;
}
/* Section Headers */
.section-header {
font-size: 1.5rem;
color: var(--fg);
background: #000;
display: inline-block;
padding: 5px 15px;
margin-bottom: 20px;
text-transform: uppercase;
border: 3px solid var(--fg);
box-shadow: 5px 5px 0px #000;
transform: skew(-2deg);
}
/* List Items */
.show-item {
display: flex;
flex-wrap: wrap; /* IMPORTANT: Allows wrapping */
background: #ff00ff;
border: 5px solid #000;
margin-bottom: 30px;
transition: all 0.1s ease;
text-decoration: none;
color: #000;
position: relative;
transform: skew(-1deg);
box-shadow: 10px 10px 0px #000;
}
.show-item.active-card {
background: #00ff00;
transform: skew(-1deg) translate(-5px, -5px);
box-shadow: 15px 15px 0px #000;
z-index: 20;
}
.show-item:hover {
transform: skew(-1deg) translate(-5px, -5px);
box-shadow: 15px 15px 0px #000;
z-index: 10;
}
/* Top Section: Thumb + Content + Action */
.card-top {
display: flex;
width: 100%;
}
.thumb {
width: 150px;
min-height: 150px;
flex-shrink: 0;
overflow: hidden;
background: #000;
border-right: 5px solid #000;
position: relative;
cursor: pointer;
}
.thumb img {
width: 100%;
height: 100%;
object-fit: cover;
filter: grayscale(100%) contrast(1.2);
transition: filter 0.1s;
}
.show-item:hover .thumb img {
filter: grayscale(0%) contrast(1);
}
.content {
padding: 20px;
flex-grow: 1;
display: flex;
flex-direction: column;
justify-content: center;
min-width: 0;
}
.meta-top {
font-family: monospace;
font-size: 0.9rem;
text-transform: uppercase;
background: #000;
color: #fff;
display: inline-block;
padding: 2px 6px;
margin-bottom: 10px;
align-self: flex-start;
}
.title {
font-size: 2rem;
font-weight: normal;
margin-bottom: 5px;
line-height: 1;
text-transform: uppercase;
}
.desc {
font-family: 'Courier New', Courier, monospace;
font-size: 1rem;
color: #000;
margin-bottom: 10px;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
font-weight: bold;
}
.tags {
font-family: monospace;
font-size: 0.8rem;
}
.tags span {
background: #fff;
color: #000;
padding: 2px 6px;
margin-right: 5px;
border: 2px solid #000;
}
.action {
width: 80px;
display: flex;
align-items: center;
justify-content: center;
border-left: 5px solid #000;
font-size: 3rem;
color: #000;
background: rgba(0,0,0,0.1);
cursor: pointer;
flex-shrink: 0;
}
.show-item:hover .action {
background: #fff;
color: #000;
}
/* Player Container: Full width below content when active */
.player-container {
width: 100%;
margin-top: 0;
flex-basis: 100%;
border-top: 5px solid #000;
display: none; /* Hidden by default */
background: #000;
padding: 0;
}
.show-item.active-card .player-container {
display: block;
}
/* Footer */
.footer {
text-align: center;
padding: 40px;
font-family: monospace;
font-size: 0.9rem;
color: #fff;
margin-top: 40px;
}
/* Accessibility - Focus Indicators */
.action:focus,
.thumb:focus,
a:focus {
outline: 5px solid #00ff00;
outline-offset: 3px;
}
.action:focus:not(:focus-visible),
.thumb:focus:not(:focus-visible),
a:focus:not(:focus-visible) {
outline: none;
}
/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
* {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
}
}
/* Mobile play strip - hidden on desktop */
.mobile-play {
display: none;
width: 100%;
background: #00ff00;
border-top: 5px solid #000;
padding: 15px;
text-align: center;
font-family: 'Impact', sans-serif;
font-size: 1.5rem;
color: #000;
cursor: pointer;
text-transform: uppercase;
}
.mobile-play:active {
background: #fff;
}
/* Mobile */
@media (max-width: 600px) {
.card-top {
flex-direction: column;
}
.thumb {
width: 100%;
height: 200px;
border-right: none;
border-bottom: 5px solid #000;
}
.action {
display: none;
}
.mobile-play {
display: block;
}
h1 {
font-size: 12vw;
}
.title {
font-size: 1.5rem;
}
}
/* DOOM MODE STYLES */
.doom-active {
animation: doom-pulse 0.5s infinite;
}
@keyframes doom-pulse {
0%, 100% { filter: hue-rotate(0deg); }
50% { filter: hue-rotate(20deg); }
}
.doom-face {
position: fixed;
bottom: 100px;
right: 20px;
font-size: 4rem;
z-index: 10000;
text-shadow: 3px 3px 0 #000;
animation: doom-face-bob 0.3s infinite;
user-select: none;
pointer-events: none;
}
@keyframes doom-face-bob {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-5px); }
}
.doom-hud {
position: fixed;
bottom: 100px;
left: 20px;
font-family: 'Impact', sans-serif;
font-size: 1.5rem;
color: #ff0000;
text-shadow: 2px 2px 0 #000;
z-index: 10000;
user-select: none;
pointer-events: none;
}
.doom-msg {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-family: 'Impact', sans-serif;
font-size: 4rem;
color: #ff0000;
text-shadow: 4px 4px 0 #000, -2px -2px 0 #ffff00;
z-index: 10001;
animation: doom-msg-in 0.3s ease-out;
text-transform: uppercase;
white-space: nowrap;
}
@keyframes doom-msg-in {
0% { transform: translate(-50%, -50%) scale(3); opacity: 0; }
100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}
.glitch-overlay {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
pointer-events: none;
z-index: 9998;
background: repeating-linear-gradient(
0deg,
rgba(0,0,0,0.1) 0px,
rgba(0,0,0,0.1) 1px,
transparent 1px,
transparent 2px
);
opacity: 0;
transition: opacity 0.3s;
}
.glitch-overlay.active {
opacity: 1;
animation: scanline-move 0.1s linear infinite;
}
@keyframes scanline-move {
0% { background-position: 0 0; }
100% { background-position: 0 4px; }
}
.screen-shake {
animation: shake 0.1s linear infinite;
}
@keyframes shake {
0%, 100% { transform: translate(0, 0); }
25% { transform: translate(-2px, 1px); }
50% { transform: translate(2px, -1px); }
75% { transform: translate(-1px, 2px); }
}
</style>
<script>
// ████████████████████████████████████████████████████████████
// █▄─▄▄▀█─▄▄─█─▄▄─█▄─▀█▀─▄███─▄▄▄─█─█─█▄─▄▄─██▀▄─██─▄─▄─█─▄▄▄▄█
// ██─██─█─██─█─██─██─█▄█─████─███▀█─▄─██─▄█▀██─▀─████─███▄▄▄▄─█
// ▀▄▄▄▄▀▀▄▄▄▀▀▄▄▄▀▀▄▄▄▀▄▄▄▀▀▀▄▄▄▄▄▀▄▀▄▀▄▄▄▄▄▀▄▄▀▄▄▀▀▄▄▄▀▀▄▄▄▄▄▀
// DOOM CHEAT CODES - Type these anywhere on the page:
// IDDQD - God Mode (invincibility)
// IDKFA - All weapons, full ammo, keys
// IDCLIP - No clipping (walk through walls)
// IDBEHOLD - Power up menu
// IDMUS - Music change
// IDSPISPOPD - Smashing Pumpkins mode
const DOOM = {
buffer: '',
maxLen: 10,
active: { god: false, weapons: false, clip: false, pumped: false },
health: 100,
armor: 200,
ammo: 999,
face: '😐',
faceStates: ['😐', '😠', '😤', '🤬', '😈', '💀', '🔥'],
cheats: {
'iddqd': { name: 'GOD MODE', color: '#ffff00', action: 'godMode' },
'idkfa': { name: 'VERY HAPPY AMMO', color: '#00ff00', action: 'allWeapons' },
'idclip': { name: 'NO CLIPPING', color: '#00ffff', action: 'noClip' },
'idbehold': { name: 'POWER UP!', color: '#ff00ff', action: 'powerUp' },
'idmus': { name: 'MUSIC CHANGE', color: '#ff8800', action: 'musicChange' },
'idspispopd': { name: 'SMASHING PUMPKINS', color: '#ff0000', action: 'pumpkins' },
},
init() {
// Create persistent elements
this.glitchOverlay = document.createElement('div');
this.glitchOverlay.className = 'glitch-overlay';
document.body.appendChild(this.glitchOverlay);
document.addEventListener('keydown', (e) => this.onKey(e));
console.log('%c🔫 DOOM CHEATS ACTIVE', 'color: #ff0000; font-size: 20px; font-weight: bold;');
console.log('%cIDDQD IDKFA IDCLIP IDBEHOLD IDMUS IDSPISPOPD', 'color: #888; font-size: 12px;');
},
onKey(e) {
if (e.target.tagName === 'INPUT') return;
this.buffer += e.key.toLowerCase();
this.buffer = this.buffer.slice(-this.maxLen);
for (const [code, cheat] of Object.entries(this.cheats)) {
if (this.buffer.endsWith(code)) {
this[cheat.action](cheat);
this.buffer = '';
break;
}
}
},
flash(color, duration = 200) {
const flash = document.createElement('div');
Object.assign(flash.style, {
position: 'fixed', top: '0', left: '0',
width: '100vw', height: '100vh',
background: color, zIndex: '9999',
pointerEvents: 'none', opacity: '0.7'
});
document.body.appendChild(flash);
setTimeout(() => {
flash.style.transition = 'opacity 0.5s';
flash.style.opacity = '0';
setTimeout(() => flash.remove(), 500);
}, duration);
},
showMessage(text, color) {
// Remove existing message
document.querySelectorAll('.doom-msg').forEach(m => m.remove());
const msg = document.createElement('div');
msg.className = 'doom-msg';
msg.style.color = color;
msg.textContent = text;
document.body.appendChild(msg);
setTimeout(() => {
msg.style.transition = 'opacity 0.5s, transform 0.5s';
msg.style.opacity = '0';
msg.style.transform = 'translate(-50%, -50%) scale(0.5)';
setTimeout(() => msg.remove(), 500);
}, 1500);
},
shake(duration = 500) {
document.body.classList.add('screen-shake');
setTimeout(() => document.body.classList.remove('screen-shake'), duration);
},
showHUD() {
if (document.querySelector('.doom-hud')) return;
const hud = document.createElement('div');
hud.className = 'doom-hud';
hud.innerHTML = `
<div>HEALTH: <span id="doom-health">${this.health}</span>%</div>
<div>ARMOR: <span id="doom-armor">${this.armor}</span>%</div>
<div>AMMO: <span id="doom-ammo">${this.ammo}</span></div>
`;
document.body.appendChild(hud);
const face = document.createElement('div');
face.className = 'doom-face';
face.id = 'doom-face';
face.textContent = this.face;
document.body.appendChild(face);
},
updateFace(state) {
this.face = state;
const faceEl = document.getElementById('doom-face');
if (faceEl) faceEl.textContent = state;
},
godMode(cheat) {
this.active.god = !this.active.god;
const audio = new Audio('assets/doom_iddqd.mp3');
audio.play().catch(() => {});
this.flash('rgba(255, 255, 0, 0.7)');
this.shake(300);
this.showMessage(this.active.god ? 'DEGREELESSNESS MODE ON' : 'GOD MODE OFF', cheat.color);
this.showHUD();
if (this.active.god) {
this.health = 100;
this.updateFace('😈');
document.querySelector('h1').textContent = 'GOD MODE ACTIVE';
document.querySelector('h1').style.color = '#ffff00';
document.body.classList.add('doom-active');
this.glitchOverlay.classList.add('active');
// Make all cards glow
document.querySelectorAll('.show-item').forEach(card => {
card.style.boxShadow = '0 0 30px #ffff00, 10px 10px 0px #000';
});
} else {
document.querySelector('h1').textContent = 'NOTHING IS HOLY';
document.querySelector('h1').style.color = '';
document.body.classList.remove('doom-active');
this.glitchOverlay.classList.remove('active');
this.updateFace('😐');
document.querySelectorAll('.show-item').forEach(card => {
card.style.boxShadow = '';
});
}
},
allWeapons(cheat) {
this.active.weapons = true;
this.ammo = 999;
this.armor = 200;
this.flash('rgba(0, 255, 0, 0.7)');
this.shake(200);
this.showMessage('VERY HAPPY AMMO ADDED', cheat.color);
this.showHUD();
this.updateFace('🤬');
// Update HUD
const ammoEl = document.getElementById('doom-ammo');
const armorEl = document.getElementById('doom-armor');
if (ammoEl) ammoEl.textContent = this.ammo;
if (armorEl) armorEl.textContent = this.armor;
// Rapid color cycle on cards
let cycles = 0;
const interval = setInterval(() => {
document.querySelectorAll('.show-item').forEach((card, i) => {
card.style.background = ['#ff00ff', '#00ff00', '#ffff00', '#00ffff'][Math.floor(Math.random() * 4)];
});
cycles++;
if (cycles > 10) {
clearInterval(interval);
document.querySelectorAll('.show-item').forEach(card => {
card.style.background = '';
});
}
}, 100);
},
noClip(cheat) {
this.active.clip = !this.active.clip;
this.flash('rgba(0, 255, 255, 0.7)');
this.showMessage(this.active.clip ? 'NO CLIPPING MODE ON' : 'CLIPPING ON', cheat.color);
this.showHUD();
if (this.active.clip) {
this.updateFace('👻');
// Make cards semi-transparent and floaty
document.querySelectorAll('.show-item').forEach((card, i) => {
card.style.opacity = '0.7';
card.style.animation = `float ${1 + Math.random()}s ease-in-out infinite`;
});
// Add float keyframes if not exists
if (!document.getElementById('float-style')) {
const style = document.createElement('style');
style.id = 'float-style';
style.textContent = '@keyframes float { 0%, 100% { transform: skew(-1deg) translateY(0); } 50% { transform: skew(-1deg) translateY(-10px); } }';
document.head.appendChild(style);
}
} else {
this.updateFace(this.active.god ? '😈' : '😐');
document.querySelectorAll('.show-item').forEach(card => {
card.style.opacity = '';
card.style.animation = '';
});
}
},
powerUp(cheat) {
this.flash('rgba(255, 0, 255, 0.7)');
this.shake(500);
this.showMessage('PUMPED UP!', cheat.color);
this.showHUD();
this.updateFace('🔥');
this.active.pumped = true;
// Invert colors temporarily
document.body.style.filter = 'invert(1) hue-rotate(180deg)';
setTimeout(() => {
document.body.style.filter = '';
this.updateFace(this.active.god ? '😈' : '😐');
}, 3000);
// Glitch text effect on all titles
document.querySelectorAll('.title').forEach(title => {
const original = title.textContent;
let glitchCount = 0;
const glitchInterval = setInterval(() => {
title.textContent = original.split('').map(c =>
Math.random() > 0.7 ? String.fromCharCode(33 + Math.random() * 94) : c
).join('');
glitchCount++;
if (glitchCount > 20) {
clearInterval(glitchInterval);
title.textContent = original;
}
}, 50);
});
},
musicChange(cheat) {
this.flash('rgba(255, 136, 0, 0.5)');
this.showMessage('♪ CHANGING MUSIC ♪', cheat.color);
// Cycle through different "radio stations"
const stations = ['RADIO VOID', 'NOISE FM', 'GLITCH.WAV', 'STATIC 666', 'HOLY FREQ'];
const subtitle = document.querySelector('.subtitle');
if (subtitle) {
let i = 0;
const cycleInterval = setInterval(() => {
subtitle.textContent = stations[i % stations.length];
i++;
if (i >= stations.length * 2) {
clearInterval(cycleInterval);
subtitle.textContent = 'KLOOM LO KADOSH RADIO ARCHIVE';
}
}, 200);
}
},
pumpkins(cheat) {
// Billy Corgan would be proud
this.flash('rgba(255, 0, 0, 0.9)', 100);
this.flash('rgba(255, 0, 0, 0.9)', 100);
this.shake(1000);
this.showMessage('SMASHING PUMPKINS INTO SMALL PILES OF PUTRID DEBRIS', cheat.color);
this.showHUD();
this.updateFace('🎃');
// Add pumpkins everywhere
for (let i = 0; i < 20; i++) {
const pumpkin = document.createElement('div');
pumpkin.textContent = '🎃';
pumpkin.style.cssText = `
position: fixed;
font-size: ${30 + Math.random() * 40}px;
left: ${Math.random() * 100}vw;
top: -50px;
z-index: 9999;
pointer-events: none;
animation: pumpkin-fall ${2 + Math.random() * 3}s linear forwards;
`;
document.body.appendChild(pumpkin);
setTimeout(() => pumpkin.remove(), 5000);
}
// Add pumpkin fall animation if not exists
if (!document.getElementById('pumpkin-style')) {
const style = document.createElement('style');
style.id = 'pumpkin-style';
style.textContent = '@keyframes pumpkin-fall { 0% { transform: translateY(0) rotate(0deg); } 100% { transform: translateY(110vh) rotate(720deg); } }';
document.head.appendChild(style);
}
// Temporarily change all images to pumpkins
const images = document.querySelectorAll('.thumb img');
const originals = [];
images.forEach((img, i) => {
originals[i] = img.src;
img.style.filter = 'sepia(100%) hue-rotate(-50deg) saturate(3)';
});
setTimeout(() => {
images.forEach((img, i) => {
img.style.filter = '';
});
this.updateFace(this.active.god ? '😈' : '😐');
}, 4000);
}
};
// Initialize DOOM cheats on page load
document.addEventListener('DOMContentLoaded', () => DOOM.init());
/* embed / youtube cards navigate to their show page on play;
only local_audio uses KloomPlayer.load() inline */
</script>
</head>
<body>
<header class="site-header">
<h1>NOTHING IS HOLY</h1>
<div class="subtitle">KLOOM LO KADOSH RADIO ARCHIVE</div>
</header>
<div class="container">
<div class="controls">
<span>// ARCHIVE_INDEX</span>
<input type="text" id="kloom-search" class="kloom-search" placeholder="SEARCH THE ARCHIVE..." autocomplete="off" spellcheck="false" aria-label="Search shows">
<span>TOTAL_SHOWS: 18</span>
</div>
<!-- Section: KLOOM ORIGINALS / GUESTS -->
<div class="section-header">// KLOOM ORIGINALS & GUESTS</div>
<div class="show-list">
<!-- Card Wrapper -->
<div class="show-item" id="card-bots-religion" role="article" aria-labelledby="title-bots-religion">
<!-- Top Row: Thumb, Content, Button -->
<div class="card-top">
<a href="shows/bots-religion.html" class="thumb" aria-label="View full page for הבוטים הקימו דת ברשת החברתית הסודית">
<div style="width:100%;height:100%;background:black;display:flex;align-items:center;justify-content:center;color:#333;" role="img" aria-label="No image available">NO_IMG</div>
</a>
<div class="content">
<a href="shows/bots-religion.html" style="text-decoration:none; color:inherit;">
<div class="meta-top" aria-label="Show metadata">Kloom Lo Kadosh // 2026-02-02</div>
<div class="title" id="title-bots-religion">הבוטים הקימו דת ברשת החברתית הסודית</div>
<div class="desc">An AI-generated exploration of bots creating their own theology.</div>
<div class="tags">
<span>#AI</span><span>#Hebrew</span><span>#Experimental</span><span>#Religion</span>
</div>
</a>
</div>
<!-- Play Trigger (Desktop) -->
<div class="action"
role="button"
tabindex="0"
aria-label="Play הבוטים הקימו דת ברשת החברתית הסודית"
aria-pressed="false"
onkeypress="if(event.key==='Enter' || event.key===' ') { event.preventDefault(); this.click(); }"
onclick='KloomPlayer.load({"id": "bots-religion", "title": "הבוטים הקימו דת ברשת החברתית הסודית", "series": "Kloom Lo Kadosh", "date": "2026-02-02", "guest": "NotebookLM", "tags": ["AI", "Hebrew", "Experimental", "Religion"], "description": "An AI-generated exploration of bots creating their own theology.", "type": "local_audio", "src": "./bots-religion.m4a", "audio_url": "https://willbearfruits.github.io/kloom-radio/bots-religion.m4a", "show_url": "https://willbearfruits.github.io/kloom-radio/shows/bots-religion.html"})'>
▶
</div>
</div>
<!-- Mobile Play Strip -->
<div class="mobile-play"
role="button"
tabindex="0"
aria-label="Play הבוטים הקימו דת ברשת החברתית הסודית"
onkeypress="if(event.key==='Enter' || event.key===' ') { event.preventDefault(); this.click(); }"
onclick='KloomPlayer.load({"id": "bots-religion", "title": "הבוטים הקימו דת ברשת החברתית הסודית", "series": "Kloom Lo Kadosh", "date": "2026-02-02", "guest": "NotebookLM", "tags": ["AI", "Hebrew", "Experimental", "Religion"], "description": "An AI-generated exploration of bots creating their own theology.", "type": "local_audio", "src": "./bots-religion.m4a", "audio_url": "https://willbearfruits.github.io/kloom-radio/bots-religion.m4a", "show_url": "https://willbearfruits.github.io/kloom-radio/shows/bots-religion.html"})'>
▶ PLAY
</div>
</div>
<!-- Card Wrapper -->
<div class="show-item" id="card-land-devours-inhabitants" role="article" aria-labelledby="title-land-devours-inhabitants">
<!-- Top Row: Thumb, Content, Button -->
<div class="card-top">
<a href="shows/land-devours-inhabitants.html" class="thumb" aria-label="View full page for Land Devours Inhabitants">
<img src="https://thumbnailer.mixcloud.com/unsafe/600x600/extaudio/3/0/2/4/b17a-1c2a-419a-9327-154f161ddd2c" alt="Land Devours Inhabitants" loading="lazy" decoding="async">
</a>
<div class="content">
<a href="shows/land-devours-inhabitants.html" style="text-decoration:none; color:inherit;">
<div class="meta-top" aria-label="Show metadata">Radio Art 106 // 2024-01-01</div>
<div class="title" id="title-land-devours-inhabitants">Land Devours Inhabitants</div>
<div class="desc">War texts and music. Opens a window into Yaniv Schonfeld's thoughts and experiences during this period, through the medium of spoken journal entries.</div>
<div class="tags">
<span>#Radio Art</span><span>#War</span><span>#Experimental</span><span>#Spoken Word</span>
</div>
</a>
</div>
<!-- Play Trigger (Desktop) -->
<div class="action"
role="button"
tabindex="0"
aria-label="Play Land Devours Inhabitants"
aria-pressed="false"
onkeypress="if(event.key==='Enter' || event.key===' ') { event.preventDefault(); this.click(); }"
onclick='KloomPlayer.load({"id": "land-devours-inhabitants", "title": "Land Devours Inhabitants", "series": "Radio Art 106", "date": "2024-01-01", "guest": "Yaniv Schonfeld", "tags": ["Radio Art", "War", "Experimental", "Spoken Word"], "genres": ["Sound Art", "Texts"], "playlist": "", "description": "War texts and music. Opens a window into Yaniv Schonfeld\u0027s thoughts and experiences during this period, through the medium of spoken journal entries.", "type": "embed", "embed_url": "https://player-widget.mixcloud.com/widget/iframe/?hide_cover=1\u0026feed=%2Fradioart106%2Fradioart106_167_land-devours-inhabitants-by-yaniv-schonfeld%2F", "image_url": "https://thumbnailer.mixcloud.com/unsafe/600x600/extaudio/3/0/2/4/b17a-1c2a-419a-9327-154f161ddd2c", "play_count": 61, "show_url": "https://willbearfruits.github.io/kloom-radio/shows/land-devours-inhabitants.html"})'>
▶
</div>
</div>
<!-- Mobile Play Strip -->
<div class="mobile-play"
role="button"
tabindex="0"
aria-label="Play Land Devours Inhabitants"
onkeypress="if(event.key==='Enter' || event.key===' ') { event.preventDefault(); this.click(); }"
onclick='KloomPlayer.load({"id": "land-devours-inhabitants", "title": "Land Devours Inhabitants", "series": "Radio Art 106", "date": "2024-01-01", "guest": "Yaniv Schonfeld", "tags": ["Radio Art", "War", "Experimental", "Spoken Word"], "genres": ["Sound Art", "Texts"], "playlist": "", "description": "War texts and music. Opens a window into Yaniv Schonfeld\u0027s thoughts and experiences during this period, through the medium of spoken journal entries.", "type": "embed", "embed_url": "https://player-widget.mixcloud.com/widget/iframe/?hide_cover=1\u0026feed=%2Fradioart106%2Fradioart106_167_land-devours-inhabitants-by-yaniv-schonfeld%2F", "image_url": "https://thumbnailer.mixcloud.com/unsafe/600x600/extaudio/3/0/2/4/b17a-1c2a-419a-9327-154f161ddd2c", "play_count": 61, "show_url": "https://willbearfruits.github.io/kloom-radio/shows/land-devours-inhabitants.html"})'>
▶ PLAY
</div>
</div>
</div>
<!-- Section: YOU ARE NOT HOLY (Guest Shows) -->
<div class="section-header" style="margin-top: 60px;">// YOU ARE NOT HOLY גם אתה לא קדוש</div>
<div class="show-list">
<!-- Card Wrapper -->
<div class="show-item" id="card-you-are-not-holy-chefifeau-2026-01-20" role="article" aria-labelledby="title-you-are-not-holy-chefifeau-2026-01-20">
<!-- Top Row: Thumb, Content, Button -->
<div class="card-top">
<a href="shows/you-are-not-holy-chefifeau-2026-01-20.html" class="thumb" aria-label="View full page for גם שפיפו לא קדוש">
<img src="https://thumbnailer.mixcloud.com/unsafe/600x600/profile/d/9/0/6/7db7-329b-40e9-b239-55b543808a3d" alt="גם שפיפו לא קדוש" loading="lazy" decoding="async">
</a>
<div class="content">
<a href="shows/you-are-not-holy-chefifeau-2026-01-20.html" style="text-decoration:none; color:inherit;">
<div class="meta-top" aria-label="Show metadata">You Are Not Holy // 2026-01-20</div>
<div class="title" id="title-you-are-not-holy-chefifeau-2026-01-20">גם שפיפו לא קדוש</div>
<div class="desc">בתכנית הזאת אני מזמן את רוחות העבר ואת שפיפו לדבר , לשמוע וליהנות ממוסיקה עצמאית ושלו , ומוזיקה מהמזרח , והשילוב שלהם עם פאנק וגם בסוף התכנית נופל לנו לקצת השידור בקיצור כיף חיים</div>
<div class="tags">
<span>#Live</span><span>#Guest Show</span><span>#Rock</span><span>#Punk</span>
</div>
</a>
</div>
<!-- Play Trigger (Desktop) -->
<div class="action"
role="button"
tabindex="0"
aria-label="Play גם שפיפו לא קדוש"
aria-pressed="false"
onkeypress="if(event.key==='Enter' || event.key===' ') { event.preventDefault(); this.click(); }"
onclick='KloomPlayer.load({"id": "you-are-not-holy-chefifeau-2026-01-20", "title": "גם שפיפו לא קדוש", "series": "You Are Not Holy", "date": "2026-01-20", "guest": "chefifeau", "tags": ["Live", "Guest Show", "Rock", "Punk", "Mediterranean"], "genres": ["Rock", "Punk", "Mediterranean", "Indie folk", "Freak folk"], "playlist": [{"time": "00:00", "artist": "Xerox candy bar", "track": "Fire walk with me"}, {"time": "12:42", "artist": "Scout Niblett", "track": "Lucy Lucifer"}, {"time": "15:22", "artist": "Junkyard Kids", "track": "Junkyard Dream"}, {"time": "20:37", "artist": "manic street preacher", "track": "still snowing in saporo"}, {"time": "32:48", "artist": "משה כהן", "track": "נדרתי נדר"}, {"time": "47:45", "artist": "ferdi tayfur", "track": "sanmaki yasiyorum"}, {"time": "55:34", "artist": "Pal Kalmar \u0026 Miklos Sebo", "track": "Szomoru Vasarnap"}, {"time": "1:06:10", "artist": "שפיפו 3", "track": "הכל נראה כמו יום ראשון"}, {"time": "1:18:42", "artist": "Yaniv Schonfeld", "track": "today is the same day as yesterday"}, {"time": "1:23:20", "artist": "Guided By Voices", "track": "Peep-Hole"}, {"time": "1:25:07", "artist": "pulp", "track": "boats and trains"}, {"time": "1:33:07", "artist": "Microphones", "track": "The moon"}, {"time": "1:41:45", "artist": "chefifeau", "track": "רכבת של אפס"}, {"time": "1:56:20", "artist": "צוף זוהר ענבל", "track": "פרחים"}, {"time": "2:00:47", "artist": "Portishead", "track": "The Rip"}], "description": "בתכנית הזאת אני מזמן את רוחות העבר ואת שפיפו לדבר , לשמוע וליהנות ממוסיקה עצמאית ושלו , ומוזיקה מהמזרח , והשילוב שלהם עם פאנק וגם בסוף התכנית נופל לנו לקצת השידור בקיצור כיף חיים", "type": "embed", "embed_url": "https://player-widget.mixcloud.com/widget/iframe/?hide_cover=1\u0026feed=%2FNOTHINGISHOLY%2Fthe-creative-destruction-show-live-20260120-102213%2F", "image_url": "https://thumbnailer.mixcloud.com/unsafe/600x600/profile/d/9/0/6/7db7-329b-40e9-b239-55b543808a3d", "play_count": 0, "show_url": "https://willbearfruits.github.io/kloom-radio/shows/you-are-not-holy-chefifeau-2026-01-20.html"})'>
▶
</div>
</div>
<!-- Mobile Play Strip -->
<div class="mobile-play"
role="button"
tabindex="0"
aria-label="Play גם שפיפו לא קדוש"
onkeypress="if(event.key==='Enter' || event.key===' ') { event.preventDefault(); this.click(); }"
onclick='KloomPlayer.load({"id": "you-are-not-holy-chefifeau-2026-01-20", "title": "גם שפיפו לא קדוש", "series": "You Are Not Holy", "date": "2026-01-20", "guest": "chefifeau", "tags": ["Live", "Guest Show", "Rock", "Punk", "Mediterranean"], "genres": ["Rock", "Punk", "Mediterranean", "Indie folk", "Freak folk"], "playlist": [{"time": "00:00", "artist": "Xerox candy bar", "track": "Fire walk with me"}, {"time": "12:42", "artist": "Scout Niblett", "track": "Lucy Lucifer"}, {"time": "15:22", "artist": "Junkyard Kids", "track": "Junkyard Dream"}, {"time": "20:37", "artist": "manic street preacher", "track": "still snowing in saporo"}, {"time": "32:48", "artist": "משה כהן", "track": "נדרתי נדר"}, {"time": "47:45", "artist": "ferdi tayfur", "track": "sanmaki yasiyorum"}, {"time": "55:34", "artist": "Pal Kalmar \u0026 Miklos Sebo", "track": "Szomoru Vasarnap"}, {"time": "1:06:10", "artist": "שפיפו 3", "track": "הכל נראה כמו יום ראשון"}, {"time": "1:18:42", "artist": "Yaniv Schonfeld", "track": "today is the same day as yesterday"}, {"time": "1:23:20", "artist": "Guided By Voices", "track": "Peep-Hole"}, {"time": "1:25:07", "artist": "pulp", "track": "boats and trains"}, {"time": "1:33:07", "artist": "Microphones", "track": "The moon"}, {"time": "1:41:45", "artist": "chefifeau", "track": "רכבת של אפס"}, {"time": "1:56:20", "artist": "צוף זוהר ענבל", "track": "פרחים"}, {"time": "2:00:47", "artist": "Portishead", "track": "The Rip"}], "description": "בתכנית הזאת אני מזמן את רוחות העבר ואת שפיפו לדבר , לשמוע וליהנות ממוסיקה עצמאית ושלו , ומוזיקה מהמזרח , והשילוב שלהם עם פאנק וגם בסוף התכנית נופל לנו לקצת השידור בקיצור כיף חיים", "type": "embed", "embed_url": "https://player-widget.mixcloud.com/widget/iframe/?hide_cover=1\u0026feed=%2FNOTHINGISHOLY%2Fthe-creative-destruction-show-live-20260120-102213%2F", "image_url": "https://thumbnailer.mixcloud.com/unsafe/600x600/profile/d/9/0/6/7db7-329b-40e9-b239-55b543808a3d", "play_count": 0, "show_url": "https://willbearfruits.github.io/kloom-radio/shows/you-are-not-holy-chefifeau-2026-01-20.html"})'>
▶ PLAY
</div>
</div>
<!-- Card Wrapper -->
<div class="show-item" id="card-you-are-not-holy-shai-komarov-2025-12-09" role="article" aria-labelledby="title-you-are-not-holy-shai-komarov-2025-12-09">
<!-- Top Row: Thumb, Content, Button -->
<div class="card-top">
<a href="shows/you-are-not-holy-shai-komarov-2025-12-09.html" class="thumb" aria-label="View full page for גם שי קומרוב לא קדוש">
<img src="https://thumbnailer.mixcloud.com/unsafe/600x600/extaudio/6/7/3/1/b86a-ee47-42fa-8a57-ef0eec8ec078" alt="גם שי קומרוב לא קדוש" loading="lazy" decoding="async">
</a>
<div class="content">
<a href="shows/you-are-not-holy-shai-komarov-2025-12-09.html" style="text-decoration:none; color:inherit;">
<div class="meta-top" aria-label="Show metadata">You Are Not Holy // 2025-12-09</div>
<div class="title" id="title-you-are-not-holy-shai-komarov-2025-12-09">גם שי קומרוב לא קדוש</div>
<div class="desc">Shai Komarov is not holy. Live performances and conversation exploring folk, art rock, and experimental sounds.</div>
<div class="tags">
<span>#Live</span><span>#Guest Show</span><span>#Eclectic</span><span>#Folk</span>
</div>
</a>
</div>
<!-- Play Trigger (Desktop) -->
<div class="action"
role="button"
tabindex="0"
aria-label="Play גם שי קומרוב לא קדוש"
aria-pressed="false"
onkeypress="if(event.key==='Enter' || event.key===' ') { event.preventDefault(); this.click(); }"
onclick='KloomPlayer.load({"id": "you-are-not-holy-shai-komarov-2025-12-09", "title": "גם שי קומרוב לא קדוש", "series": "You Are Not Holy", "date": "2025-12-09", "guest": "Shai Komarov", "tags": ["Live", "Guest Show", "Eclectic", "Folk", "Experimental"], "genres": ["Eclectic", "Folk", "Art Rock"], "playlist": [{"time": "00:00", "artist": "Intro Talking", "track": "Intro Talking"}, {"time": "08:04", "artist": "Richard Dawson", "track": "A Parents address to his firstborn son on the day of his birth"}, {"time": "15:57", "artist": "David Bowie", "track": "Time"}, {"time": "21:15", "artist": "Cardiacs", "track": "Eden On The Air"}, {"time": "26:42", "artist": "David Byrne", "track": "I should watch tv"}, {"time": "30:40", "artist": "David Sylvian", "track": "Late night shopping"}, {"time": "37:09", "artist": "Mount Eerie", "track": "Real Death"}, {"time": "42:55", "artist": "Shai Komarov (live)", "track": "דובדבן"}, {"time": "46:20", "artist": "The Incredible String Band", "track": "Nightfall"}, {"time": "48:45", "artist": "The Books", "track": "The lemon of pink 1"}, {"time": "53:49", "artist": "The Kinks", "track": "Strangers"}, {"time": "1:02:28", "artist": "Shai Komarov (live)", "track": "ארך הטיפש בטיפשותו"}, {"time": "1:06:36", "artist": "Jockstrap", "track": "Concrete over water"}, {"time": "1:11:49", "artist": "Shai Komarov (live)", "track": "נבל"}, {"time": "1:16:39", "artist": "Cardiacs", "track": "Busty Beez"}, {"time": "1:25:23", "artist": "Mitski", "track": "I will"}, {"time": "1:35:12", "artist": "Yehu Yaron", "track": "שלושה שירים שלא נכתבו (חלק א)"}, {"time": "1:43:51", "artist": "Hilla Ruach", "track": "Haifa"}], "description": "Shai Komarov is not holy. Live performances and conversation exploring folk, art rock, and experimental sounds.", "type": "embed", "embed_url": "https://player-widget.mixcloud.com/widget/iframe/?hide_cover=1\u0026feed=%2FNOTHINGISHOLY%2Fthe-creative-destruction-show-live-20251209-124921%2F", "image_url": "https://thumbnailer.mixcloud.com/unsafe/600x600/extaudio/6/7/3/1/b86a-ee47-42fa-8a57-ef0eec8ec078", "play_count": 0, "show_url": "https://willbearfruits.github.io/kloom-radio/shows/you-are-not-holy-shai-komarov-2025-12-09.html"})'>
▶
</div>
</div>
<!-- Mobile Play Strip -->
<div class="mobile-play"
role="button"
tabindex="0"
aria-label="Play גם שי קומרוב לא קדוש"
onkeypress="if(event.key==='Enter' || event.key===' ') { event.preventDefault(); this.click(); }"
onclick='KloomPlayer.load({"id": "you-are-not-holy-shai-komarov-2025-12-09", "title": "גם שי קומרוב לא קדוש", "series": "You Are Not Holy", "date": "2025-12-09", "guest": "Shai Komarov", "tags": ["Live", "Guest Show", "Eclectic", "Folk", "Experimental"], "genres": ["Eclectic", "Folk", "Art Rock"], "playlist": [{"time": "00:00", "artist": "Intro Talking", "track": "Intro Talking"}, {"time": "08:04", "artist": "Richard Dawson", "track": "A Parents address to his firstborn son on the day of his birth"}, {"time": "15:57", "artist": "David Bowie", "track": "Time"}, {"time": "21:15", "artist": "Cardiacs", "track": "Eden On The Air"}, {"time": "26:42", "artist": "David Byrne", "track": "I should watch tv"}, {"time": "30:40", "artist": "David Sylvian", "track": "Late night shopping"}, {"time": "37:09", "artist": "Mount Eerie", "track": "Real Death"}, {"time": "42:55", "artist": "Shai Komarov (live)", "track": "דובדבן"}, {"time": "46:20", "artist": "The Incredible String Band", "track": "Nightfall"}, {"time": "48:45", "artist": "The Books", "track": "The lemon of pink 1"}, {"time": "53:49", "artist": "The Kinks", "track": "Strangers"}, {"time": "1:02:28", "artist": "Shai Komarov (live)", "track": "ארך הטיפש בטיפשותו"}, {"time": "1:06:36", "artist": "Jockstrap", "track": "Concrete over water"}, {"time": "1:11:49", "artist": "Shai Komarov (live)", "track": "נבל"}, {"time": "1:16:39", "artist": "Cardiacs", "track": "Busty Beez"}, {"time": "1:25:23", "artist": "Mitski", "track": "I will"}, {"time": "1:35:12", "artist": "Yehu Yaron", "track": "שלושה שירים שלא נכתבו (חלק א)"}, {"time": "1:43:51", "artist": "Hilla Ruach", "track": "Haifa"}], "description": "Shai Komarov is not holy. Live performances and conversation exploring folk, art rock, and experimental sounds.", "type": "embed", "embed_url": "https://player-widget.mixcloud.com/widget/iframe/?hide_cover=1\u0026feed=%2FNOTHINGISHOLY%2Fthe-creative-destruction-show-live-20251209-124921%2F", "image_url": "https://thumbnailer.mixcloud.com/unsafe/600x600/extaudio/6/7/3/1/b86a-ee47-42fa-8a57-ef0eec8ec078", "play_count": 0, "show_url": "https://willbearfruits.github.io/kloom-radio/shows/you-are-not-holy-shai-komarov-2025-12-09.html"})'>
▶ PLAY
</div>
</div>
<!-- Card Wrapper -->
<div class="show-item" id="card-you-are-not-holy-shiri-shifman-2025-12-02" role="article" aria-labelledby="title-you-are-not-holy-shiri-shifman-2025-12-02">
<!-- Top Row: Thumb, Content, Button -->
<div class="card-top">
<a href="shows/you-are-not-holy-shiri-shifman-2025-12-02.html" class="thumb" aria-label="View full page for גם שירי ענת שיפמן לא קדושה">
<img src="https://thumbnailer.mixcloud.com/unsafe/600x600/extaudio/f/0/7/f/17d5-f5ff-45ee-b457-0e2fedcee197" alt="גם שירי ענת שיפמן לא קדושה" loading="lazy" decoding="async">
</a>
<div class="content">
<a href="shows/you-are-not-holy-shiri-shifman-2025-12-02.html" style="text-decoration:none; color:inherit;">
<div class="meta-top" aria-label="Show metadata">You Are Not Holy // 2025-12-02</div>
<div class="title" id="title-you-are-not-holy-shiri-shifman-2025-12-02">גם שירי ענת שיפמן לא קדושה</div>
<div class="desc">Shiri Anat Shifman is not holy. A deep dive into skaters, punks, and the local Israeli music scene.</div>
<div class="tags">
<span>#Live</span><span>#Guest Show</span><span>#Skate Culture</span><span>#Punk</span>
</div>
</a>