-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
5364 lines (5336 loc) · 348 KB
/
index.html
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>Kitson: an unofficial archive</title>
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;700;800;900&family=Quicksand:wght@300;400;700">
<!--<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">-->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-KK94CHFLLe+nY2dmCWGMq91rCGa5gtU4mk92HdvYe+M/SXH301p5ILy+dN9+nJOZ" crossorigin="anonymous">
<link rel="stylesheet" href="/css/style.css">
<script src="/js/audioPlayer.js"></script>
<script src="/js/buttonTitle.js"></script>
<script src="/js/darkmode.js"></script>
<script src="/js/expandButtons.js"></script>
<script src="/js/links.js"></script>
<script src="/js/modalWindow.js"></script>
<script src="/js/news.js"></script>
<script src="/js/playButton.js"></script>
<script src="/js/quotes.js"></script>
<script src="/js/radioClick.js"></script>
<script src="/js/reCaptcha.js"></script>
<script src="/js/scrollHeader.js"></script>
<script src="/js/scrolledIcons.js"></script>
<script src="/js/sortArticles.js"></script>
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#fff">
<!--<meta name="color-scheme" content="light dark">
<link rel="manifest" href="/site.webmanifest">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">-->
</head>
<body>
<div class="content-wrap">
<header class="header">
<div class="header-center">
<div class="header-top">
<h1>A Kitson Archive</h1>
<div class="links">
<button class="header-button" title="About" data-modal="about-modal">About</button>
<button class="header-button" title="Missing" data-modal="missing-modal">Missing</button>
<button class="header-button" title="Contact" data-modal="contact-modal">Contact</button>
</div>
<div class="scrolled-icons">
<div class="icon about-icon"></div>
<div class="icon missing-icon"></div>
<div class="icon contact-icon"></div>
</div>
</div>
<div class="quote-container" style="text-align: center;">
<span id="quote" style="font-size:0.8em"></span>
</div>
<div id="audioPlayer" class="floating-audio"></div>
</div>
<div id="dark-mode-btn">
<div class="dark-mode-toggle">
<svg id="toggle-dark-mode" width="40" height="40">
<path d="M8 11a3 3 0 1 1 0-6 3 3 0 0 1 0 6zm0 1a4 4 0 1 0 0-8 4 4 0 0 0 0 8zM8 0a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-1 0v-2A.5.5 0 0 1 8 0zm0 13a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-1 0v-2A.5.5 0 0 1 8 13zm8-5a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1 0-1h2a.5.5 0 0 1 .5.5zM3 8a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1 0-1h2A.5.5 0 0 1 3 8zm10.657-5.657a.5.5 0 0 1 0 .707l-1.414 1.415a.5.5 0 1 1-.707-.708l1.414-1.414a.5.5 0 0 1 .707 0zm-9.193 9.193a.5.5 0 0 1 0 .707L3.05 13.657a.5.5 0 0 1-.707-.707l1.414-1.414a.5.5 0 0 1 .707 0zm9.193 2.121a.5.5 0 0 1-.707 0l-1.414-1.414a.5.5 0 0 1 .707-.707l1.414 1.414a.5.5 0 0 1 0 .707zM4.464 4.465a.5.5 0 0 1-.707 0L2.343 3.05a.5.5 0 1 1 .707-.707l1.414 1.414a.5.5 0 0 1 0 .708z"/>
</svg>
</div>
</div>
</header>
<div class="content">
<div> </div>
<div class="latest" data-version="9">
<span class=latestHeader>Latest Update</span>
<p>Huge thanks to the hero who submitted the Ian Collins interview! In Audio > Misc and on the podcast feeds. And I've added various writings - interviews, profiles and self-penned material.</p>
<a href="#" class="close-latest" onclick="closeLatest();">
<img class="latest-img" src="/img/close.svg" alt="Close">
</a>
</div>
<div class="tab"> <!-- test123 -->
<div class="tabs-container">
<input type="radio" id="tabaudio" name="tabs-container" checked="checked">
<label for="tabaudio" title="Audio">Audio</label>
<div class="tab"><!---->
<div class="mytabs">
<input type="radio" id="tabmisc" name="mytabs">
<label for="tabmisc" title="Miscellaneous Radio">Misc.</label>
<div class="tab">
<div class="showheader">
<div class="showtitle">
<div class="alignleft">Miscellaneous</div>
<div class="alignright">
<div class="rss-row">
<span class="rss-text">Complete</span>
<a href="https://fourble.co.uk/dkmisc-230513-0.rss">
<img class="rss-img" src="./img/rss.svg" title="Full Show RSS">
</a>
<a href="https://archive.org/details/daniel-kitson-misc-radio">
<img class="icon-img" src="./img/archive_logo.svg" title="Full shows at the Internet Archive">
</a>
</div>
<div class="rss-row">
<span class="rss-text">Edited</span>
<a href="https://fourble.co.uk/dkmiscedit-230513-0.rss">
<img class="rss-img" src="./img/rss.svg" title="Edited Show RSS">
</a>
<a href="https://archive.org/details/daniel-kitson-misc-radio-edited">
<img class="icon-img" src="./img/archive_logo.svg" title="Edited shows at the Internet Archive">
</a>
</div>
</div>
<div style="clear:both;"></div>
</div>
</div>
<div style="clear:both;"></div>
<div class="disclaimer">
<span>Disclaimer: The audio content provided may contain explicit language that may no longer be considered acceptable or appropriate by today's standards. Listener discretion is advised.</span>
</div>
<div class="blockquote2">
<span>Various interviews and other ephemera.</span>
</div>
<div class="divTable">
<div class="divTableRowExpandButton">
<button title="Expand All" class="expand-all-button">
<span class="button-text">Expand All</span>
<svg class="expand-icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z"/>
</svg>
</button>
</div>
<div class="divTableBody" >
<div class="divTableRow no-hover">Aug 28, 2001 - Fringe Cuts</div>
<div class="divTableRow">
<div class="divTableCell"></div>
<div class="divTableCell">
<button class="play-button" data-src="https://archive.org/download/daniel-kitson-misc-radio/2001-08-28_-_Fringe_Cuts.mp3">COMPLETE
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-play-fill" viewBox="0 0 16 16">
<path d="m11.596 8.697-6.363 3.692c-.54.313-1.233-.066-1.233-.697V4.308c0-.63.692-1.01 1.233-.696l6.363 3.692a.802.802 0 0 1 0 1.393z"/>
</svg>
</button>
</div>
<div class="divTableCell">
<button class="play-button" data-src="https://archive.org/download/daniel-kitson-misc-radio-edited/2001-08-28_-_Fringe_Cuts-edit.mp3">EDITED
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-play-fill" viewBox="0 0 16 16">
<path d="m11.596 8.697-6.363 3.692c-.54.313-1.233-.066-1.233-.697V4.308c0-.63.692-1.01 1.233-.696l6.363 3.692a.802.802 0 0 1 0 1.393z"/>
</svg>
</button>
</div>
<div class="divTableCell">
<!--<a href="" class="fileLink"><img class="icon-img" src="./img/m3u.svg" title="Tracklist"></a>-->
</div>
<div class="divTableCell">
<!--<a href=""><img class="icon-img" src="./img/spotify.svg" title="Spotify Playlist"></a>-->
</div>
<div class="divTableCell">
<button class="expand-button" title="Show Notes" aria-expanded="false">
<span class="expand-container">
<img class="notes-img" alt="Notes" src="./img/notes.svg">
<svg class="expand-icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z"/>
</svg>
</span>
</button>
</div>
</div>
<div class="divTableRow2" style="display:none">
<div class="shownotes">
<a href="https://www.bbc.co.uk/sounds/play/live:bbc_radio_fourfm">BBC Radio 4</a><br>"The best acts from this year's Edinburgh Festival, brought together for one performance. Ross Noble introduces a selection of the finest songs, sketches and stand ups."<br>Features Andy Parsons, Dara Ó Briain, Catherine Tate & Jonathan McGuinness, Kate Dimbleby, Matt King, Mike Wilmot, Daniel Kitson, and Seán Cullen.
</div>
</div>
<div class="divTableRow no-hover">Nov 3, 2002 - Ian Collins Unbranded</div>
<div class="divTableRow">
<div class="divTableCell"></div>
<div class="divTableCell">
<button class="play-button" data-src="https://archive.org/download/daniel-kitson-misc-radio-edited/2002-11-03_-_Ian_Collins_Unbranded-edit.mp3">EDITED
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-play-fill" viewBox="0 0 16 16">
<path d="m11.596 8.697-6.363 3.692c-.54.313-1.233-.066-1.233-.697V4.308c0-.63.692-1.01 1.233-.696l6.363 3.692a.802.802 0 0 1 0 1.393z"/>
</svg>
</button>
</div>
<div class="divTableCell">
</div>
<div class="divTableCell">
</div>
<div class="divTableCell">
</div>
<div class="divTableCell">
<button class="expand-button" title="Show Notes" aria-expanded="false">
<span class="expand-container">
<img class="notes-img" alt="Notes" src="./img/notes.svg">
<svg class="expand-icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z"/>
</svg>
</span>
</button>
</div>
</div>
<div class="divTableRow2" style="display:none">
<div class="shownotes">
16-minute interview segment on Ian Collins' late night <a href="https://talksport.com/">talkSPORT</a> show including his thoughts about the Perrier, 'mainstream comedy', taboo subjects, and Phoenix Nights. <br>"Flattered he did it with us and I remember him being superb."
</div>
</div>
<div class="divTableRow no-hover">Nov 2, 2003 - One Way Single Parent Family Favourites</div>
<div class="divTableRow">
<div class="divTableCell"></div>
<div class="divTableCell">
<button class="play-button" data-src="https://archive.org/download/daniel-kitson-misc-radio/2003-11-02_-_One_Way_Single_Parent_Family_Favourites_%28with_Stewart_Lee_and_Richard_Herring%29.mp3">COMPLETE
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-play-fill" viewBox="0 0 16 16">
<path d="m11.596 8.697-6.363 3.692c-.54.313-1.233-.066-1.233-.697V4.308c0-.63.692-1.01 1.233-.696l6.363 3.692a.802.802 0 0 1 0 1.393z"/>
</svg>
</button>
</div>
<div class="divTableCell">
<button class="play-button" data-src="https://archive.org/download/daniel-kitson-misc-radio-edited/2003-11-02_-_One_Way_Single_Parent_Family_Favourites_%28with_Stewart_Lee_and_Richard_Herring%29-cut.mp3">EDITED
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-play-fill" viewBox="0 0 16 16">
<path d="m11.596 8.697-6.363 3.692c-.54.313-1.233-.066-1.233-.697V4.308c0-.63.692-1.01 1.233-.696l6.363 3.692a.802.802 0 0 1 0 1.393z"/>
</svg>
</button>
</div>
<div class="divTableCell">
<!--<a href="" class="fileLink"><img class="icon-img" src="./img/m3u.svg" title="Tracklist"></a>-->
</div>
<div class="divTableCell">
<!--<a href=""><img class="icon-img" src="./img/spotify.svg" title="Spotify Playlist"></a>-->
</div>
<div class="divTableCell">
<button class="expand-button" title="Show Notes" aria-expanded="false">
<span class="expand-container">
<img class="notes-img" alt="Notes" src="./img/notes.svg">
<svg class="expand-icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z"/>
</svg>
</span>
</button>
</div>
</div>
<div class="divTableRow2" style="display:none">
<div class="shownotes">
<a href="https://www.resonancefm.com/">Resonance FM</a> show hosted by Stewart Lee. Daniel Kitson and Richard Herring guest.<br>"The show went out on Sunday lunchtimes & featured an eclectic mix of music (largely from Stew's own personal collection) and at least one guest each week - often from the world of comedy."
</div>
</div>
<div class="divTableRow no-hover">Nov 8, 2003 - Loose Ends</div>
<div class="divTableRow">
<div class="divTableCell"></div>
<div class="divTableCell">
<button class="play-button" data-src="https://archive.org/download/daniel-kitson-misc-radio/2003-11-08_-_Loose_Ends.mp3">COMPLETE
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-play-fill" viewBox="0 0 16 16">
<path d="m11.596 8.697-6.363 3.692c-.54.313-1.233-.066-1.233-.697V4.308c0-.63.692-1.01 1.233-.696l6.363 3.692a.802.802 0 0 1 0 1.393z"/>
</svg>
</button>
</div>
<div class="divTableCell">
<button class="play-button" data-src="https://archive.org/download/daniel-kitson-misc-radio-edited/2003-11-08_-_Loose_Ends-edit.mp3">EDITED
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-play-fill" viewBox="0 0 16 16">
<path d="m11.596 8.697-6.363 3.692c-.54.313-1.233-.066-1.233-.697V4.308c0-.63.692-1.01 1.233-.696l6.363 3.692a.802.802 0 0 1 0 1.393z"/>
</svg>
</button>
</div>
<div class="divTableCell">
<!--<a href="" class="fileLink"><img class="icon-img" src="./img/m3u.svg" title="Tracklist"></a>-->
</div>
<div class="divTableCell">
<!--<a href=""><img class="icon-img" src="./img/spotify.svg" title="Spotify Playlist"></a>-->
</div>
<div class="divTableCell">
<button class="expand-button" title="Show Notes" aria-expanded="false">
<span class="expand-container">
<img class="notes-img" alt="Notes" src="./img/notes.svg">
<svg class="expand-icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z"/>
</svg>
</span>
</button>
</div>
</div>
<div class="divTableRow2" style="display:none">
<div class="shownotes">
<a href="https://www.bbc.co.uk/programmes/b006qjym">BBC Radio 4</a> show hosted by Ned Sherrin.<br>"Ned Sherrin presents another mix of music, comedy and Conversation"<br>Guests are Lynne Truss, Rob Liddle, Howard Jacobson, Daniel Kitson, Richard Bacon (interviewed by Nina Conti & Monk). Music from Katie Melua and Tangala.
</div>
</div>
<div class="divTableRow no-hover">May 9, 2006 - The Conversation Hour</div>
<div class="divTableRow">
<div class="divTableCell"></div>
<div class="divTableCell">
<button class="play-button" data-src="https://archive.org/download/daniel-kitson-misc-radio/2006-05-09_-_ABC_Radio_Melbourne%2C_The_Conversation_Hour_%28with_Richard_Fidler%29.mp3">COMPLETE
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-play-fill" viewBox="0 0 16 16">
<path d="m11.596 8.697-6.363 3.692c-.54.313-1.233-.066-1.233-.697V4.308c0-.63.692-1.01 1.233-.696l6.363 3.692a.802.802 0 0 1 0 1.393z"/>
</svg>
</button>
</div>
<div class="divTableCell">
<button class="play-button" data-src="https://archive.org/download/daniel-kitson-misc-radio-edited/2006-05-09_-_ABC_Radio_Melbourne%2C_The_Conversation_Hour_%28with_Richard_Fidler%29-cut.mp3">EDITED
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-play-fill" viewBox="0 0 16 16">
<path d="m11.596 8.697-6.363 3.692c-.54.313-1.233-.066-1.233-.697V4.308c0-.63.692-1.01 1.233-.696l6.363 3.692a.802.802 0 0 1 0 1.393z"/>
</svg>
</button>
</div>
<div class="divTableCell">
<!--<a href="" class="fileLink"><img class="icon-img" src="./img/m3u.svg" title="Tracklist"></a>-->
</div>
<div class="divTableCell">
<!--<a href=""><img class="icon-img" src="./img/spotify.svg" title="Spotify Playlist"></a>-->
</div>
<div class="divTableCell">
<button class="expand-button" title="Show Notes" aria-expanded="false">
<span class="expand-container">
<img class="notes-img" alt="Notes" src="./img/notes.svg">
<svg class="expand-icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z"/>
</svg>
</span>
</button>
</div>
</div>
<div class="divTableRow2" style="display:none">
<div class="shownotes">
<a href="https://www.abc.net.au/melbourne">ABC Radio Melbourne</a>, show hosted by Richard Fidler.<br>"Andrew Daddo's American roadtrip, and Daniel Kitson on stand-up comedy."
</div>
</div>
<div class="divTableRow no-hover">Apr 17, 2007 - Get This</div>
<div class="divTableRow">
<div class="divTableCell"></div>
<div class="divTableCell">
<button class="play-button" data-src="https://archive.org/download/daniel-kitson-misc-radio/2007-04-17_Get_This_055_Daniel_Kitson.mp3">COMPLETE
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-play-fill" viewBox="0 0 16 16">
<path d="m11.596 8.697-6.363 3.692c-.54.313-1.233-.066-1.233-.697V4.308c0-.63.692-1.01 1.233-.696l6.363 3.692a.802.802 0 0 1 0 1.393z"/>
</svg>
</button>
</div>
<div class="divTableCell">
<button class="play-button" data-src="https://archive.org/download/daniel-kitson-misc-radio-edited/2007-04-17_Get_This_055_Daniel_Kitson-Edit.mp3">EDITED
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-play-fill" viewBox="0 0 16 16">
<path d="m11.596 8.697-6.363 3.692c-.54.313-1.233-.066-1.233-.697V4.308c0-.63.692-1.01 1.233-.696l6.363 3.692a.802.802 0 0 1 0 1.393z"/>
</svg>
</button>
</div>
<div class="divTableCell">
<!--<a href="" class="fileLink"><img class="icon-img" src="./img/m3u.svg" title="Tracklist"></a>-->
</div>
<div class="divTableCell">
<!--<a href=""><img class="icon-img" src="./img/spotify.svg" title="Spotify Playlist"></a>-->
</div>
<div class="divTableCell">
<button class="expand-button" title="Show Notes" aria-expanded="false">
<span class="expand-container">
<img class="notes-img" alt="Notes" src="./img/notes.svg">
<svg class="expand-icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z"/>
</svg>
</span>
</button>
</div>
</div>
<div class="divTableRow2" style="display:none">
<div class="shownotes">
Get This was an Australian radio comedy show which aired on <a href="http://www.triplem.com.au/">Triple M</a> hosted by Tony Martin and Ed Kavalee. A different guest co-host was featured nearly every day. Note that these complete shows come from the podcast and largely already have music removed.
</div>
</div>
<div class="divTableRow no-hover">Jul 24, 2007 - Ben and the Old Man</div>
<div class="divTableRow">
<div class="divTableCell"></div>
<div class="divTableCell">
<button class="play-button" data-src="https://archive.org/download/daniel-kitson-misc-radio/2007-07-24_-_danielkitson.com_podcast_-_Ben_and_the_Old_Man.mp3">COMPLETE
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-play-fill" viewBox="0 0 16 16">
<path d="m11.596 8.697-6.363 3.692c-.54.313-1.233-.066-1.233-.697V4.308c0-.63.692-1.01 1.233-.696l6.363 3.692a.802.802 0 0 1 0 1.393z"/>
</svg>
</button>
</div>
<div class="divTableCell"><!--
<button class="play-button" data-src="https://archive.org/download/daniel-kitson-misc-radio-edited/2007-04-17_Get_This_055_Daniel_Kitson-Edit.mp3">EDITED
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-play-fill" viewBox="0 0 16 16">
<path d="m11.596 8.697-6.363 3.692c-.54.313-1.233-.066-1.233-.697V4.308c0-.63.692-1.01 1.233-.696l6.363 3.692a.802.802 0 0 1 0 1.393z"/>
</svg>
</button>-->
</div>
<div class="divTableCell">
<!--<a href="" class="fileLink"><img class="icon-img" src="./img/m3u.svg" title="Tracklist"></a>-->
</div>
<div class="divTableCell">
<!--<a href=""><img class="icon-img" src="./img/spotify.svg" title="Spotify Playlist"></a>-->
</div>
<div class="divTableCell">
<button class="expand-button" title="Show Notes" aria-expanded="false">
<span class="expand-container">
<img class="notes-img" alt="Notes" src="./img/notes.svg">
<svg class="expand-icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z"/>
</svg>
</span>
</button>
</div>
</div>
<div class="divTableRow2" style="display:none">
<div class="shownotes">
In 2007 Daniel Kitson offered a podcast feed on his <a href="https://www.danielkitson.com">website</a>. It hosted a four-part recording of <i>Dancing</i>—his Edinburgh 2004 show—which would later be offered on <a href="https://danielkitson.bandcamp.com/album/dancing-2004">Bandcamp</a>, a clip from 2006's <i>Weltanschauung</i> (which he would later release <a href="https://danielkitson.bandcamp.com/album/weltanschauung-2006">in full</a>), and "various other bits and pieces."<br>
<i>Ben and the Old Man</i> was a clip from 2005's <i>Stories For The Wobbly Hearted</i>, later <a href="https://vimeo.com/ondemand/wobblyhearted">released in its entirety on Vimeo</a> in 2020.
</div>
</div>
<div class="divTableRow no-hover">Jul 24, 2007 - Homeless Man on Tube</div>
<div class="divTableRow">
<div class="divTableCell"></div>
<div class="divTableCell">
<button class="play-button" data-src="https://archive.org/download/daniel-kitson-misc-radio/2007-07-24_-_danielkitson.com_podcast_-_Homeless_Man_on_Tube.mp3">COMPLETE
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-play-fill" viewBox="0 0 16 16">
<path d="m11.596 8.697-6.363 3.692c-.54.313-1.233-.066-1.233-.697V4.308c0-.63.692-1.01 1.233-.696l6.363 3.692a.802.802 0 0 1 0 1.393z"/>
</svg>
</button>
</div>
<div class="divTableCell"><!--
<button class="play-button" data-src="https://archive.org/download/daniel-kitson-misc-radio-edited/2007-04-17_Get_This_055_Daniel_Kitson-Edit.mp3">EDITED
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-play-fill" viewBox="0 0 16 16">
<path d="m11.596 8.697-6.363 3.692c-.54.313-1.233-.066-1.233-.697V4.308c0-.63.692-1.01 1.233-.696l6.363 3.692a.802.802 0 0 1 0 1.393z"/>
</svg>
</button>-->
</div>
<div class="divTableCell">
<!--<a href="" class="fileLink"><img class="icon-img" src="./img/m3u.svg" title="Tracklist"></a>-->
</div>
<div class="divTableCell">
<!--<a href=""><img class="icon-img" src="./img/spotify.svg" title="Spotify Playlist"></a>-->
</div>
<div class="divTableCell">
<button class="expand-button" title="Show Notes" aria-expanded="false">
<span class="expand-container">
<img class="notes-img" alt="Notes" src="./img/notes.svg">
<svg class="expand-icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z"/>
</svg>
</span>
</button>
</div>
</div>
<div class="divTableRow2" style="display:none">
<div class="shownotes">
In 2007 Daniel Kitson offered a podcast feed on his <a href="https://www.danielkitson.com">website</a>. It hosted a four-part recording of <i>Dancing</i>—his Edinburgh 2004 show—which would later be offered on <a href="https://danielkitson.bandcamp.com/album/dancing-2004">Bandcamp</a>, a clip from 2006's <i>Weltanschauung</i> (which he would later release <a href="https://danielkitson.bandcamp.com/album/weltanschauung-2006">in full</a>), and "various other bits and pieces."<br>
"this is a story about something that happened to me on the tube."
</div>
</div>
<div class="divTableRow no-hover">Jul 24, 2007 - Me and Bob</div>
<div class="divTableRow">
<div class="divTableCell"></div>
<div class="divTableCell">
<button class="play-button" data-src="https://archive.org/download/daniel-kitson-misc-radio/2007-07-24_-_danielkitson.com_podcast_-_Me_and_Bob.mp3">COMPLETE
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-play-fill" viewBox="0 0 16 16">
<path d="m11.596 8.697-6.363 3.692c-.54.313-1.233-.066-1.233-.697V4.308c0-.63.692-1.01 1.233-.696l6.363 3.692a.802.802 0 0 1 0 1.393z"/>
</svg>
</button>
</div>
<div class="divTableCell"><!--
<button class="play-button" data-src="https://archive.org/download/daniel-kitson-misc-radio-edited/2007-04-17_Get_This_055_Daniel_Kitson-Edit.mp3">EDITED
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-play-fill" viewBox="0 0 16 16">
<path d="m11.596 8.697-6.363 3.692c-.54.313-1.233-.066-1.233-.697V4.308c0-.63.692-1.01 1.233-.696l6.363 3.692a.802.802 0 0 1 0 1.393z"/>
</svg>
</button>-->
</div>
<div class="divTableCell">
<!--<a href="" class="fileLink"><img class="icon-img" src="./img/m3u.svg" title="Tracklist"></a>-->
</div>
<div class="divTableCell">
<!--<a href=""><img class="icon-img" src="./img/spotify.svg" title="Spotify Playlist"></a>-->
</div>
<div class="divTableCell">
<button class="expand-button" title="Show Notes" aria-expanded="false">
<span class="expand-container">
<img class="notes-img" alt="Notes" src="./img/notes.svg">
<svg class="expand-icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z"/>
</svg>
</span>
</button>
</div>
</div>
<div class="divTableRow2" style="display:none">
<div class="shownotes">
In 2007 Daniel Kitson offered a podcast feed on his <a href="https://www.danielkitson.com">website</a>. It hosted a four-part recording of <i>Dancing</i>—his Edinburgh 2004 show—which would later be offered on <a href="https://danielkitson.bandcamp.com/album/dancing-2004">Bandcamp</a>, a clip from 2006's <i>Weltanschauung</i> (which he would later release <a href="https://danielkitson.bandcamp.com/album/weltanschauung-2006">in full</a>), and "various other bits and pieces."<br>
Sometimes referred to online as Roadside Drunk, this was previously performed live in various forms as part of a preamble to <i>It's the Fireworks Talking</i>.
</div>
</div>
<div class="divTableRow no-hover">Sept 23, 2007 - Artworks</div>
<div class="divTableRow">
<div class="divTableCell"></div>
<div class="divTableCell">
<button class="play-button" data-src="https://archive.org/download/daniel-kitson-misc-radio/2007-09-23_-_Artworks_-_Radio_National.mp3">COMPLETE
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-play-fill" viewBox="0 0 16 16">
<path d="m11.596 8.697-6.363 3.692c-.54.313-1.233-.066-1.233-.697V4.308c0-.63.692-1.01 1.233-.696l6.363 3.692a.802.802 0 0 1 0 1.393z"/>
</svg>
</button>
</div>
<div class="divTableCell">
<button class="play-button" data-src="https://archive.org/download/daniel-kitson-misc-radio-edited/2007-09-23_-_Artworks_-_Radio_National-edit.mp3">EDITED
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-play-fill" viewBox="0 0 16 16">
<path d="m11.596 8.697-6.363 3.692c-.54.313-1.233-.066-1.233-.697V4.308c0-.63.692-1.01 1.233-.696l6.363 3.692a.802.802 0 0 1 0 1.393z"/>
</svg>
</button>
</div>
<div class="divTableCell">
<!--<a href="" class="fileLink"><img class="icon-img" src="./img/m3u.svg" title="Tracklist"></a>-->
</div>
<div class="divTableCell">
<!--<a href=""><img class="icon-img" src="./img/spotify.svg" title="Spotify Playlist"></a>-->
</div>
<div class="divTableCell">
<button class="expand-button" title="Show Notes" aria-expanded="false">
<span class="expand-container">
<img class="notes-img" alt="Notes" src="./img/notes.svg">
<svg class="expand-icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z"/>
</svg>
</span>
</button>
</div>
</div>
<div class="divTableRow2" style="display:none">
<div class="shownotes">
Artworks podcast from <a href="https://www.abc.net.au/radionational">ABC Radio National</a> presented by Amanda Smith. Edit includes the chat with "self-proclaimed professional comedy nerd" Dom Romeo and a ~10min interview with Kitson
<br>
"The award-winning UK comedian Daniel Kitson is in Australia with his latest show C-90. Daniel won the Perrier Award at the Edinburgh Fringe Festival, and the Barry Award at the Comedy Festival in Melbourne, but he also does what he calls story shows, like C-90. It's about a man whose job it is to catalogue discarded old compilation tapes, no longer needed in the digital age.<br>
C-90 recalls Henry Leonard Bodey's last day at work. Daniel Kitson is performing his solo show in Sydney's Opera House until the end of the month, then in October at Brisbane's Powerhouse before a season at the Melbourne International Arts Festival."
</div>
</div>
<div class="divTableRow no-hover">Oct 17, 2007 - Get This</div>
<div class="divTableRow">
<div class="divTableCell"></div>
<div class="divTableCell">
<button class="play-button" data-src="https://archive.org/download/daniel-kitson-misc-radio/2007-10-17_Get_This_160_Daniel_Kitson.mp3">COMPLETE
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-play-fill" viewBox="0 0 16 16">
<path d="m11.596 8.697-6.363 3.692c-.54.313-1.233-.066-1.233-.697V4.308c0-.63.692-1.01 1.233-.696l6.363 3.692a.802.802 0 0 1 0 1.393z"/>
</svg>
</button>
</div>
<div class="divTableCell">
<button class="play-button" data-src="https://archive.org/download/daniel-kitson-misc-radio-edited/2007-10-17_Get_This_160_Daniel_Kitson-Edit.mp3">EDITED
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-play-fill" viewBox="0 0 16 16">
<path d="m11.596 8.697-6.363 3.692c-.54.313-1.233-.066-1.233-.697V4.308c0-.63.692-1.01 1.233-.696l6.363 3.692a.802.802 0 0 1 0 1.393z"/>
</svg>
</button>
</div>
<div class="divTableCell">
<!--<a href="" class="fileLink"><img class="icon-img" src="./img/m3u.svg" title="Tracklist"></a>-->
</div>
<div class="divTableCell">
<!--<a href=""><img class="icon-img" src="./img/spotify.svg" title="Spotify Playlist"></a>-->
</div>
<div class="divTableCell">
<button class="expand-button" title="Show Notes" aria-expanded="false">
<span class="expand-container">
<img class="notes-img" alt="Notes" src="./img/notes.svg">
<svg class="expand-icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z"/>
</svg>
</span>
</button>
</div>
</div>
<div class="divTableRow2" style="display:none">
<div class="shownotes">
Get This was an Australian radio comedy show which aired on <a href="http://www.triplem.com.au/">Triple M</a> hosted by Tony Martin and Ed Kavalee. A different guest co-host was featured nearly every day. Note that these complete shows come from the podcast and largely already have music removed.
</div>
</div>
<div class="divTableRow no-hover">Jul 2, 2008 - I Hate Myself and Want To Die</div>
<div class="divTableRow">
<div class="divTableCell"></div>
<div class="divTableCell">
<button class="play-button" data-src="https://archive.org/download/daniel-kitson-misc-radio/2007-10-17_Get_This_160_Daniel_Kitson.mp3">COMPLETE
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-play-fill" viewBox="0 0 16 16">
<path d="m11.596 8.697-6.363 3.692c-.54.313-1.233-.066-1.233-.697V4.308c0-.63.692-1.01 1.233-.696l6.363 3.692a.802.802 0 0 1 0 1.393z"/>
</svg>
</button>
</div>
<div class="divTableCell"><!--
<button class="play-button" data-src="https://archive.org/download/daniel-kitson-misc-radio-edited/2007-10-17_Get_This_160_Daniel_Kitson-Edit.mp3">EDITED
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-play-fill" viewBox="0 0 16 16">
<path d="m11.596 8.697-6.363 3.692c-.54.313-1.233-.066-1.233-.697V4.308c0-.63.692-1.01 1.233-.696l6.363 3.692a.802.802 0 0 1 0 1.393z"/>
</svg>
</button>-->
</div>
<div class="divTableCell">
<!--<a href="" class="fileLink"><img class="icon-img" src="./img/m3u.svg" title="Tracklist"></a>-->
</div>
<div class="divTableCell">
<!--<a href=""><img class="icon-img" src="./img/spotify.svg" title="Spotify Playlist"></a>-->
</div>
<div class="divTableCell">
<button class="expand-button" title="Show Notes" aria-expanded="false">
<span class="expand-container">
<img class="notes-img" alt="Notes" src="./img/notes.svg">
<svg class="expand-icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z"/>
</svg>
</span>
</button>
</div>
</div>
<div class="divTableRow2" style="display:none">
<div class="shownotes">
In this ongoing series, Daz Chandler chats to an assortment of individuals ranging from comedians and musicians to novelists and politicians about their life as angst-ridden, pimple-picking teenagers. Just what type of teenager were they? And what stories and songs do they associate with that period of their lives? 'I Hate Myself and Want To Die' is a refreshingly unique insight into some of our most respected personalities.<br>
In this episode, British comedian, Daniel Kitson, reveals what it was like to grow up in a quaint, English village with a sack-full of comedic ambitions and a notable absence of "tang".<br>
Published on the <a href="https://www.youtube.com/watch?v=NeZD1wB1FPU">hatemyselfchannel</a> on YouTube, though it's unknown if this is the original source.
</div>
</div>
<div class="divTableRow no-hover">Oct 6, 2009 - The Conversation Hour</div>
<div class="divTableRow">
<div class="divTableCell"></div>
<div class="divTableCell">
<button class="play-button" data-src="https://archive.org/download/daniel-kitson-misc-radio/2009-10-06_-_ABC_Radio_Melbourne%2C_The_Conversation_Hour_%28with_Tony_Martin_and_Jon_Faine%29.mp3">COMPLETE
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-play-fill" viewBox="0 0 16 16">
<path d="m11.596 8.697-6.363 3.692c-.54.313-1.233-.066-1.233-.697V4.308c0-.63.692-1.01 1.233-.696l6.363 3.692a.802.802 0 0 1 0 1.393z"/>
</svg>
</button>
</div>
<div class="divTableCell">
<button class="play-button" data-src="https://archive.org/download/daniel-kitson-misc-radio-edited/2009-10-06_-_ABC_Radio_Melbourne%2C_The_Conversation_Hour_%28with_Tony_Martin_and_Jon_Faine%29-cut.mp3">EDITED
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-play-fill" viewBox="0 0 16 16">
<path d="m11.596 8.697-6.363 3.692c-.54.313-1.233-.066-1.233-.697V4.308c0-.63.692-1.01 1.233-.696l6.363 3.692a.802.802 0 0 1 0 1.393z"/>
</svg>
</button>
</div>
<div class="divTableCell">
<!--<a href="" class="fileLink"><img class="icon-img" src="./img/m3u.svg" title="Tracklist"></a>-->
</div>
<div class="divTableCell">
<!--<a href=""><img class="icon-img" src="./img/spotify.svg" title="Spotify Playlist"></a>-->
</div>
<div class="divTableCell">
<button class="expand-button" title="Show Notes" aria-expanded="false">
<span class="expand-container">
<img class="notes-img" alt="Notes" src="./img/notes.svg">
<svg class="expand-icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z"/>
</svg>
</span>
</button>
</div>
</div>
<div class="divTableRow2" style="display:none">
<div class="shownotes">
<a href="https://www.abc.net.au/melbourne">ABC Radio Melbourne</a>, show hosted by Tony Martin and Jon Faine.<br>"Jon Faine's co-host was comedian Tony Martin, as they talked sharks, death and Facebook with English comic Daniel Kitson."
</div>
</div>
<div class="divTableRow no-hover">Jan 12, 2010 - Two Tones</div>
<div class="divTableRow">
<div class="divTableCell"></div>
<div class="divTableCell">
<button class="play-button" data-src="https://archive.org/download/daniel-kitson-misc-radio/2010-01-12_-_Triple_R_Two_Tones_%28with_Tony_Martin_and_Tony_Wilson%29.mp3">COMPLETE
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-play-fill" viewBox="0 0 16 16">
<path d="m11.596 8.697-6.363 3.692c-.54.313-1.233-.066-1.233-.697V4.308c0-.63.692-1.01 1.233-.696l6.363 3.692a.802.802 0 0 1 0 1.393z"/>
</svg>
</button>
</div>
<div class="divTableCell">
<button class="play-button" data-src="https://archive.org/download/daniel-kitson-misc-radio-edited/2010-01-12_-_Triple_R_Two_Tones_%28with_Tony_Martin_and_Tony_Wilson%29-cut.mp3">EDITED
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-play-fill" viewBox="0 0 16 16">
<path d="m11.596 8.697-6.363 3.692c-.54.313-1.233-.066-1.233-.697V4.308c0-.63.692-1.01 1.233-.696l6.363 3.692a.802.802 0 0 1 0 1.393z"/>
</svg>
</button>
</div>
<div class="divTableCell">
<!--<a href="" class="fileLink"><img class="icon-img" src="./img/m3u.svg" title="Tracklist"></a>-->
</div>
<div class="divTableCell">
<!--<a href=""><img class="icon-img" src="./img/spotify.svg" title="Spotify Playlist"></a>-->
</div>
<div class="divTableCell">
<button class="expand-button" title="Show Notes" aria-expanded="false">
<span class="expand-container">
<img class="notes-img" alt="Notes" src="./img/notes.svg">
<svg class="expand-icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z"/>
</svg>
</span>
</button>
</div>
</div>
<div class="divTableRow2" style="display:none">
<div class="shownotes">
Show on <a href="https://www.rrr.org.au/">Triple R</a> hosted by Tony Martin and Tony Wilson.<br>"Daniel Kitson joins the 'Two Tones' today at one on the clock."
</div>
</div>
<div class="divTableRow no-hover">Apr 28, 2013 - Versus - Judaism VS Australia</div>
<div class="divTableRow">
<div class="divTableCell"></div>
<div class="divTableCell">
<button class="play-button" data-src="https://archive.org/download/daniel-kitson-misc-radio/2013-04-28_-_FBi%2C_Versus_%28with_Nick_Coyle_and_Eddie_Sharp%29.mp3">COMPLETE
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-play-fill" viewBox="0 0 16 16">
<path d="m11.596 8.697-6.363 3.692c-.54.313-1.233-.066-1.233-.697V4.308c0-.63.692-1.01 1.233-.696l6.363 3.692a.802.802 0 0 1 0 1.393z"/>
</svg>
</button>
</div>
<div class="divTableCell">
<button class="play-button" data-src="https://archive.org/download/daniel-kitson-misc-radio-edited/2013-04-28_-_FBi%2C_Versus_%28with_Nick_Coyle_and_Eddie_Sharp%29-cut.mp3">EDITED
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-play-fill" viewBox="0 0 16 16">
<path d="m11.596 8.697-6.363 3.692c-.54.313-1.233-.066-1.233-.697V4.308c0-.63.692-1.01 1.233-.696l6.363 3.692a.802.802 0 0 1 0 1.393z"/>
</svg>
</button>
</div>
<div class="divTableCell">
<!--<a href="" class="fileLink"><img class="icon-img" src="./img/m3u.svg" title="Tracklist"></a>-->
</div>
<div class="divTableCell">
<!--<a href=""><img class="icon-img" src="./img/spotify.svg" title="Spotify Playlist"></a>-->
</div>
<div class="divTableCell">
<button class="expand-button" title="Show Notes" aria-expanded="false">
<span class="expand-container">
<img class="notes-img" alt="Notes" src="./img/notes.svg">
<svg class="expand-icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z"/>
</svg>
</span>
</button>
</div>
</div>
<div class="divTableRow2" style="display:none">
<div class="shownotes">
"1 hour (10am) 2 ideas battling for supremacy. 2 hunks (Nick Coyle and Eddie Sharp) Sometimes 1 special guest"
</div>
</div>
<div class="divTableRow no-hover">Dec 15, 2014 - Lauren Laverne</div>
<div class="divTableRow">
<div class="divTableCell"></div>
<!--<div class="divTableCell">
<button class="play-button" data-src="https://archive.org/download/daniel-kitson-misc-radio/2013-04-28_-_FBi%2C_Versus_%28with_Nick_Coyle_and_Eddie_Sharp%29.mp3">COMPLETE
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-play-fill" viewBox="0 0 16 16">
<path d="m11.596 8.697-6.363 3.692c-.54.313-1.233-.066-1.233-.697V4.308c0-.63.692-1.01 1.233-.696l6.363 3.692a.802.802 0 0 1 0 1.393z"/>
</svg>
</button>
</div>-->
<div class="divTableCell">
<button class="play-button" data-src="https://archive.org/download/daniel-kitson-misc-radio/2014-12-14_-_Lauren_Laverne_-_Tim_Key_interview_-_BBC_6_Music.mp3">EDITED
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-play-fill" viewBox="0 0 16 16">
<path d="m11.596 8.697-6.363 3.692c-.54.313-1.233-.066-1.233-.697V4.308c0-.63.692-1.01 1.233-.696l6.363 3.692a.802.802 0 0 1 0 1.393z"/>
</svg>
</button>
</div>
<div class="divTableCell">
<!--<a href="" class="fileLink"><img class="icon-img" src="./img/m3u.svg" title="Tracklist"></a>-->
</div>
<div class="divTableCell">
<!--<a href=""><img class="icon-img" src="./img/spotify.svg" title="Spotify Playlist"></a>-->
</div>
<div class="divTableCell">
<button class="expand-button" title="Show Notes" aria-expanded="false">
<span class="expand-container">
<img class="notes-img" alt="Notes" src="./img/notes.svg">
<svg class="expand-icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z"/>
</svg>
</span>
</button>
</div>
</div>
<div class="divTableRow2" style="display:none">
<div class="shownotes">
"Lauren welcomes comedian and poet Tim Key into the studio to talk about his new show with Daniel Kitson. Plus New Music Monday, the MPFree and a boxful of great records."<br>Interview took place in the final hour of the three-hour show.
</div>
</div>
<div class="divTableRow no-hover">Mar 30, 2015 - Maps</div>
<div class="divTableRow">
<div class="divTableCell"></div>
<div class="divTableCell">
<button class="play-button" data-src="https://archive.org/download/daniel-kitson-misc-radio/2015-03-30_-_Triple_R%2C_Maps_%28with_Fiona_Bamford-Brancher%29.mp3">COMPLETE
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-play-fill" viewBox="0 0 16 16">
<path d="m11.596 8.697-6.363 3.692c-.54.313-1.233-.066-1.233-.697V4.308c0-.63.692-1.01 1.233-.696l6.363 3.692a.802.802 0 0 1 0 1.393z"/>
</svg>
</button>
</div>
<div class="divTableCell">
<button class="play-button" data-src="https://archive.org/download/daniel-kitson-misc-radio-edited/2015-03-30_-_Triple_R%2C_Maps_%28with_Fiona_Bamford-Brancher%29-cut.mp3">EDITED
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-play-fill" viewBox="0 0 16 16">
<path d="m11.596 8.697-6.363 3.692c-.54.313-1.233-.066-1.233-.697V4.308c0-.63.692-1.01 1.233-.696l6.363 3.692a.802.802 0 0 1 0 1.393z"/>
</svg>
</button>
</div>
<div class="divTableCell">
<!--<a href="" class="fileLink"><img class="icon-img" src="./img/m3u.svg" title="Tracklist"></a>-->
</div>
<div class="divTableCell">
<!--<a href=""><img class="icon-img" src="./img/spotify.svg" title="Spotify Playlist"></a>-->
</div>
<div class="divTableCell">
<button class="expand-button" title="Show Notes" aria-expanded="false">
<span class="expand-container">
<img class="notes-img" alt="Notes" src="./img/notes.svg">
<svg class="expand-icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z"/>
</svg>
</span>
</button>
</div>
</div>
<div class="divTableRow2" style="display:none">
<div class="shownotes">
<a href="https://www.rrr.org.au/">Triple R</a> show hosted by Fiona Bamford-Bracher.
</div>
</div>
<div class="divTableRow no-hover">Apr 13, 2015 - Maps</div>
<div class="divTableRow">
<div class="divTableCell"></div>
<div class="divTableCell">
<button class="play-button" data-src="https://archive.org/download/daniel-kitson-misc-radio/2015-04-13_-_Triple_R%2C_Maps_%28with_Fiona_Bamford-Brancher%29.mp3">COMPLETE
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-play-fill" viewBox="0 0 16 16">
<path d="m11.596 8.697-6.363 3.692c-.54.313-1.233-.066-1.233-.697V4.308c0-.63.692-1.01 1.233-.696l6.363 3.692a.802.802 0 0 1 0 1.393z"/>
</svg>
</button>
</div>
<div class="divTableCell">
<button class="play-button" data-src="https://archive.org/download/daniel-kitson-misc-radio-edited/2015-04-13_-_Triple_R_Maps_%28with_Fiona_Bamford-Brancher%29-cut.mp3">EDITED
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-play-fill" viewBox="0 0 16 16">
<path d="m11.596 8.697-6.363 3.692c-.54.313-1.233-.066-1.233-.697V4.308c0-.63.692-1.01 1.233-.696l6.363 3.692a.802.802 0 0 1 0 1.393z"/>
</svg>
</button>
</div>
<div class="divTableCell">
<!--<a href="" class="fileLink"><img class="icon-img" src="./img/m3u.svg" title="Tracklist"></a>-->
</div>
<div class="divTableCell">
<!--<a href=""><img class="icon-img" src="./img/spotify.svg" title="Spotify Playlist"></a>-->
</div>
<div class="divTableCell">
<button class="expand-button" title="Show Notes" aria-expanded="false">
<span class="expand-container">
<img class="notes-img" alt="Notes" src="./img/notes.svg">
<svg class="expand-icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z"/>
</svg>
</span>
</button>
</div>
</div>
<div class="divTableRow2" style="display:none">
<div class="shownotes">
<a href="https://www.rrr.org.au/">Triple R</a> show hosted by Fiona Bamford-Bracher and Sam Pang.
</div>
</div>
<div class="divTableRow no-hover">Apr 4, 2017 - The Conversation Hour</div>
<div class="divTableRow">
<div class="divTableCell"></div>
<div class="divTableCell">
<button class="play-button" data-src="https://archive.org/download/daniel-kitson-misc-radio/2017-04-04_-_ABC_Radio_Melbourne%2C_The_Conversation_Hour_%28with_Jon_Faine%29.mp3">COMPLETE
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-play-fill" viewBox="0 0 16 16">
<path d="m11.596 8.697-6.363 3.692c-.54.313-1.233-.066-1.233-.697V4.308c0-.63.692-1.01 1.233-.696l6.363 3.692a.802.802 0 0 1 0 1.393z"/>
</svg>
</button>
</div>
<div class="divTableCell">
<button class="play-button" data-src="https://archive.org/download/daniel-kitson-misc-radio-edited/2017-04-04_-_ABC_Radio_Melbourne%2C_The_Conversation_Hour_%28with_Jon_Faine%29-cut.mp3">EDITED
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-play-fill" viewBox="0 0 16 16">
<path d="m11.596 8.697-6.363 3.692c-.54.313-1.233-.066-1.233-.697V4.308c0-.63.692-1.01 1.233-.696l6.363 3.692a.802.802 0 0 1 0 1.393z"/>
</svg>
</button>
</div>
<div class="divTableCell">
<!--<a href="" class="fileLink"><img class="icon-img" src="./img/m3u.svg" title="Tracklist"></a>-->
</div>
<div class="divTableCell">
<!--<a href=""><img class="icon-img" src="./img/spotify.svg" title="Spotify Playlist"></a>-->
</div>
<div class="divTableCell">
<button class="expand-button" title="Show Notes" aria-expanded="false">
<span class="expand-container">
<img class="notes-img" alt="Notes" src="./img/notes.svg">
<svg class="expand-icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z"/>
</svg>
</span>
</button>
</div>
</div>
<div class="divTableRow2" style="display:none">
<div class="shownotes">
<a href="https://www.abc.net.au/melbourne">ABC Radio Melbourne</a>, show hosted by Jon Faine and Casey Bennetto.<br>"Their first guest is English comedian Daniel Kitson, a regular visitor to Australia during the Melbourne International Comedy Festival. This year he's involved in three projects: Not Yet But Soon – A Work In Progress Stand Up Show is at the Fairfax Studio, Arts Centre Melbourne now through to 16th April, 2017. Stories for the Starlit Sky – A Trilogy is presented with Gavin Osborn at the Playhouse, Arts Centre Melbourne now through to 23rd April, 2017. And It’s Always Right Now Until It’s Later On – On Film is screening at the Westgarth Cinema on Tuesday 18th & Wednesday 19th April, 2017 with Kitson introducing the film."
</div>
</div>
<div class="divTableRow no-hover">Apr 1, 2019 - The Conversation Hour</div>
<div class="divTableRow">
<div class="divTableCell"></div>
<div class="divTableCell">
<button class="play-button" data-src="https://archive.org/download/daniel-kitson-misc-radio/2019-04-01_-_ABC_Radio_Melbourne%2C_The_Conversation_Hour_%28with_Jon_Faine_and_Serpil_Senelmis%29.mp3">COMPLETE
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-play-fill" viewBox="0 0 16 16">
<path d="m11.596 8.697-6.363 3.692c-.54.313-1.233-.066-1.233-.697V4.308c0-.63.692-1.01 1.233-.696l6.363 3.692a.802.802 0 0 1 0 1.393z"/>
</svg>
</button>
</div>
<div class="divTableCell">
<button class="play-button" data-src="https://archive.org/download/daniel-kitson-misc-radio-edited/2019-04-01_-_ABC_Radio_Melbourne%2C_The_Conversation_Hour_%28with_Jon_Faine_and_Serpil_Senelmis%29-cut.mp3">EDITED
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-play-fill" viewBox="0 0 16 16">
<path d="m11.596 8.697-6.363 3.692c-.54.313-1.233-.066-1.233-.697V4.308c0-.63.692-1.01 1.233-.696l6.363 3.692a.802.802 0 0 1 0 1.393z"/>
</svg>
</button>
</div>
<div class="divTableCell">
<!--<a href="" class="fileLink"><img class="icon-img" src="./img/m3u.svg" title="Tracklist"></a>-->
</div>
<div class="divTableCell">
<!--<a href=""><img class="icon-img" src="./img/spotify.svg" title="Spotify Playlist"></a>-->
</div>
<div class="divTableCell">
<button class="expand-button" title="Show Notes" aria-expanded="false">
<span class="expand-container">
<img class="notes-img" alt="Notes" src="./img/notes.svg">
<svg class="expand-icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z"/>
</svg>
</span>
</button>
</div>
</div>
<div class="divTableRow2" style="display:none">
<div class="shownotes">
<a href="https://www.abc.net.au/melbourne">ABC Radio Melbourne</a>, show hosted by Jon Faine and Serpil Şenelmiş<br>"Their first guest is comedian and theatre maker Daniel Kitson. His show <i>Keep</i> is on as part of the Melbourne International Comedy Festival at the Malthouse's Merlyn Theatre until Sunday 21st April."
</div>
</div>
<div class="divTableRow no-hover">Feb 12, 2021 - Clear Spot</div>
<div class="divTableRow">
<div class="divTableCell"></div>
<div class="divTableCell">
<button class="play-button" data-src="https://archive.org/download/daniel-kitson-misc-radio/2021-02-12_-_Clear_Spot_Resonance_FM_fundraiser.mp3">COMPLETE
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-play-fill" viewBox="0 0 16 16">
<path d="m11.596 8.697-6.363 3.692c-.54.313-1.233-.066-1.233-.697V4.308c0-.63.692-1.01 1.233-.696l6.363 3.692a.802.802 0 0 1 0 1.393z"/>
</svg>
</button>
</div>
<div class="divTableCell">
<button class="play-button" data-src="https://archive.org/download/daniel-kitson-misc-radio-edited/2021-02-12_-_Clear_Spot_Resonance_FM_fundraiser-cut.mp3">EDITED
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-play-fill" viewBox="0 0 16 16">
<path d="m11.596 8.697-6.363 3.692c-.54.313-1.233-.066-1.233-.697V4.308c0-.63.692-1.01 1.233-.696l6.363 3.692a.802.802 0 0 1 0 1.393z"/>
</svg>
</button>
</div>
<div class="divTableCell">
<a href="./tracklists/misc/clearspot_2021_02_12.txt" class="fileLink"><img class="icon-img" src="./img/m3u.svg" title="Tracklist"></a>
</div>
<div class="divTableCell">
<a href="https://open.spotify.com/playlist/5x8uwrkl1ROMXN8izpuX45?si=92ef325baa294384"><img class="icon-img" src="./img/spotify.svg" title="Spotify Playlist"></a>
</div>
<div class="divTableCell">
<button class="expand-button" title="Show Notes" aria-expanded="false">
<span class="expand-container">
<img class="notes-img" alt="Notes" src="./img/notes.svg">
<svg class="expand-icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z"/>
</svg>
</span>
</button>
</div>
</div>
<div class="divTableRow2" style="display:none">
<div class="shownotes">
<a href="https://www.resonancefm.com/">Resonance FM</a> fundraiser<br><a href="https://twitter.com/ResonanceFM/status/1360226463795064835">"Hey, Daniel Kitson does a one-off show at 8pm tonight!"</a><br>A special on-off broadcast by Daniel Kitson - "it's just going to be an hour of blather and bangers" - as part of our Annual Fundraiser. If you enjoy, do please donate!
</div>
</div>
<div class="divTableRow no-hover">Apr 3, 2023 - Maps</div>
<div class="divTableRow">
<div class="divTableCell"></div>
<div class="divTableCell">
<button class="play-button" data-src="https://archive.org/download/daniel-kitson-misc-radio/2023-04-03_-_Maps_on_Triple_R_%28with_Fiona_Bamford-Bracher%29.mp3">COMPLETE
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-play-fill" viewBox="0 0 16 16">
<path d="m11.596 8.697-6.363 3.692c-.54.313-1.233-.066-1.233-.697V4.308c0-.63.692-1.01 1.233-.696l6.363 3.692a.802.802 0 0 1 0 1.393z"/>
</svg>
</button>
</div>
<div class="divTableCell">
<button class="play-button" data-src="https://archive.org/download/daniel-kitson-misc-radio-edited/2023-04-03_-_Maps_on_Triple_R_%28with_Fiona_Bamford-Bracher%29-cut.mp3">EDITED
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-play-fill" viewBox="0 0 16 16">
<path d="m11.596 8.697-6.363 3.692c-.54.313-1.233-.066-1.233-.697V4.308c0-.63.692-1.01 1.233-.696l6.363 3.692a.802.802 0 0 1 0 1.393z"/>
</svg>
</button>
</div>
<div class="divTableCell">
<a href="./tracklists/misc/maps_2023_04_03.txt" class="fileLink"><img class="icon-img" src="./img/m3u.svg" title="Tracklist"></a>
</div>
<div class="divTableCell">
<a href="https://open.spotify.com/playlist/0mHlyb9ghM18yQsRBZHIBR?si=238c91aeb7594637"><img class="icon-img" src="./img/spotify.svg" title="Spotify Playlist"></a>
<a href="https://moodybeaches.bandcamp.com/track/counting-reasons"><img class="icon-img" src="./img/bandcamp.svg" title="Bandcamp"></a>
</div>
<div class="divTableCell">
<button class="expand-button" title="Show Notes" aria-expanded="false">
<span class="expand-container">
<img class="notes-img" alt="Notes" src="./img/notes.svg">
<svg class="expand-icon" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z"/>
</svg>
</span>
</button>
</div>
</div>
<div class="divTableRow2" style="display:none">
<div class="shownotes">
<a href="https://www.rrr.org.au/">Triple R</a> show hosted by Fiona Bamford-Bracher <br>"Daniel Kitson is finally back in Melbourne and visiting Maps today. Will he talk about his latest show? Who can say? I'd definitely tune in to find out though."
</div>
</div>
</div>
</div>
</div>
<input type="radio" id="tab3rrr" name="mytabs">
<label for="tab3rrr" title="Triple R Radio, 2007-2010"><span><img src="./img/3rrr_logo.svg" class="icon-img" title="Triple R Radio"><br>2006-2012</span></label>
<div class="tab">
<div class="showheader">
<div class="showtitle">
<div class="alignleft">Daniel Kitson on Triple R</div>
<div class="alignright">