I wanted to see which speakers had been on the most episodes.
I went to https://genmon.github.io/braggoscope/guests and opened the Firefox DevTools console and ran this:
guests = Array.from(document.querySelectorAll('ul a.text-blue-500.underline')).map(el => ({
name: el.innerText, count: parseInt(el.nextElementSibling.textContent.slice(1, -1), 10)
}))
Then this:
guests.sort((a, b) => a.count
The top few were:
[
{
"name": "Simon Schaffer",
"count": 24
},
{
"name": "Angie Hobbs",
"count": 23
},
{
"name": "Martin Palmer",
"count": 22
},
{
"name": "Steve Jones",
"count": 21
},
{
"name": "Paul Cartledge",
"count": 20
}