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: [ { "na…
(btw thanks for datasette. I use SQLite as an intermediary db and datasette was invaluable for exploring and refining queries.)