-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
5193 lines (4761 loc) · 257 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 http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="robots" content="index,follow" />
<meta name="googlebot" content="index,follow" />
<meta name="description" content="An index of In Our Time episodes and their associated Wikipedia pages." />
<meta property="og:url" content="" />
<meta property="og:title" content="in our time" />
<meta property="og:description" content="An index of In Our Time episodes and their associated Wikipedia pages." />
<meta name="theme-color" content="#000">
<title>in our time</title>
<link rel="stylesheet" type="text/css" href="./client/css/common.03.css" />
<link rel="stylesheet" type="text/css" href="./client/css/index.03.css" />
<link rel="icon"
href="https://upload.wikimedia.org/wikipedia/commons/thumb/2/28/Official_portrait_of_Lord_Bragg_crop_2.jpg/440px-Official_portrait_of_Lord_Bragg_crop_2.jpg" />
<script src="client/util.03.js"></script>
<script>
let page = parseInt(window.location.hash.split('page=').pop()) || 0
const PAGE_SIZE = 50;
let state = {
start: page * PAGE_SIZE,
end: (page + 1) * PAGE_SIZE,
scoredOnly: false,
sortBy: 'date',
}
let config = {};
let episodes = [];
let bbcDescriptions = {};
let guestFrequency = {};
let categoriesByEpisode = {};
let topLevelCategoriesByEpisode = {};
let scores = {};
let thumbnails = {};
window.onload = () => {
const reader = new FileReader();
state.scoredOnly = document.getElementById('scored-only').checked;
window.onhashchange = display;
Promise.all([
'scores',
'./data/bbc_descriptions_short.json?v=1',
'./data/guest_frequency_min.json?v=1',
'./data/episodes_min.json?v=1',
'./data/episode_thumbnails.json?v=1',
'./data/categories_by_episode.json?v=1',
'./config/config.json?v=1',
'./data/top_level_categories_by_episode.json',
].map((url, i) => {
if (i === 0) {
return getScores()
}
return fetch(url).then((response) => {
return response.json();
}).then((data) => {
return data;
});
})).then((values) => {
[scores, bbcDescriptions, guestFrequency, episodes, thumbnails, categoriesByEpisode, config, topLevelCategoriesByEpisode] = values;
document.getElementById('loading').style.opacity = 0;
document.querySelector('.buttons--bottom').style.display = 'flex';
document.getElementById('search').addEventListener('input', filter)
document.getElementById('scored-only').addEventListener('input', filter)
document.getElementById('sort-by').addEventListener('change', filter)
state.end = Math.min(episodes.length - 1, ((page + 1) * PAGE_SIZE) - 1)
display();
}).catch(
console.error.bind(console)
);
}
function display() {
const filtered = episodes.filter(ep => {
if (!state.scoredOnly) {
return true;
}
let score = scores[ep.topic] || {}
return !!score.Score
}).filter(ep => isSearchMatch(ep, categoriesByEpisode, topLevelCategoriesByEpisode, bbcDescriptions, scores, false, state.search))
.sort((a, b) => {
switch (state.sortBy) {
case 'name':
return a.topic.localeCompare(b.topic)
case 'score':
return (scores[b.topic] || {}).Score - (scores[a.topic] || {}).Score
case 'date':
default:
return new Date(b.date) - new Date(a.date)
}
})
state.start = Math.min(state.start, filtered.length - 1)
state.end = Math.min(state.end, filtered.length - 1)
document.getElementById('episodes').innerHTML = '';
document.querySelectorAll('.first-page, .prev-page').forEach(el => {
el.disabled = state.start === 0
})
document.querySelectorAll('.last-page, .next-page').forEach(el => {
el.disabled = state.end >= filtered.length - 1
})
window.location.hash = state.start > 0 ? `page=${Math.floor(state.start / PAGE_SIZE)}` : ''
filtered.slice(state.start, state.end + 1).forEach(ep => {
const el = document.createElement('div')
el.classList = ['episode flex-column']
let experts = ''
let score = scores[ep.topic] || {}
ep.experts.forEach(expert =>
experts += `<div class="expert">
<div class="flex-row">
<a href="${getExpertURL(expert)}">
${expert.name}
(${guestFrequency[expert.name]} ${guestFrequency[expert.name] === 1 ? 'episode' : 'episodes'})
</a>
</div>
<div>
<em>${expert.title}</em>
</div>
</div>
`
)
el.innerHTML = `
<div class="episode-title">
<h3>
${ep.topic}
</h3>
</div>
<div class="episode-about">
<div class="content-col">
<p>
${bbcDescriptions[ep.date + '_' + ep.topic]}
</p>
<div class="date">
${ep.date}
</div>
<p>
<a href="https://www.bbc.co.uk/sounds/play/${ep.episode_link.split('/').pop()}" target="_blank">
listen ↗
</a>
</p>
</div>
<div class="wiki-col">
${ep.wiki_link ? `
<div>
<a href="${ep.wiki_link}" target="_blank">
${thumbnails[ep.topic] ? `
<div>
<img src="${thumbnails[ep.topic]}" />
</div>
`
: ''
}
<div>
wikipedia article ↗
</div>
</a>
</div>
`
: ''
}
</div>
<div class="meta-col">
${experts}
</div>
</div>
<p class="categories">${getCategoriesHTML(ep.topic, categoriesByEpisode, topLevelCategoriesByEpisode, config)}</p>
${getRankingHTML(score)}
`;
document.body.querySelector('#episodes').append(el)
})
document.getElementById('count').innerText = `${filtered.length} ${filtered.length === 1 ? 'episode' : 'episodes'}`
document.getElementById('start-to-end').innerText = `${1 + state.start} to ${1 + state.end}`
}
function changePage(direction) {
if (direction === -1) {
state.start = Math.max(0, state.start - PAGE_SIZE);
state.end = Math.max(0, state.start + PAGE_SIZE - 1);
} else if (direction === 1) {
state.start = Math.min(episodes.length - 1, state.start + PAGE_SIZE);
state.end = Math.min(episodes.length - 1, state.start + PAGE_SIZE - 1);
} else if (direction === 'first') {
state.start = 0;
state.end = PAGE_SIZE - 1;
} else if (direction === 'last') {
state.start = Math.floor(episodes.length / PAGE_SIZE) * PAGE_SIZE
state.end = episodes.length - 1;
}
display()
}
function filter() {
state.scoredOnly = document.getElementById('scored-only').checked;
state.search = document.getElementById('search').value.toLowerCase();
state.sortBy = document.getElementById('sort-by').value;
state.start = 0;
state.end = PAGE_SIZE - 1;
display();
}
</script>
</head>
<body>
<main>
<div>
<div id="loading">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/2/28/Official_portrait_of_Lord_Bragg_crop_2.jpg/440px-Official_portrait_of_Lord_Bragg_crop_2.jpg"
alt="Portrait of Lord Melvyn Bragg, host of In Our Time" />
</div>
<header>
<div class="flex-row space-between">
<div class="flex-row space-between align-baseline">
<!-- <a href="/" class="header__home-icon" style="margin-right: 1.5rem;">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/2/28/Official_portrait_of_Lord_Bragg_crop_2.jpg/440px-Official_portrait_of_Lord_Bragg_crop_2.jpg"
alt="Portrait of Lord Melvyn Bragg, host of In Our Time">
</a> -->
<h1>
Hello,
</h1>
</div>
<div class="flex-row" style="gap: 2rem">
<a href="./world.html">world</a>
<!-- <a href="/guest/">all guests</a> -->
<a href='https://github.com/shelbywilson/melvyn' target="_blank">about</a>
</div>
</div>
<div class="filters flex-row justify-end">
<div class="flex-column">
<label class="mb-1">
<input id="scored-only" type="checkbox" />
scored only
</label>
<input class="mb-1" id="search" type="text" placeholder="search" spellcheck="false" />
<select id="sort-by" value="date" class="mb-1">
<option disabled>
sort by
</option>
<option value="date">
date
</option>
<option value="name">
name
</option>
<option value="score">
score
</option>
</select>
<div class="mb-1">
<button class="first-page" disabled="true" onclick="changePage('first')">⇤</button>
<button class="prev-page" disabled="true" onclick="changePage(-1)">←</button>
<button class="next-page" onclick="changePage(1)">→</button>
<button class="last-page" onclick="changePage('last')">⇥</button>
</div>
<div class="mb-1 flex-row space-between">
<span id="start-to-end">1 to 50</span>
<span id="count">1041 episodes</span>
</div>
</div>
</div>
</header>
<div id="episodes">
<div class="episode flex-column">
<div class="episode-title">
<h3>
The Haymarket Affair
</h3>
</div>
<div class="episode-about">
<div class="content-col">
<p>
Melvyn Bragg and guests discuss the bombing at a Chicago workers' rally in 1886 and the
trial, execution and subsequent pardoning of anarchists blamed for inciting the attack.
</p>
<div class="date">
3 October 2024
</div>
<p>
<a href="https://www.bbc.co.uk/sounds/play/m0023gm2" target="_blank">
listen ↗
</a>
</p>
</div>
<div class="wiki-col">
<div>
<a href="https://en.wikipedia.org/wiki/Haymarket_affair" target="_blank">
<div>
<img
src="//upload.wikimedia.org/wikipedia/commons/thumb/6/61/HaymarketRiot-Harpers.jpg/300px-HaymarketRiot-Harpers.jpg">
</div>
<div>
wikipedia article ↗
</div>
</a>
</div>
</div>
<div class="meta-col">
<div class="expert">
<div class="flex-row">
<a href="./guest/Ruth_Kinna.html">
Ruth Kinna
(3 episodes)
</a>
</div>
<div>
<em>Professor of Political Theory at Loughborough University</em>
</div>
</div>
<div class="expert">
<div class="flex-row">
<a href="./guest/Christopher_Phelps.html">
Christopher Phelps
(2 episodes)
</a>
</div>
<div>
<em>associate Professor of American Studies at the University of Nottingham</em>
</div>
</div>
<div class="expert">
<div class="flex-row">
<a href="./guest/Gary_Gerstle.html">
Gary Gerstle
(1 episode)
</a>
</div>
<div>
<em>Paul Mellon Professor of American History Emeritus at the University of
Cambridge.</em>
</div>
</div>
</div>
</div>
<p class="categories"><a href="./category/History.html">History</a><a
href="./category/History_of_socialism.html">History of socialism</a><a
href="./category/History_of_social_movements.html">History of social movements</a></p>
<div class="ranking">
<div class="flex-row">
<div>
</div>
<div class="ranking-label">
<em>no score yet</em>
</div>
</div>
</div>
</div>
<div class="episode flex-column">
<div class="episode-title">
<h3>
Wormholes
</h3>
</div>
<div class="episode-about">
<div class="content-col">
<p>
Melvyn Bragg and guests discuss the origins of the idea that there might be shortcuts
between galaxies and the challenges when proving these are not just unlikely but
impossible.
</p>
<div class="date">
26 September 2024
</div>
<p>
<a href="https://www.bbc.co.uk/sounds/play/m00237yt" target="_blank">
listen ↗
</a>
</p>
</div>
<div class="wiki-col">
<div>
<a href="https://en.wikipedia.org/wiki/Wormhole" target="_blank">
<div>
<img
src="//upload.wikimedia.org/wikipedia/commons/thumb/6/63/Spacetime_lattice_analogy.svg/220px-Spacetime_lattice_analogy.svg.png">
</div>
<div>
wikipedia article ↗
</div>
</a>
</div>
</div>
<div class="meta-col">
<div class="expert">
<div class="flex-row">
<a href="./guest/Toby_Wiseman.html">
Toby Wiseman
(1 episode)
</a>
</div>
<div>
<em>Professor of Theoretical Physics at Imperial College London</em>
</div>
</div>
<div class="expert">
<div class="flex-row">
<a href="./guest/Katy_Clough.html">
Katy Clough
(1 episode)
</a>
</div>
<div>
<em>Senior Lecturer in Mathematics at Queen Mary, University of London</em>
</div>
</div>
<div class="expert">
<div class="flex-row">
<a href="./guest/Andrew_Pontzen.html">
Andrew Pontzen
(1 episode)
</a>
</div>
<div>
<em>Professor of Cosmology at Durham University.</em>
</div>
</div>
</div>
</div>
<p class="categories"><a href="./category/Science.html">Science</a><a
href="./category/Exotic_matter.html">Exotic matter</a><a
href="./category/Albert_Einstein.html">Albert Einstein</a><a
href="./category/Black_holes.html">Black holes</a><a
href="./category/General_relativity.html">General relativity</a><a
href="./category/Theory_of_relativity.html">Theory of relativity</a><a
href="./category/Conjectures.html">Conjectures</a><a
href="./category/Hypothetical_astronomical_objects,_Astronomical_hypotheses.html">Hypothetical
astronomical objects, Astronomical hypotheses</a></p>
<div class="ranking">
<div class="flex-row">
<div>
</div>
<div class="ranking-label">
<em>no score yet</em>
</div>
</div>
</div>
</div>
<div class="episode flex-column">
<div class="episode-title">
<h3>
Benjamin Disraeli
</h3>
</div>
<div class="episode-about">
<div class="content-col">
<p>
Melvyn Bragg and guests discuss one of the most famous politicians of the Victorian age,
who broadened his fame and spread his ideas through popular novels.
</p>
<div class="date">
19 September 2024
</div>
<p>
<a href="https://www.bbc.co.uk/sounds/play/m0022z8v" target="_blank">
listen ↗
</a>
</p>
</div>
<div class="wiki-col">
<div>
<a href="https://en.wikipedia.org/wiki/Benjamin_Disraeli" target="_blank">
<div>
<img
src="//upload.wikimedia.org/wikipedia/commons/thumb/0/0c/Benjamin_Disraeli_by_Cornelius_Jabez_Hughes%2C_1878.jpg/220px-Benjamin_Disraeli_by_Cornelius_Jabez_Hughes%2C_1878.jpg">
</div>
<div>
wikipedia article ↗
</div>
</a>
</div>
</div>
<div class="meta-col">
<div class="expert">
<div class="flex-row">
<a href="./guest/Lawrence_Goldman.html">
Lawrence Goldman
(10 episodes)
</a>
</div>
<div>
<em>Emeritus Fellow in History at St Peter's College, University of Oxford</em>
</div>
</div>
<div class="expert">
<div class="flex-row">
<a href="./guest/Emily_Jones.html">
Emily Jones
(1 episode)
</a>
</div>
<div>
<em>Lecturer in Modern British History at the University of Manchester</em>
</div>
</div>
<div class="expert">
<div class="flex-row">
<a href="./guest/Daisy_Hay.html">
Daisy Hay
(1 episode)
</a>
</div>
<div>
<em>Professor of English Literature and Life Writing at the University of
Exeter.</em>
</div>
</div>
</div>
</div>
<p class="categories"><a href="./category/History.html">History</a><a
href="./category/Fellows_of_the_Royal_Society.html">Fellows of the Royal Society</a><a
href="./category/English_Anglicans.html">English Anglicans</a><a
href="./category/19th-century_English_poets.html">19th-century English poets</a><a
href="./category/English_male_novelists.html">English male novelists</a><a
href="./category/English_non-fiction_writers.html">English non-fiction writers</a><a
href="./category/Victorian_novelists.html">Victorian novelists</a><a
href="./category/19th-century_English_novelists.html">19th-century English novelists</a><a
href="./category/Victorian_era.html">Victorian era</a><a
href="./category/19th-century_Anglicans.html">19th-century Anglicans</a><a
href="./category/19th-century_English_dramatists_and_playwrights.html">19th-century English
dramatists and playwrights</a><a href="./category/Knights_of_the_Garter.html">Knights of the
Garter</a><a href="./category/Writers_from_the_London_Borough_of_Camden.html">Writers from
the London Borough of Camden</a><a
href="./category/19th-century_English_politicians.html">19th-century English
politicians</a><a href="./category/English_biographers.html">English biographers</a><a
href="./category/Lords_Privy_Seal.html">Lords Privy Seal</a><a
href="./category/Members_of_the_Privy_Council_of_the_United_Kingdom.html">Members of the
Privy Council of the United Kingdom</a><a
href="./category/People_of_the_Victorian_era.html">People of the Victorian era</a><a
href="./category/Rectors_of_the_University_of_Glasgow.html">Rectors of the University of
Glasgow</a><a href="./category/UK_MPs_1865–1868.html">UK MPs 1865–1868</a></p>
<div class="ranking">
<div class="flex-row">
<div>
</div>
<div class="ranking-label">
<em>no score yet</em>
</div>
</div>
</div>
</div>
<div class="episode flex-column">
<div class="episode-title">
<h3>
Bacteriophages
</h3>
</div>
<div class="episode-about">
<div class="content-col">
<p>
Melvyn Bragg and guests discuss how the growing understanding of the viruses that kill
bacteria is helping with the tracing of diseases and their potential cure.
</p>
<div class="date">
04 July 2024
</div>
<p>
<a href="https://www.bbc.co.uk/sounds/play/m0020pf0" target="_blank">
listen ↗
</a>
</p>
</div>
<div class="wiki-col">
<div>
<a href="https://en.wikipedia.org/wiki/Bacteriophage" target="_blank">
<div>
<img
src="//upload.wikimedia.org/wikipedia/commons/thumb/9/9a/T4_Bacteriophage.gif/220px-T4_Bacteriophage.gif">
</div>
<div>
wikipedia article ↗
</div>
</a>
</div>
</div>
<div class="meta-col">
<div class="expert">
<div class="flex-row">
<a href="./guest/Martha_Clokie.html">
Martha Clokie
(1 episode)
</a>
</div>
<div>
<em>Director for the Centre for Phage Research and Professor of Microbiology at the
University of Leicester</em>
</div>
</div>
<div class="expert">
<div class="flex-row">
<a href="./guest/James_Ebdon.html">
James Ebdon
(1 episode)
</a>
</div>
<div>
<em>Professor of Environmental Microbiology at the University of Brighton</em>
</div>
</div>
<div class="expert">
<div class="flex-row">
<a href="./guest/Claas_Kirchhelle.html">
Claas Kirchhelle
(1 episode)
</a>
</div>
<div>
<em>Historian and Chargé de Recherche at the French National Institute of Health and
Medical Research’s CERMES3 Unit in Paris.</em>
</div>
</div>
</div>
</div>
<p class="categories"><a href="./category/Science.html">Science</a></p>
<div class="ranking">
<div class="flex-row">
<div>
</div>
<div class="ranking-label">
<em>no score yet</em>
</div>
</div>
</div>
</div>
<div class="episode flex-column">
<div class="episode-title">
<h3>
Monet in England
</h3>
</div>
<div class="episode-about">
<div class="content-col">
<p>
Melvyn Bragg and guests discuss why the French impressionist Claude Monet painted the
foggy Thames in central London more often than water lilies, haystacks or Rouen
Cathedral.
</p>
<div class="date">
27 June 2024
</div>
<p>
<a href="https://www.bbc.co.uk/sounds/play/m0020j9z" target="_blank">
listen ↗
</a>
</p>
</div>
<div class="wiki-col">
<div>
<a href="https://en.wikipedia.org/wiki/Claude_Monet" target="_blank">
<div>
<img
src="//upload.wikimedia.org/wikipedia/commons/thumb/a/a4/Claude_Monet_1899_Nadar_crop.jpg/220px-Claude_Monet_1899_Nadar_crop.jpg">
</div>
<div>
wikipedia article ↗
</div>
</a>
</div>
</div>
<div class="meta-col">
<div class="expert">
<div class="flex-row">
<a href="./guest/Karen_Serres.html">
Karen Serres
(1 episode)
</a>
</div>
<div>
<em>Senior Curator of Paintings at the Courtauld Gallery, London</em>
</div>
</div>
<div class="expert">
<div class="flex-row">
<a href="./guest/Frances_Fowle.html">
Frances Fowle
(2 episodes)
</a>
</div>
<div>
<em>Professor of Nineteenth-Century Art at the University of Edinburgh and Senior
Curator of French Art at the National Galleries of Scotland</em>
</div>
</div>
<div class="expert">
<div class="flex-row">
<a href="./guest/Jackie_Wullschläger.html">
Jackie Wullschläger
(1 episode)
</a>
</div>
<div>
<em>Chief Art Critic for the Financial Times and author of Monet, The Restless
Vision</em>
</div>
</div>
</div>
</div>
<p class="categories"><a href="./category/Culture.html">Culture</a><a
href="./category/French_atheists.html">French atheists</a><a
href="./category/Legion_of_Honour_refusals.html">Legion of Honour refusals</a><a
href="./category/20th-century_male_artists.html">20th-century male artists</a><a
href="./category/French_Impressionist_painters,_19th-century_French_painters.html">French
Impressionist painters, 19th-century French painters</a></p>
<div class="ranking">
<div class="flex-row">
<div>
</div>
<div class="ranking-label">
<em>no score yet</em>
</div>
</div>
</div>
</div>
<div class="episode flex-column">
<div class="episode-title">
<h3>
Karma
</h3>
</div>
<div class="episode-about">
<div class="content-col">
<p>
Melvyn Bragg and guests discuss the development of the doctrine of Karma, broadly of
reaping what you sow, from the ancient Sanskrit texts of Hinduism down to today.
</p>
<div class="date">
20 June 2024
</div>
<p>
<a href="https://www.bbc.co.uk/sounds/play/m0020966" target="_blank">
listen ↗
</a>
</p>
</div>
<div class="wiki-col">
<div>
<a href="https://en.wikipedia.org/wiki/Karma" target="_blank">
<div>
<img
src="//upload.wikimedia.org/wikipedia/commons/thumb/1/14/EndlessKnot03d.png/140px-EndlessKnot03d.png">
</div>
<div>
wikipedia article ↗
</div>
</a>
</div>
</div>
<div class="meta-col">
<div class="expert">
<div class="flex-row">
<a href="./guest/Monima_Chadha.html">
Monima Chadha
(1 episode)
</a>
</div>
<div>
<em>Professor of Indian Philosophy and Tutorial Fellow at Lady Margaret Hall,
University of Oxford</em>
</div>
</div>
<div class="expert">
<div class="flex-row">
<a href="./guest/Jessica_Frazier.html">
Jessica Frazier
(9 episodes)
</a>
</div>
<div>
<em>Lecturer in the Study of Religion at the University of Oxford and a Fellow of
the Oxford Centre for Hindu Studies</em>
</div>
</div>
<div class="expert">
<div class="flex-row">
<a href="./guest/Karen_O’Brien-Kop.html">
Karen O’Brien-Kop
(1 episode)
</a>
</div>
<div>
<em>Lecturer in Asian Religions at King's College London</em>
</div>
</div>
</div>
</div>
<p class="categories"><a href="./category/Religion.html">Religion</a><a
href="./category/Spirituality.html">Spirituality</a><a
href="./category/Hindu_philosophical_concepts.html">Hindu philosophical concepts</a></p>
<div class="ranking">
<div class="flex-row">
<div>
</div>
<div class="ranking-label">
<em>no score yet</em>
</div>
</div>
</div>
</div>
<div class="episode flex-column">
<div class="episode-title">
<h3>
Fielding's Tom Jones
</h3>
</div>
<div class="episode-about">
<div class="content-col">
<p>
Melvyn Bragg and guests discuss Henry Fielding's influential comic novel in which the
hero Jones has such a fundamentally good nature that even his critics forgive his
faults.
</p>
<div class="date">
13 June 2024
</div>
<p>
<a href="https://www.bbc.co.uk/sounds/play/m00202lf" target="_blank">
listen ↗
</a>
</p>
</div>
<div class="wiki-col">
<div>
<a href="https://en.wikipedia.org/wiki/The_History_of_Tom_Jones,_a_Foundling"
target="_blank">
<div>
<img
src="//upload.wikimedia.org/wikipedia/commons/thumb/a/a1/TomJonesTitle.png/220px-TomJonesTitle.png">
</div>
<div>
wikipedia article ↗
</div>
</a>
</div>
</div>
<div class="meta-col">
<div class="expert">
<div class="flex-row">
<a href="./guest/Judith_Hawley.html">
Judith Hawley
(14 episodes)
</a>
</div>
<div>
<em>Professor of 18th Century Literature at Royal Holloway, University of
London</em>
</div>
</div>
<div class="expert">
<div class="flex-row">
<a href="./guest/Henry_Power.html">
Henry Power
(1 episode)
</a>
</div>
<div>
<em>Professor of English Literature at the University of Exeter</em>
</div>
</div>
<div class="expert">
<div class="flex-row">
<a href="./guest/Charlotte_Roberts.html">
Charlotte Roberts
(2 episodes)
</a>
</div>
<div>
<em>Associate Professor of English Literature at University College London</em>
</div>
</div>
</div>
</div>
<p class="categories"><a href="./category/Culture.html">Culture</a><a
href="./category/British_novels_adapted_into_films.html">British novels adapted into
films</a><a href="./category/British_novels_adapted_into_plays.html">British novels adapted
into plays</a><a href="./category/Novels_adapted_into_operas.html">Novels adapted into
operas</a><a href="./category/English_novels.html">English novels</a><a
href="./category/Picaresque_novels.html">Picaresque novels</a><a
href="./category/18th-century_British_novels.html">18th-century British novels</a></p>
<div class="ranking">
<div class="flex-row">
<div>
</div>
<div class="ranking-label">
<em>no score yet</em>
</div>
</div>
</div>
</div>
<div class="episode flex-column">
<div class="episode-title">
<h3>
The Orkneyinga Saga
</h3>
</div>
<div class="episode-about">
<div class="content-col">
<p>
Melvyn Bragg and guests discuss the myth and history in the Saga of the Earls of Orkney
as they fought to control some of the most strategically important islands around
Britain.
</p>
<div class="date">
06 June 2024
</div>
<p>
<a href="https://www.bbc.co.uk/sounds/play/m001zvvp" target="_blank">
listen ↗
</a>
</p>
</div>
<div class="wiki-col">
<div>
<a href="https://en.wikipedia.org/wiki/Orkneyinga_saga" target="_blank">
<div>
<img
src="//upload.wikimedia.org/wikipedia/commons/thumb/6/6a/Flatey_Book%2C_Orkneyinga_saga.jpg/220px-Flatey_Book%2C_Orkneyinga_saga.jpg">
</div>
<div>
wikipedia article ↗
</div>
</a>
</div>