{
 "cells": [
  {
   "cell_type": "markdown",
   "id": "c10537ac",
   "metadata": {},
   "source": [
    "## Get data"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 1,
   "id": "16804bbe",
   "metadata": {},
   "outputs": [],
   "source": [
    "import os\n",
    "import re\n",
    "import time\n",
    "import random\n",
    "import json\n",
    "import tqdm\n",
    "import requests\n",
    "import tempfile\n",
    "import funcy\n",
    "import numpy as np\n",
    "import multiprocessing\n",
    "from contextlib import redirect_stderr, redirect_stdout, contextmanager\n",
    "import signal\n",
    "import pandas as pd\n",
    "\n",
    "\n",
    "def _courtesy_sleep(avg_sleep_dur_s=0.5):\n",
    "    time.sleep((0.5 + random.random() / 2) * avg_sleep_dur_s)\n",
    "\n",
    "\n",
    "class TimeoutException(Exception): \n",
    "    pass\n",
    "\n",
    "\n",
    "@contextmanager\n",
    "def time_limit(seconds):\n",
    "    seconds = int(round(seconds))\n",
    "    def signal_handler(signum, frame):\n",
    "        raise TimeoutException(\"Function call timed out!\")\n",
    "    signal.signal(signal.SIGALRM, signal_handler)\n",
    "    signal.alarm(seconds)\n",
    "    try:\n",
    "        yield\n",
    "    finally:\n",
    "        signal.alarm(0)\n",
    "        \n",
    "    \n",
    "class Logger():\n",
    "    def __init__(self, filepath):\n",
    "        self._filepath = filepath\n",
    "        self._reset_log()\n",
    "        \n",
    "    def _reset_log(self):\n",
    "        with open(self._filepath, \"w\") as f:\n",
    "            f.write(\"\")\n",
    "        \n",
    "    def _add_line(self, line):\n",
    "        with open(self._filepath, \"a\") as f:\n",
    "            f.write(line + \"\\n\")\n",
    "\n",
    "def _parse_duration(s):\n",
    "    if s is None:\n",
    "        return 0\n",
    "    parts = s.split(\":\")\n",
    "    if len(parts) == 3:\n",
    "        nh, nm, ns = parts\n",
    "    elif len(parts) == 2:\n",
    "        nm, ns = parts\n",
    "        nh = 0\n",
    "    else:\n",
    "        raise ValueError(\"\")\n",
    "    return int(nh) * 60**2 + int(nm) * 60 + int(ns)\n",
    "    \n",
    "\n",
    "def mp_scrape(\n",
    "    extract_f, \n",
    "    queue_items, \n",
    "    global_info=None,\n",
    "    result_filepath=None, \n",
    "    log_filepath=None, \n",
    "    n_cores=5, \n",
    "    chunksize=500, \n",
    "    n_retries=3,\n",
    "    append_results=False,\n",
    "    backoff_dur_s=1.0,\n",
    "    inner_chunksize=1, \n",
    "    quiet=False,\n",
    "):\n",
    "    if global_info is not None:\n",
    "        _f = funcy.partial(extract_f, global_info=global_info)\n",
    "    else:\n",
    "        _f = extract_f\n",
    "    if result_filepath is not None and not append_results:\n",
    "        with open(result_filepath, \"w\") as f:\n",
    "            f.write(\"\")\n",
    "    if log_filepath is not None:\n",
    "        logger = Logger(log_filepath)\n",
    "    out = []\n",
    "    n_chunks = int(np.ceil(len(queue_items) / chunksize))\n",
    "    for n_chunk, queue_items_chunk in tqdm.tqdm(\n",
    "        enumerate(funcy.chunks(chunksize, queue_items)), \n",
    "        total=n_chunks,\n",
    "        disable=quiet,\n",
    "    ):\n",
    "        p = multiprocessing.Pool(n_cores)\n",
    "        t0 = time.time()\n",
    "        remaining_items = [(idx, queue_item) for idx, queue_item in enumerate(queue_items_chunk)]\n",
    "        out_chunk = [None] * len(queue_items_chunk)\n",
    "        for n_retry in range(n_retries):\n",
    "            tmp_out = p.map(_f, [queue_item for _, queue_item in remaining_items], chunksize=inner_chunksize)\n",
    "            _courtesy_sleep(avg_sleep_dur_s=backoff_dur_s)\n",
    "            tmp_remaining_items = []\n",
    "            for (idx, queue_item), tmp_out_item in zip(remaining_items, tmp_out):\n",
    "                out_chunk[idx] = tmp_out_item\n",
    "                if (\n",
    "                    isinstance(tmp_out_item, dict) and (\n",
    "                        (tmp_out_item.get(\"retry\")) == True or \n",
    "                        (\"retry\" not in tmp_out_item and tmp_out_item.get(\"success\") == False)\n",
    "                    )\n",
    "                ):\n",
    "                    tmp_remaining_items.append((idx, queue_item))\n",
    "                    continue\n",
    "            remaining_items = tmp_remaining_items\n",
    "            if len(remaining_items) == 0:\n",
    "                break\n",
    "            if n_retry < n_retries - 1:\n",
    "                logger._add_line(f\"  retrying for {len(remaining_items)}/{len(out_chunk)} items\")\n",
    "            \n",
    "        # show how many failed\n",
    "        n_failed = len([\n",
    "            e for e in out_chunk if e is None or (isinstance(e, dict) and e.get(\"success\") == False)\n",
    "        ])\n",
    "        logger._add_line(f\"  failed on {n_failed}/{len(out_chunk)} items\")\n",
    "            \n",
    "        # break if none were successful\n",
    "        if all([e is None or (isinstance(e, dict) and e.get(\"success\") == False) for e in out_chunk]):\n",
    "            logger._add_line(f\"{len(out_chunk)}/{len(out_chunk)} items failed, aborting.\")\n",
    "            \n",
    "        if result_filepath is not None:\n",
    "            with open(result_filepath, \"a\") as f:\n",
    "                for e in out_chunk:\n",
    "                    f.write(json.dumps(e) + \"\\n\")\n",
    "        else:\n",
    "            out.extend(out_chunk)\n",
    "        td = time.time() - t0\n",
    "        if log_filepath is not None:\n",
    "            logger._add_line(f\"{n_chunk+1}/{n_chunks} - last step took {round(td / 60, 1)} mins\")\n",
    "        p.close()\n",
    "        p.join()\n",
    "    logger._add_line(f\"done!\")\n",
    "    if result_filepath is not None:\n",
    "        return None\n",
    "    return out\n",
    "\n",
    "US_PROXY = (\n",
    "     \"http://brd-customer-hl_98887cab-zone-us_proxy-route_err-block-country-us:\" +\n",
    "     \"3if5he8elfe7@zproxy.lum-superproxy.io:22225\"\n",
    ")\n",
    "\n",
    "DATA_DIR = \"/home/georg/notebooks/web_harvest/harvest/podcasts/data\"\n",
    "LOGS_DIR = os.path.join(DATA_DIR, \"logs\")\n",
    "\n",
    "os.makedirs(DATA_DIR, exist_ok=True)\n",
    "os.makedirs(LOGS_DIR, exist_ok=True)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 2,
   "id": "fa5a4ae0",
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "418467 podcasts found.\n"
     ]
    }
   ],
   "source": [
    "from suno_utils.utils.podcasts import load_podcast_db\n",
    "# !wget https://public.podcastindex.org/podcastindex_feeds.db.tgz\n",
    "df = load_podcast_db(\"podcastindex_feeds.db\", english_only=True, anchor_only=True)\n",
    "df = df[\n",
    "    (df[\"last_http_status\"] == 200) &\n",
    "    ~df[\"dead\"] &\n",
    "    (df[\"episode_count\"] >= 5)\n",
    "].reset_index(drop=True)\n",
    "assert(df[\"uid\"].nunique() == df.shape[0])\n",
    "work_items = list(zip(df[\"uid\"], df[\"url\"]))\n",
    "print(len(work_items), \"podcasts found.\")\n",
    "# avg episode is ~30mins\n",
    "# 420k podcasts with 5 eps, and 95% success rate ~1M hours"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 26,
   "id": "3138eecd",
   "metadata": {},
   "outputs": [],
   "source": [
    "import boto3\n",
    "from suno_utils.utils.podcasts import load_rss_feed\n",
    "from suno_utils.web.harvest import get_file_ext, get_filename\n",
    "\n",
    "S3_BUCKET = \"suno-data\"\n",
    "S3_DIR = \"datasets/harvest/podcasts\"\n",
    "\n",
    "REQUESTS_PROXY = {\"http\": US_PROXY, \"https\": US_PROXY}\n",
    "MAX_DOWNLOAD_TIME_S = 60\n",
    "N_EPISODES = 5\n",
    "RSS_FILENAME = \"rss_feed.bin\"\n",
    "\n",
    "def _collect_podcast_episodes(work_item):\n",
    "    podcast_uid, rss_url = work_item\n",
    "    out_data = {\n",
    "        \"id\": podcast_uid,\n",
    "        \"rss_url\": rss_url,\n",
    "    }\n",
    "    t0 = time.time()\n",
    "    try:\n",
    "        s3_bucket = boto3.resource(\"s3\").Bucket(S3_BUCKET)\n",
    "        existing_filenames = set()\n",
    "        for e in s3_bucket.objects.filter(Prefix=f\"datasets/harvest/podcasts/audio/{podcast_uid}/\", Delimiter=\"/\"):\n",
    "            filename = get_filename(e.key, keep_extension=True)\n",
    "            if filename != RSS_FILENAME:\n",
    "                existing_filenames.add(filename)\n",
    "        if len(existing_filenames) >= N_EPISODES:\n",
    "            audio_filenames = list(existing_filenames)\n",
    "        else:\n",
    "            s3_podcast_dir = os.path.join(S3_DIR, f\"audio/{podcast_uid}\")\n",
    "            with tempfile.TemporaryDirectory() as tmp_dir:\n",
    "                # collect rss feed\n",
    "                r = requests.get(rss_url, proxies=REQUESTS_PROXY, timeout=5)\n",
    "                if r.status_code != 200:\n",
    "                    raise ValueError(\"rss feed download failed\")\n",
    "                rss_filepath = os.path.join(tmp_dir, RSS_FILENAME)\n",
    "                with open(rss_filepath, \"wb\") as f:\n",
    "                    f.write(r.content)\n",
    "                to_fp = os.path.join(s3_podcast_dir, RSS_FILENAME)\n",
    "                s3_bucket.upload_file(rss_filepath, to_fp)\n",
    "                # collect episodes\n",
    "                feed_data = load_rss_feed(rss_filepath)\n",
    "                episode_metas = feed_data.get(\"episodes\", [])\n",
    "                random.shuffle(episode_metas)\n",
    "                audio_filenames = list(existing_filenames)\n",
    "                for episode_meta in episode_metas[:N_EPISODES]:\n",
    "                    if len(audio_filenames) >= N_EPISODES:\n",
    "                        break\n",
    "                    episode_uid = episode_meta[\"uid\"]\n",
    "                    audio_ext = get_file_ext(episode_meta[\"audio_url\"])\n",
    "                    audio_filename = f\"{episode_uid}.{audio_ext}\"\n",
    "                    if audio_filename in existing_filenames:\n",
    "                        continue\n",
    "                    # check if exists on s3\n",
    "                    if audio_filename in existing_filenames:\n",
    "                        audio_filenames.append(audio_filename)\n",
    "                        continue\n",
    "                    # download\n",
    "                    if MAX_DOWNLOAD_TIME_S is not None:\n",
    "                        with time_limit(MAX_DOWNLOAD_TIME_S):\n",
    "                            r = requests.get(episode_meta[\"audio_url\"], proxies=REQUESTS_PROXY, timeout=5)\n",
    "                    else:\n",
    "                        r = requests.get(episode_meta[\"audio_url\"], proxies=REQUESTS_PROXY, timeout=5)\n",
    "                    if r.status_code != 200:\n",
    "                        raise ValueError(\"audio download failed\")\n",
    "                    audio_filepath = os.path.join(tmp_dir, audio_filename)\n",
    "                    with open(audio_filepath, \"wb\") as f:\n",
    "                        f.write(r.content)\n",
    "                    to_fp = os.path.join(s3_podcast_dir, f\"{audio_filename}\")\n",
    "                    s3_bucket.upload_file(audio_filepath, to_fp)\n",
    "                    audio_filenames.append(audio_filename)\n",
    "        out_data[\"success\"] = True\n",
    "        out_data[\"retry\"] = False\n",
    "        out_data[\"meta\"] = {\"audio_filenames\": audio_filenames}\n",
    "    except Exception as e:\n",
    "        out_data[\"success\"] = False\n",
    "        out_data[\"retry\"] = True  #(\"ValueError\" not in str(type(e)))\n",
    "        out_data[\"fail_type\"] = str(type(e))\n",
    "        out_data[\"fail_message\"] = str(e)\n",
    "    t1 = time.time()\n",
    "    out_data[\"runtime_s\"] = round(t1 - t0, 1)\n",
    "    return out_data"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 4,
   "id": "edb937ec",
   "metadata": {},
   "outputs": [],
   "source": [
    "# wc -l /home/georg/notebooks/web_harvest/harvest/podcasts/data/01_harvest.jsonl\n",
    "# tail -f /home/georg/notebooks/web_harvest/harvest/podcasts/data/logs/01_harvest.log"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 5,
   "id": "948f4790",
   "metadata": {},
   "outputs": [],
   "source": [
    "# out = _collect_podcast_episodes(work_items[0])"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "id": "b3ce200b",
   "metadata": {},
   "outputs": [],
   "source": [
    "# 420k podcasts with 5 eps, and 95% success rate ~1M hours"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "id": "43c505d3",
   "metadata": {},
   "outputs": [
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "  0%|▋                                                                                                                                                      | 2/419 [11:45<45:50:45, 395.79s/it]"
     ]
    }
   ],
   "source": [
    "# (~10mins for 1_000 podcasts, ~3 days for 420k ~1M hours of audio, ~75Tb\n",
    "# bright data limit with 100 servers is 10 Tb per month\n",
    "# started Jan 18th, 3:30pm\n",
    "random.seed(6006)\n",
    "_ = mp_scrape(\n",
    "    _collect_podcast_episodes, \n",
    "    work_items,\n",
    "    chunksize=1000,\n",
    "    n_cores=100,\n",
    "    n_retries=3,\n",
    "#     append_results=True,\n",
    "    result_filepath=os.path.join(DATA_DIR, \"01_harvest.jsonl\"),\n",
    "    log_filepath=os.path.join(LOGS_DIR, \"01_harvest.log\"),\n",
    ")"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 45,
   "id": "03e901b2",
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "161M\t/home/georg/notebooks/web_harvest/harvest/podcasts/data/01_harvest.jsonl\r\n"
     ]
    }
   ],
   "source": [
    "!du -hs /home/georg/notebooks/web_harvest/harvest/podcasts/data/01_harvest.jsonl"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "id": "f55c83f8",
   "metadata": {},
   "outputs": [],
   "source": []
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "id": "88afef69",
   "metadata": {},
   "outputs": [],
   "source": []
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "id": "495fe8c3",
   "metadata": {},
   "outputs": [],
   "source": []
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "id": "78c9ca42",
   "metadata": {},
   "outputs": [],
   "source": []
  },
  {
   "cell_type": "markdown",
   "id": "50cdabd2",
   "metadata": {},
   "source": [
    "## Playground"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 1,
   "id": "26a0115e",
   "metadata": {},
   "outputs": [],
   "source": [
    "from suno_utils.utils.podcasts import load_podcast_db, load_rss_feed\n",
    "from suno_utils.web.harvest import get_file_ext, get_url"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 4,
   "id": "7e027320",
   "metadata": {},
   "outputs": [],
   "source": [
    "import requests\n",
    "r = requests.get(df.iloc[0][\"url\"])"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 5,
   "id": "84f48640",
   "metadata": {},
   "outputs": [],
   "source": [
    "\n",
    "with open(\"tmp/test.feed\", \"wb\") as f:\n",
    "    f.write(r.content)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 6,
   "id": "9db8e1fe",
   "metadata": {},
   "outputs": [],
   "source": [
    "feed_data = load_rss_feed(\"tmp/test.feed\")"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 7,
   "id": "81f3c300",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "{'uid': 'test',\n",
       " 'language': 'en',\n",
       " 'title': 'Rahdo Talks Through',\n",
       " 'subtitle': 'A podcast all about boardgames, hosted by Richard \"Rahdo\" Ham',\n",
       " 'summary': 'A podcast all about boardgames, hosted by Richard \"Rahdo\" Ham',\n",
       " 'description': 'A podcast all about boardgames, hosted by Richard \"Rahdo\" Ham',\n",
       " 'url': 'https://patreon.com/rahdo',\n",
       " 'url_main': 'https://anchor.fm/s/19ccb320/podcast/rss',\n",
       " 'author': 'Richard Ham',\n",
       " 'author_email': 'podcast@rahdo.com',\n",
       " 'rights': 'Richard Ham',\n",
       " 'published': None,\n",
       " 'updated': '1/18/2023',\n",
       " 'tags': 'leisure;games',\n",
       " 'episodes': [{'uid': 'ebe1746e-ef00-563e-b731-73e67ac4ed73',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO8646371601.mp3',\n",
       "   'title': 'Rahdo Ranks His Collection, episode 2',\n",
       "   'subtitle': None,\n",
       "   'summary': 'The first episode of this proved to be pretty popular, lets see how folks feel about more rapid fire A-B ranking of my collection in episode 2! :)',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Rahdo-Ranks-His-Collection--episode-2-e1tkpje',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 2584,\n",
       "   'published': '1/18/2023'},\n",
       "  {'uid': '5351389d-c352-544f-89d2-d1be113db1c9',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO3125371687.mp3',\n",
       "   'title': \"Grant's Greatest Games of December\",\n",
       "   'subtitle': None,\n",
       "   'summary': \"here's the audio version of grant's latest 5 game countdown, including 2 games that you never would have heard about on the channel otherwise :)\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Grants-Greatest-Games-of-December-e1t5k2r',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 1029,\n",
       "   'published': '1/6/2023'},\n",
       "  {'uid': '115f4587-0316-5f20-9c60-9ce0dd59700f',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO3415599872.mp3',\n",
       "   'title': 'Rahdo Rounds Up►►► December 2022 (33 games in 75 minutes)',\n",
       "   'subtitle': None,\n",
       "   'summary': 'A whole lot of games were played in december so get comfortable, this is a long one but a fun one! :)',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Rahdo-Rounds-Up-December-2022-33-games-in-75-minutes-e1t4eqv',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 4931,\n",
       "   'published': '1/5/2023'},\n",
       "  {'uid': '9f641c21-9f8d-56c2-8a0b-5767f148d0a7',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO7205442455.mp3',\n",
       "   'title': 'Rahdo Ranks His Collection, episode 1',\n",
       "   'subtitle': None,\n",
       "   'summary': 'Hey everybody, a new year calls for a new series. Hope you enjoy! :)',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Rahdo-Ranks-His-Collection--episode-1-e1t4eni',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 2642,\n",
       "   'published': '1/5/2023'},\n",
       "  {'uid': '02970a3a-533d-5e23-9f9b-d7bfe9aea304',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO3589411727.mp3',\n",
       "   'title': 'Crowd Sorcery #15',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Here's the audio version of todays crowd sorcery where i find 5 games of note ending the campaigns very soon! :)\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Crowd-Sorcery-15-e1t0dsf',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 672,\n",
       "   'published': '1/2/2023'},\n",
       "  {'uid': '689d4c5c-a1ef-57af-bf9e-d3d9545c703d',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO7484329032.mp3',\n",
       "   'title': 'Top 25 Anticipated Games of 2023',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Hey everybody, here's my yearly anticipated games for the new year, to help you to ring in the new year. I'm joined by all the contributors and hopefully we'll point out a game or two that might catch your ear! :)\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Top-25-Anticipated-Games-of-2023-e1suqci',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 4804,\n",
       "   'published': '1/1/2023'},\n",
       "  {'uid': '86100624-7b81-5e1c-8927-c4be22aba914',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO2872091714.mp3',\n",
       "   'title': 'The R&R Show EXTENDED EDITION',\n",
       "   'subtitle': None,\n",
       "   'summary': 'It was nice to get back together with Ruel to talk about holiday goings on and lots of games games games! :)',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-EXTENDED-EDITION-e1spobp',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 7122,\n",
       "   'published': '12/28/2022'},\n",
       "  {'uid': '161f9308-da10-51f5-9ec5-04a91d0a97d2',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO3080934324.mp3',\n",
       "   'title': 'The R&R Show #57',\n",
       "   'subtitle': None,\n",
       "   'summary': \"It's the last show of the year, and we had a good old time bringing it to you. GOOD AFTERNOON! :)\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-57-e1spo5o',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 2348,\n",
       "   'published': '12/28/2022'},\n",
       "  {'uid': 'add00a37-e091-51f6-8ea1-d36ea0cf4d3c',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO9814395644.mp3',\n",
       "   'title': \"The 2022 #44-#11 best games, '22 Wishlist, Q&A and more!\",\n",
       "   'subtitle': None,\n",
       "   'summary': \"Okay, after you're done with the top10, check this out for the next 34 games of the year ranked, plus a list of the games yet to be played, a big unboxing and lots of Q&A! :)\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-2022-44-11-best-games--22-Wishlist--QA-and-more-e1smmmi',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 8300,\n",
       "   'published': '12/25/2022'},\n",
       "  {'uid': '141a9727-4b30-561a-96fb-a95d06f865af',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO2310615563.mp3',\n",
       "   'title': 'Top 10 of 2022 Preliminary Edition',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Hey everybody, here's my first pass top10 for the year, and I'm joined by everyone else so they can list their faves as well! :)\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Top-10-of-2022-Preliminary-Edition-e1smml2',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 3834,\n",
       "   'published': '12/25/2022'},\n",
       "  {'uid': '4ffabbe9-4a3f-5804-9bb1-526775f0918f',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO3692471821.mp3',\n",
       "   'title': 'The R&R Show #56 EXTENDED EDITION',\n",
       "   'subtitle': None,\n",
       "   'summary': 'It was a fun experience hitting some of the favourite segments of the show with someone new, so enjoy the extra hour+ of boardgame chat in this very special R&R episode!) :)',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-56-EXTENDED-EDITION-e1shfrh',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 8078,\n",
       "   'published': '12/21/2022'},\n",
       "  {'uid': '446ae94a-235d-58b2-97ba-a00ee76b8271',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO9466112445.mp3',\n",
       "   'title': 'The R&R Show #56 - Top 10 Crowdfunding Games of 2022',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Hey everybody, Ruel couldn't make it for the live stream of this one, so we've got the awesome Chris George of the youtube channel RoomAndBoardReviews to sit in, and we had a great time talking about crowdfunding games! :)\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-56---Top-10-Crowdfunding-Games-of-2022-e1shg9o',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 3420,\n",
       "   'published': '12/21/2022'},\n",
       "  {'uid': 'a98a054e-f268-527b-ab25-828ea39ad8d4',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO4920984743.mp3',\n",
       "   'title': 'Crowd Sorcery #14',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Hey everybody, here's the final Crowd Sorcery for the year, where I talk about some of Jenefer Ham Glass's work in addition to the normal fare, so you won't want to miss this end of the year finale (especially since the show will be going through some changes in the new year!) :)\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Crowd-Sorcery-14-e1sh15p',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 699,\n",
       "   'published': '12/20/2022'},\n",
       "  {'uid': '7bded631-3909-5e02-97d0-6c7985ef961f',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO1999341616.mp3',\n",
       "   'title': 'Rahdo Talks Through►►► Episode 91',\n",
       "   'subtitle': None,\n",
       "   'summary': 'Sponsored by https://www.elfcreekgames.com/discount/RAHDO 🙂 And now... Use promo code RAHDO for 10% off all Elf Creek Games purchases until Dec 31st! Please submit questions for the podcast to questions@rahdo.com :) •••[] Games Q&A►►► 13:07 Contributor impact? 18:31 Trajan vs Praga Caput Regni? 20:46 Res Arcana vs Mottaini? 22:06 Agricoal vs Everdell? 23:28 Isle of Cats vs Cartographers? 25:01 London vs Wingspan? 27:04 Christmas boardgames 30:44 Ultimate gameday game? 32:29 My proudest runthrough? 36:35 When to submit to questions@rahdo.com 37:37 Shake That City vs Tiny Towns? 39:29 First expansion to get for Marvel Champsions? 49:06 Playing MC with a 7 year old MCU fan? 51:30 Cloud Age gameplay? 54:52 Cloud Age vs Maracaibo? 57:48 Finding BGG categories? 1:01:01 Unexpected releases? 1:05:28 Boardgame media oversaturated? 1:08:28 Getting started now in boardgame media? 1:11:41 Too much game narrative? 1:14:17 Future of solo boardgaming? 1:17:35 One long game or fewer short games? 1:18:38 Essen Spiel advice? 1:30:36 Upping complexity in games with non-gamer spouse? •••[] Personal Q&A►►► 1:35:55 Star Wars Andor thoughts? 1:40:17 Top entertainment of the year? 1:52:03 Problematic creators? 1:55:25 Jen’s proudest art piece? 1:56:23 Triathalon preference? 1:58:30 Succession? 1:59:15 Jordan Peele movies? 2:00:42 Point & click adventures? 2:01:33 Jen’s words of wisdom? 2:02:51 Doggo! 2:04:48 Andor Spoilers!!!',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Rahdo-Talks-Through-Episode-91-e1sc4kb',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 8286,\n",
       "   'published': '12/16/2022'},\n",
       "  {'uid': '12b5f323-8e70-550f-a850-131ce5bcda35',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO5430735424.mp3',\n",
       "   'title': 'The R&R Show #55 EXTENDED EDITION',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Okay folks, we've got a new top 3, a new ruel ranks, some Q&A and MORE in this extended episode of the latest R&R! :)\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-55-EXTENDED-EDITION-e1s7bu7',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 7803,\n",
       "   'published': '12/13/2022'},\n",
       "  {'uid': '43928e02-e724-53ef-b892-1b9836eb3bf8',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO8392416480.mp3',\n",
       "   'title': 'The R&R Show #55 - Top 10 Hidden Gems',\n",
       "   'subtitle': None,\n",
       "   'summary': 'Ruel and I are back talking about the 10 best \"hidden gem\" games of 2022, and ruel definitely surprised me a few times, and i had a few tricks up my sleeve as well! :)',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-55---Top-10-Hidden-Gems-e1s7bko',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 2360,\n",
       "   'published': '12/13/2022'},\n",
       "  {'uid': '29acf4cb-f817-5d32-b54b-3739cdfcfd6b',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO4730437775.mp3',\n",
       "   'title': 'Crowd Sorcery #13',\n",
       "   'subtitle': None,\n",
       "   'summary': \"OOPS! sorry i meant to upload this on Tuesday but forgot, so sorry to say the first 3 games i mention closed their campaigns on the 9th! (but there's always late pledging options)\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Crowd-Sorcery-13-e1s25rg',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 1279,\n",
       "   'published': '12/10/2022'},\n",
       "  {'uid': '6f9ea19e-58d4-52ea-89d2-d03f4d6f2a94',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO1146589328.mp3',\n",
       "   'title': \"Grant's Greatest Games of November\",\n",
       "   'subtitle': None,\n",
       "   'summary': \"Man I just love Grant's monthly segment, as he's constantly exposing me to games I wouldn't otherwise know about. I genuinely feel like a more well rounded gamer after watching :)\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Grants-Greatest-Games-of-November-e1rteau',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 742,\n",
       "   'published': '12/7/2022'},\n",
       "  {'uid': '24c0a97f-a602-5abb-93cf-26be87b18394',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO9063115130.mp3',\n",
       "   'title': 'November Roundup Extras',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Hey everybody, here's a podcast episode for all of the non-roundup stuff that was streamed live the other day while I was recording the November roundup :)\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/November-Roundup-Extras-e1rjp47',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 5033,\n",
       "   'published': '12/1/2022'},\n",
       "  {'uid': '55aca856-0925-5fc4-be9a-c021df5bd427',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO8865501624.mp3',\n",
       "   'title': 'Rahdo Rounds Up►►► November 2022 (26 games in 69 minutes!)',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Hey everybody, this roundup has two firsts, both of which I'm super happy & excited about! (plus a lot of game to talk about and rank as well!)\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Rahdo-Rounds-Up-November-2022-26-games-in-69-minutes-e1rj4an',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 4476,\n",
       "   'published': '12/1/2022'},\n",
       "  {'uid': '97f4272b-44c8-554f-b4e4-e0f4c982aa56',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO2324375512.mp3',\n",
       "   'title': \"Grant's Greatest Games of October 2022\",\n",
       "   'subtitle': None,\n",
       "   'summary': \"OOPS, sorry folks, someone just told me that i've been forgetting to upload audio podcast files for Grants's monthly show, and since the first two episode got basically the same # of listens as the monthly roundup, I guess I should caught up! So here's October's episode! :)\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Grants-Greatest-Games-of-October-2022-e1r7g7a',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 965,\n",
       "   'published': '11/23/2022'},\n",
       "  {'uid': '7252e976-5869-5bc4-9a2e-ca51f0d3292e',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO6043891717.mp3',\n",
       "   'title': \"Grant's Greatest Games of September 2022\",\n",
       "   'subtitle': None,\n",
       "   'summary': \"OOPS, sorry folks, someone just told me that i've been forgetting to upload audio podcast files for Grants's monthly show, and since the first two episode got basically the same # of listens as the monthly roundup, I guess I should caught up! So here's September's episode! :)\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Grants-Greatest-Games-of-September-2022-e1r7g5s',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 993,\n",
       "   'published': '11/23/2022'},\n",
       "  {'uid': '87b70a91-1338-54a6-98d7-a6104edae460',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO8920135581.mp3',\n",
       "   'title': \"The R&R Show #54 - Top 10 Games We're Thankful For :)\",\n",
       "   'subtitle': None,\n",
       "   'summary': 'Well, I didn\\'t expect the waterworks to turn on so strong when we set out to do our \"top10 games we\\'re most thankful for\", but I guess it was inevitable! :)',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-54---Top-10-Games-Were-Thankful-For-e1r604t',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 3067,\n",
       "   'published': '11/23/2022'},\n",
       "  {'uid': '85bc3835-84b2-5ea6-bbae-6352e9a6c46f',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO1559916364.mp3',\n",
       "   'title': 'The R&R Show #54 EXTENDED EDITION',\n",
       "   'subtitle': None,\n",
       "   'summary': 'In addition to our weepy top10, this extended edition has a bunch of Q&A, a stumped games sommelier and I think the longest Ruel Ranks to date! :)',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-54-EXTENDED-EDITION-e1r609i',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 8272,\n",
       "   'published': '11/23/2022'},\n",
       "  {'uid': '6406e8ff-ac5b-5e40-a48f-c84d4d48340d',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO7677108430.mp3',\n",
       "   'title': 'Crowd Sorcery #12',\n",
       "   'subtitle': None,\n",
       "   'summary': \"It's not too surprising that so many cool Kickstarter games are ending soon, as publishers are trying to grab eyeballs before the holidays. Here's my top picks of the ones closing down in November! :)\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Crowd-Sorcery-12-e1r5gfp',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 1359,\n",
       "   'published': '11/22/2022'},\n",
       "  {'uid': '63598c62-91dd-5a82-bb6f-be2b9d95c4bf',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO1955142992.mp3',\n",
       "   'title': 'Rahdo Talks Through►►► Episode 90',\n",
       "   'subtitle': None,\n",
       "   'summary': \"This episode sponsored by http://paradox.rahdo.com :) •••[2:35] Games Q&A►►► Orleans vs Altiplano? Marrakesh? Sequel sales? Marvel Snap? Oathsworn? Top 5 mechanisms for one genre? Egizia? Endgame in final thoughts? Crowd Sorcery overlooking games? Bohnanza-style hand management? Podcast ads? Rahdo & Turczi? Post retirement gaming? Gamer glass? Flat game endings? •••[1:28:25] Personal Q&A►►► Vanlife in USA vs EU? She-Hulk audience? Political compass part II? Eggs? Funniest word? Jen's words of wisdom? Doggos! Spoilers for Rings of Power, Andor & House of the Dragon? •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Rahdo-Talks-Through-Episode-90-e1r1cf0',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 7412,\n",
       "   'published': '11/20/2022'},\n",
       "  {'uid': 'e1879e4f-fdf0-5893-8286-895f31de8ca6',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO5023535243.mp3',\n",
       "   'title': 'The R&R Show #53',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Ruel has good news and we've got some super deals on some on sale games in this month's R&R show :)\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-53-e1qrba8',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 2099,\n",
       "   'published': '11/16/2022'},\n",
       "  {'uid': '067525c1-e325-59b3-9214-7a63fa0afa58',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO9820022274.mp3',\n",
       "   'title': 'The R&R Show #53 EXTENDED GAMEPLAY',\n",
       "   'subtitle': None,\n",
       "   'summary': 'Big news for Ruel and me, plus some very fun segments as we play catchup, and of course recording the latest R&R show :)',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-53-EXTENDED-GAMEPLAY-e1qrbau',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 7532,\n",
       "   'published': '11/16/2022'},\n",
       "  {'uid': '8a0e4743-f7b6-51fd-823e-b7c01f8f9c7a',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO1064426045.mp3',\n",
       "   'title': 'Crowd Sorcery #11',\n",
       "   'subtitle': None,\n",
       "   'summary': 'Okay folks, going to quickly talk about 12 games in this episode with a suprising amount of expansions! :)',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Crowd-Sorcery-11-e1qepe8',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 987,\n",
       "   'published': '11/9/2022'},\n",
       "  {'uid': 'b434e158-096c-5853-886e-012d8fa6856c',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO8809779367.mp3',\n",
       "   'title': 'Rahdo Rounds Up►►► October 2022',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Oh my this was the biggest roundup in awhile, so sit back and get comfortable as we rank over 30 games for you (plus clue you in on a great offer on Jen's gamer glass in the month of November) :)\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Rahdo-Rounds-Up-October-2022-e1q4rc2',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 5130,\n",
       "   'published': '11/2/2022'},\n",
       "  {'uid': '715ea1c5-d268-5f31-884e-8d311fc971ec',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO7301740338.mp3',\n",
       "   'title': 'October Round Up EXTRAS',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Hey folks, here's an additional hour of content that was recorded live in the pre- and post-show segments that were streamed around this episode. Note, the roundup episode itself is not in this file! :)\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/October-Round-Up-EXTRAS-e1q4u58',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 4444,\n",
       "   'published': '11/2/2022'},\n",
       "  {'uid': 'ea2f42a8-aa46-5b0c-ad9c-3fb613deb3f7',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO1741614606.mp3',\n",
       "   'title': 'The R&R Show #52 EXTENDED EDITION',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Okay folks, in this episode i give a full breakdown of Jen's and my first of hopefully man RV trips in the Bravo, and we do our first game sommelier segment, and some Q&A and another fun top10 list. JAM PACKED! :)\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-52-EXTENDED-EDITION-e1pok2g',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 7194,\n",
       "   'published': '10/26/2022'},\n",
       "  {'uid': 'f11ea5c2-a307-50db-8cef-5ab32e50a022',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO1468132937.mp3',\n",
       "   'title': 'The R&R Show #52',\n",
       "   'subtitle': None,\n",
       "   'summary': 'Hey everybody, ruel and I are back making another top10 list, but the real action this month is in the extended edition! :)',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-52-e1pohvp',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 1855,\n",
       "   'published': '10/26/2022'},\n",
       "  {'uid': '72421d6c-b64a-5953-bc45-27bd77dd4593',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO7333577712.mp3',\n",
       "   'title': 'Crowd Sorcery #10',\n",
       "   'subtitle': None,\n",
       "   'summary': \"It's been two weeks, so it's time for more CROWD SORCERY, where I'm running down my favourite 7 game campaigns that are ending their runs soon - plus a bonus 4 more! What a deal! :)\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Crowd-Sorcery-10-e1po4m7',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 1381,\n",
       "   'published': '10/25/2022'},\n",
       "  {'uid': '556aeccd-f2bb-5160-a76f-052b0b4202dc',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO5183534437.mp3',\n",
       "   'title': 'Rahdo Talks Through►►► Episode 89',\n",
       "   'subtitle': None,\n",
       "   'summary': '•••[2:12] Games Q&A►►► Fedex freightbox overseas? Top 5 if no expansions? Fave expansion of all time? Mediocre games fixed by expansions? New games vs expansions? Games that need expansions? Deckbuilders vs bagbuilders? How to improve least fave mechanisms? Sundry? World series of bardgaming? Star Wars Pandemic? Podcast thumbnails? Mandatory house rules? Jen’s view of Marvel Champions? Why no roll & writes in top 30? Star Trek Super Skill Pinball? Beer & Bread? Village Rails? Most wanted game from Spiel? After Us? Agricola to Caverns vs Brass Lancashire to Birmingham? Jen teaching games? Game teaching tips? •••[1:05:29] Personal Q&A►►► RV trip? Rado watches? Crying common? Fave spooky movies? How’d Jen become a glass artist? RV plans? Sam Neill? Jen’s words of wisdom? Doggos? SPOILER: Spider-Man: No Way Home? •••Send your questions to questions@rahdo.com',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Rahdo-Talks-Through-Episode-89-e1pfilp',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 5684,\n",
       "   'published': '10/19/2022'},\n",
       "  {'uid': '491d3173-5080-5305-9a77-63ac3203a24b',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO1226221670.mp3',\n",
       "   'title': 'Crowd Sorcery #9',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Jen and I are on the road again, which means episode 9 of Crowd Sorcery is a little late, but hopefully worth the wait as there's some very cool stuff out there right now! :)\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Crowd-Sorcery-9-e1p670o',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 1207,\n",
       "   'published': '10/12/2022'},\n",
       "  {'uid': 'cbe9a159-6314-56e1-a40b-ca31d9828981',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO8188231754.mp3',\n",
       "   'title': 'Top 10+10 Games for Essen Spiel :)',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Hey everybody, here's me talking about 20 games that I think are the most must have of the show! And I'm just getting started... :)\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Top-1010-Games-for-Essen-Spiel-e1on105',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 3357,\n",
       "   'published': '10/2/2022'},\n",
       "  {'uid': '454db4f3-11c0-532f-9e60-9171b0a9ac9b',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO8493297058.mp3',\n",
       "   'title': 'Rahdo Rounds Up►►► September 2022 - 24 Games in 59 minutes!',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Hey everybody, in case you're wondering what we got up to last month, here's the latest channel roundup (24 games in under an hour!) :)\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Rahdo-Rounds-Up-September-2022---24-Games-in-59-minutes-e1oln2l',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 3866,\n",
       "   'published': '10/1/2022'},\n",
       "  {'uid': '8bd2edb9-f096-57eb-b4c2-2e9fb5baef9e',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO2221436839.mp3',\n",
       "   'title': 'Crowd Sorcery #8',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Episode 8 is up with 11 games to talk about ending their run in the next two weeks, including something ending today! So don't delay! :)\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Crowd-Sorcery-8-e1oiblh',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 1118,\n",
       "   'published': '9/29/2022'},\n",
       "  {'uid': 'e0293b98-5d33-5b9e-87e8-f27fb1b2587a',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO3351218617.mp3',\n",
       "   'title': 'The R&R Show #51 EXTENDED EDITION',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Ruel and I talk about RVs (Jen and I just bought one!), rank some games, do some trivia, a this-or-that, some Q&A... oh, and let's not forget episode 51 of the R&R show :)\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-51-EXTENDED-EDITION-e1ofgnp',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 7548,\n",
       "   'published': '9/27/2022'},\n",
       "  {'uid': '3a601dc3-255e-53e1-a722-bbf5b862d6bb',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO7608956118.mp3',\n",
       "   'title': 'The R&R Show episode 51',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Ruel and I are back doing another top 10 games we'd buy right now :)\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-episode-51-e1ofgbs',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 1809,\n",
       "   'published': '9/27/2022'},\n",
       "  {'uid': 'a33e6e37-6c81-532a-adff-dabebcdec929',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO9290251807.mp3',\n",
       "   'title': 'Rahdo Talks Through►►► Episode 88',\n",
       "   'subtitle': None,\n",
       "   'summary': \"•••[2:26] Games Q&A►►► Shadowrun Crossfire advice? Joining the channel? YouTube thumbs down? Rahdo's executive privilege? Least fave mechanism? Changing tastes? Former top100s I dislike now? Fave thing to do on the channel? Fave boardgame reviewer? Short vs long games? What's missing in civ games? Podcast question deadline? Troyes not cutthroat? What should I have covered? Biggest letdown of 2022? Fave marvel champion villains? Design a marvel champions hero? Randomness in the LOOP? What does Jen hate about co-ops? 1 game 10 expansions, or 10 games, no expansions? Fave boardgame convention memories? Top 3 of 2022 so far? What games do we disagree on? •••[1:46:36] Personal Q&A►►► Top 3 fictional villains? Sam Harris? Spider-Man No Way Home? Wood endeavors? She-Hulk CGI? What will make us move back to EU? Pitch meeting? Jen's WoW? Doggos! Political compass test! •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Rahdo-Talks-Through-Episode-88-e1o838l',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 10985,\n",
       "   'published': '9/24/2022'},\n",
       "  {'uid': '4b584f02-477e-5ba4-9305-106744929eee',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO5607342420.mp3',\n",
       "   'title': 'RTT 88 BONUS CONTENT',\n",
       "   'subtitle': None,\n",
       "   'summary': 'Hey everybody, episode 88 of the podcast will be coming this weekend after some more editing, but in the meantime, here\\'s the bonus content that took place \"around\" the live recording of 88... some unboxing, some chitchat and some Q&A. NOTE: the actual podcast content is snipped out, so this is just all the extras! :)',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RTT-88-BONUS-CONTENT-e1o83j7',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 3366,\n",
       "   'published': '9/23/2022'},\n",
       "  {'uid': '0805567b-e2c5-59f1-bc26-1237b9f97ee7',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO4474168638.mp3',\n",
       "   'title': 'The R&R Show #50 EXTENDED EDITION',\n",
       "   'subtitle': None,\n",
       "   'summary': 'Go behind the scenes during from the live broadcast to get some more boardgame content, some pop culture content, and see the FULL story of the practical joke played on us during the show! :)',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-50-EXTENDED-EDITION-e1nq6l9',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 8009,\n",
       "   'published': '9/16/2022'},\n",
       "  {'uid': 'cd2e6079-4d86-5817-b537-f9801763ffb0',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO8674991604.mp3',\n",
       "   'title': 'The R&R Show #50 - Top 10 Roll & Writes',\n",
       "   'subtitle': None,\n",
       "   'summary': 'Ruel and I talk one of our favourite genres and get a bit of a practical joke played on us in our 50th episode! :)',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-50---Top-10-Roll--Writes-e1nq5q2',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 2667,\n",
       "   'published': '9/16/2022'},\n",
       "  {'uid': '19d0dd14-c848-5eed-af6d-d23342a49290',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO1748979769.mp3',\n",
       "   'title': 'Crowd Sorcery #7',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Hey folks, it's the show where I talk about games that are ending their campaigns instead of starting them! 11 games to blaze through this week :)\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Crowd-Sorcery-7-e1npott',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 816,\n",
       "   'published': '9/13/2022'},\n",
       "  {'uid': '7a0af334-cde6-524a-a77d-0af39e3cb138',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO9922305024.mp3',\n",
       "   'title': 'The R&R Show #49 EXTENDED EDITION',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Ruel and I went deep on some hot button topics in this extended episode, plus updates on how we're doing plumbing and podiatry-wise :)\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-49-EXTENDED-EDITION-e1nfr8o',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 7687,\n",
       "   'published': '9/7/2022'},\n",
       "  {'uid': '65af8eba-e8dc-5ee2-8792-b403b6e9878c',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO8150517909.mp3',\n",
       "   'title': 'The R&R Show #49 - Top 10 Racing Games',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Hopefully you'll find some fun surprises in this audio version of Ruel's and my most recent top10 list! :)\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-49---Top-10-Racing-Games-e1nfqvh',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 2114,\n",
       "   'published': '9/7/2022'},\n",
       "  {'uid': '3fc9bee2-4f01-5a2c-982a-3f6e99ea911c',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO9305138724.mp3',\n",
       "   'title': \"Grant's Greatest Games in August 2022\",\n",
       "   'subtitle': None,\n",
       "   'summary': 'Grant Lyon is back listing his favourite five games of the last month, and I had no idea he played so many games... way more than us!!!',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Grants-Greatest-Games-in-August-2022-e1nario',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 842,\n",
       "   'published': '9/3/2022'},\n",
       "  {'uid': '47aebd7b-920a-5f2b-9caf-f4e05dc438c8',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO4540904413.mp3',\n",
       "   'title': 'August 2022 Round Up',\n",
       "   'subtitle': None,\n",
       "   'summary': \"27 games talked about this month in the roundup, and here's the audio version! Lots of good stuff, including some top10 of the year candidates! :)\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/August-2022-Round-Up-e1n8q9b',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 3980,\n",
       "   'published': '9/1/2022'},\n",
       "  {'uid': '02bdd19d-ae41-5dad-9391-52ae569c4973',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO7477778578.mp3',\n",
       "   'title': 'Crowd Sorcery Episode 6',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Here's the audio version of the bi-weekly show where i tell you about all of the coolest crowdfunding games, ending soon. Some are ending VERY SOON this month, do don't delay! :)\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Crowd-Sorcery-Episode-6-e1n7no2',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 915,\n",
       "   'published': '8/31/2022'},\n",
       "  {'uid': '114fae94-9ccb-5f86-bfd1-ff841c307182',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO1073032575.mp3',\n",
       "   'title': 'The R&R Show #48 EXTENDED EDITION',\n",
       "   'subtitle': None,\n",
       "   'summary': \"In addition to the regular show, we dove deep into ruel's recent plumbing problems, as well as my podiatry problems! Plus a new Ruel Ranks, top3 and a lot of Q&A catchup!\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-48-EXTENDED-EDITION-e1n6a3s',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 7359,\n",
       "   'published': '8/31/2022'},\n",
       "  {'uid': 'edb5f7f7-4f80-5990-be78-82da78b851b9',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO2632587481.mp3',\n",
       "   'title': 'The R&R Show #48',\n",
       "   'subtitle': None,\n",
       "   'summary': \"It's a ding & dent big savings-centric episode this month for the games we'd buy right now! :)\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-48-e1n69ac',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 2227,\n",
       "   'published': '8/31/2022'},\n",
       "  {'uid': '8731e4c3-7fa8-5c5c-a775-6b7775689749',\n",
       "   'audio_url': 'https://d3ctxlq1ktw2nl.cloudfront.net/staging/2022-7-21/f53cc16f-cd6f-356a-2b2a-2500e2f746f9.mp3',\n",
       "   'title': 'Rahdo Talks Through►►► Ep87, Part II',\n",
       "   'subtitle': None,\n",
       "   'summary': \"•••Personal Q&A►►► Beagles (continued)? Staying positive? 80's nostalgia? Stranger Things? Where do we get news? Jen's Words of Wisdom? Spoilers for Star Trek Brave New Worlds? Spoilers for Pandemic Legacy 1, 2 and 0? •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Rahdo-Talks-Through-Ep87--Part-II-e1monkn',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 3195,\n",
       "   'published': '8/21/2022'},\n",
       "  {'uid': '84a29696-5ff8-548e-b80c-54de0ee04d4d',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO6885801675.mp3',\n",
       "   'title': 'Rahdo Talks Through►►► Ep87, Part I',\n",
       "   'subtitle': None,\n",
       "   'summary': 'This episode sponsored by https://elfcreekgames.com •••[3:47] Games Q&A►►► Changing game rankings? Oathsworn? Plunderous? Rahdo merch update? Dominion expansions? Adding new folks to the channel? Identifying what makes a game special? Crowd Sorcery? Channel growth? Carnegie? Free Radicals? Marvel Champions expansions? Positive player interaction? Time in games? Playing with neice & nephew? Audience metric for podcast? Bad teaching experiences? Dreaming about board games? Marvel Champions verisimilitude? MC vs other LCGs? MC soloing? MC ranking? MC theme change? Expansions effect on rankings? Masking objectionable themes? •••[1:40:24] Personal Q&A►►► Killing Eve? Forward Party? Vaccines? Yang? Exotic animals? SCUBA diving experiences? Kevin Smith? Penn Jillette? Atheism? Roadtripper! Podcast future? Beagles? Abrupt ending? •••Send your questions to questions@rahdo.com',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Rahdo-Talks-Through-Ep87--Part-I-e1mnkmo',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 11843,\n",
       "   'published': '8/19/2022'},\n",
       "  {'uid': '7d80eca6-c35c-5a27-8b4c-f94f97c56085',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO5789182641.mp3',\n",
       "   'title': 'August Podcast Outtakes',\n",
       "   'subtitle': None,\n",
       "   'summary': 'On Aug 16th, I live streamed recording a portion of the latest Rahdo Talks Through podcast and a new episode of crowd sorcery. But in addition to that I did a big game unboxing and a fair bit of chitchat with the crowd, and this audio file is all of that extra chitchat! :)',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/August-Podcast-Outtakes-e1mkvjq',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 3317,\n",
       "   'published': '8/17/2022'},\n",
       "  {'uid': '722682d0-d5db-53d4-b800-a1e5ec00459b',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO3132487640.mp3',\n",
       "   'title': 'Crowd Sorcery #5',\n",
       "   'subtitle': None,\n",
       "   'summary': 'Only 5 new games to talk about closing in the next few weeks on crowdfunding platforms, which is ironic as this is episode 5 of Crowd Sorcery, the audio edition! :)',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Crowd-Sorcery-5-e1mkvhu',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 689,\n",
       "   'published': '8/17/2022'},\n",
       "  {'uid': 'f19dec53-9565-5724-8ce3-14ea28395b3d',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO7584354438.mp3',\n",
       "   'title': 'RvR Outtakes August (Q&A, chitchat, Gencon report)',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Hey everybody, this week Ruel and I had some fun live streaming Citytrip Brugge for an hour, but we also spent an hour or so chatting, talking Gencon, behind the scenes stuff, etc. So I figured I'd take just those bits (not the runthrough and final thoughts) and post them on the podcast channel! :)\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RvR-Outtakes-August-QA--chitchat--Gencon-report-e1mc59r',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 3558,\n",
       "   'published': '8/11/2022'},\n",
       "  {'uid': '69eee038-4ed1-5803-a6d6-a967c012498f',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO8849436753.mp3',\n",
       "   'title': \"Grant's Greatest Games in July 2022\",\n",
       "   'subtitle': None,\n",
       "   'summary': 'Okay, a new video (the first episode of a new series for the channel) just went up on Youtube, so here it is in audio form! Take it away Grant! :)',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Grants-Greatest-Games-in-July-2022-e1m8sat',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 619,\n",
       "   'published': '8/8/2022'},\n",
       "  {'uid': '9805fb77-646b-54e2-a983-89dd72092dc2',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO8925684865.mp3',\n",
       "   'title': 'July 2022 Roundup',\n",
       "   'subtitle': None,\n",
       "   'summary': \"hey everybody, over 26 games are talked about in this month's roundup, and here's the audio file! :)\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/July-2022-Roundup-e1m3u2b',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 4567,\n",
       "   'published': '8/4/2022'},\n",
       "  {'uid': 'bfe8b44c-926d-5b98-91b4-1c4cdfb2fb8e',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO6738306112.mp3',\n",
       "   'title': 'Crowd Sorcery #4',\n",
       "   'subtitle': None,\n",
       "   'summary': \"9 Games coming to a close on crowdfunding platforms in the next 2 weeks that I think are of note, and here's the audio file where I talk about 'em! :)\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Crowd-Sorcery-4-e1m2tbh',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 875,\n",
       "   'published': '8/4/2022'},\n",
       "  {'uid': '8c8fb1bd-fc97-5242-88be-ca2dcaf9a3cc',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO1693319906.mp3',\n",
       "   'title': 'Top 10 Gencon \"Must Have\" Games',\n",
       "   'subtitle': None,\n",
       "   'summary': 'Just a quick little top10 (and then a second top10) to call out the best of the best at Genon 2022 :)',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Top-10-Gencon-Must-Have-Games-e1lr51u',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 1462,\n",
       "   'published': '7/29/2022'},\n",
       "  {'uid': '91ad6e37-9c63-5d2a-94c5-f6b4e4bad847',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO4459667943.mp3',\n",
       "   'title': 'RTT 86 Extras',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Hey everybody, here's an extra hour or so of chatchat that was recorded while I was streaming the podcast recording for RTT episode 86 :)\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RTT-86-Extras-e1lgcu2',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 3220,\n",
       "   'published': '7/29/2022'},\n",
       "  {'uid': '9699079a-215c-5f91-b481-9e6052a51cad',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO5848241875.mp3',\n",
       "   'title': 'Rahdo Talks Through►►► Episode 86',\n",
       "   'subtitle': None,\n",
       "   'summary': \"This episode sponsored by https://elfcreekgames.com (booth 2569 at Gencon!) •••[3:56] Games Q&A►►► Revive? Pandemic next step? Podcast archive? Game expansion storage? Reddit and lurking? Fave designers trying something new? Fave game with theme I don't like? Agricola draft variant? Rahdo merch update? Memory in games? Card game versions vs original? Marvel Champions base game? Next step for Marvel Champions? Adam in Wales? What happens to my collection if i quit boardgaming? Can't find specific game runthrough? Our best games performance? Jen's feelings about podcast? Dealing with worst parts of multiplayer gaming? Meta-gaming? •••[1:10:00] Personal Q&A►►► Chicken update! Kauai? What's next for women's rights? Democrats culpability? Vaccine efficacy? Mom. Aging parents? Alaska trip? Jen's glass game pieces? Jen's words of wisdom. DOGGOs! Spoilers for Kenobi. •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Rahdo-Talks-Through-Episode-86-e1lrbct',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 8691,\n",
       "   'published': '7/29/2022'},\n",
       "  {'uid': '874c8621-727a-5dea-a6e4-628b5230444b',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO9556111455.mp3',\n",
       "   'title': 'The R&R #47 EXTENDED EDITION',\n",
       "   'subtitle': None,\n",
       "   'summary': 'In addition to the top10 list, we have (for me) a very surprising double ruel ranks and a very fun this-or-that, and I tell a tale of hymenoptera horror!',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-47-EXTENDED-EDITION-e1lo6io',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 7337,\n",
       "   'published': '7/27/2022'},\n",
       "  {'uid': '52d84129-db68-5f6e-9c82-0fbbd6845926',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO5342127640.mp3',\n",
       "   'title': 'The R&R Show #47',\n",
       "   'subtitle': None,\n",
       "   'summary': 'I love ruel\\'s picks in this month\\'s R&R... i went cult-of-the-new, and he picks some \"should be\" modern classics! :)',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-47-e1lo6bi',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 2347,\n",
       "   'published': '7/27/2022'},\n",
       "  {'uid': 'ed3ed6cd-deef-5eca-bde7-f58cee05e8a3',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO3324189948.mp3',\n",
       "   'title': 'Crowd Sorcery #3',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Okay, if you couldn't make it for the live stream today on Twitch, no worries! Here's the Crowd Sorcery ep I filmed live (9 cool games whose campaigns end in the next two weeks), and soon we'll have the latest Rahdo Talks Through podcast ep as well! :)\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Crowd-Sorcery-3-e1leija',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 1161,\n",
       "   'published': '7/19/2022'},\n",
       "  {'uid': '8edb2240-73c3-5e5b-a16a-2b8619372b88',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO5020579018.mp3',\n",
       "   'title': 'The R&R Show #46 EXTENDED EDITION',\n",
       "   'subtitle': None,\n",
       "   'summary': \"In addition to talking about our most anticipated games, we also spend a fair bit of time talking about the Alaska trip in this extended episode, answer some Q's, and do a new top3! :)\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-46-EXTENDED-EDITION-e1l6940',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 7501,\n",
       "   'published': '7/13/2022'},\n",
       "  {'uid': 'ebeab340-333d-58b3-916d-84897a7a4179',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO8121092702.mp3',\n",
       "   'title': 'The R&R Show #46 - Most Anticipated Games of the 2nd Half of 2022',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Hurrah, I didn't accidentally delete the latest episode of the R&R Show, and I also had a great time digging through games to find the ones I'm most excited about for the rest of the year! :)\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-46---Most-Anticipated-Games-of-the-2nd-Half-of-2022-e1l575s',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 2183,\n",
       "   'published': '7/13/2022'},\n",
       "  {'uid': '0ea68fdf-506e-532b-971d-627a9f7e7d12',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO6545176501.mp3',\n",
       "   'title': 'Crowd Sorcery #2',\n",
       "   'subtitle': None,\n",
       "   'summary': \"We're still on the road in Alaska for one more day, and this morning I filmed a fast [b]ep #2 for Crowd Sorcery[/b], where I talk about the 7 best games ending their crowdfunding runs over the next 2 weeks (sorry for the audio at the end, d'oh!)\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Crowd-Sorcery-2-e1kt3pg',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 1291,\n",
       "   'published': '7/6/2022'},\n",
       "  {'uid': 'c15c8cf1-fb37-51b5-9481-01f8799ce0cb',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO9532193786.mp3',\n",
       "   'title': 'Rahdo Rounds Up►►► June 2022',\n",
       "   'subtitle': None,\n",
       "   'summary': \"We only played 10 new games this month, but they were 10 fantastic games! And with all the contributors we're actually talking about more than 20 in this episode :-)\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Rahdo-Rounds-Up-June-2022-e1kheti',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 3629,\n",
       "   'published': '7/1/2022'},\n",
       "  {'uid': 'a98b7cb0-a971-5c93-b3df-b7d3028757a6',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO4548470276.mp3',\n",
       "   'title': \"The R&R Show #45 | Top 10 Games We'd Buy RIGHT NOW!!\",\n",
       "   'subtitle': None,\n",
       "   'summary': 'Ooops, forgot to post the \"rahdo patreon podcast\" version of this week\\'s R&R the other day! just one more mistake in a series of unfortunate events related to this episode!',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-45--Top-10-Games-Wed-Buy-RIGHT-NOW-e1kinfr',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 1676,\n",
       "   'published': '7/1/2022'},\n",
       "  {'uid': '1cb9a7a8-8363-5928-bd5e-030472c4680a',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO7726918251.mp3',\n",
       "   'title': 'Crowd Sorcery #1',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Hey everybody, I tried out filming a new show format today while I was live on Twitch, and posted it today! Let me know what you think... it's been awhile since I rolled out something new! :)\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Crowd-Sorcery-1-e1kare6',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 875,\n",
       "   'published': '6/23/2022'},\n",
       "  {'uid': '732a9bc5-22b0-5804-ab04-220aea1170b4',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO3613654775.mp3',\n",
       "   'title': 'Rahdo Talks Through►►► Episode 85',\n",
       "   'subtitle': None,\n",
       "   'summary': \"This episode sponsored by http://atlantis.rahdo.com •••[3:56] Games Q&A►►► Games the audience didn't get? Rahdo Merch? Unranked games added to http://games.rahdo.com? Caper Europe? The Spiel Foundation? Board game libraries? My leaving boardgame Reddit? Rahdo voter stats? Best BGG features? Low vote games? Fave cthulhu game? Game turnoffs? Preferred RPG classes? •••[1:10:00] Personal Q&A►►► Chicken egg laying? State of the pandemic? DvH? Immortal marriage? Climate change in travel? Fave pantheon? Useless skills? DNRs, wills, etc.? Jens WoW? DOGGOS! •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Rahdo-Talks-Through-Episode-85-e1k3jje',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 6251,\n",
       "   'published': '6/17/2022'},\n",
       "  {'uid': 'b5bb4a93-70f1-5f70-b4e2-d72d17c84ffe',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO9853093769.mp3',\n",
       "   'title': 'The R&R Show #44 EXTENDED EDITION',\n",
       "   'subtitle': None,\n",
       "   'summary': 'In addition to the grande finale of the top100, this episode also marks a big change for the show as well, and we go into detail in the extended episode!',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-44-EXTENDED-EDITION-e1jlm9d',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 9332,\n",
       "   'published': '6/8/2022'},\n",
       "  {'uid': 'a3ddccad-3af3-5b77-baca-331e8f7c102d',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO5193653419.mp3',\n",
       "   'title': 'The R&R Show #44 - Top 10 Games of All Time! :)',\n",
       "   'subtitle': None,\n",
       "   'summary': \"It's taken almost half a year, but @ruelgaviola and I have finally finished the R&R top 100 with this week's 10 greatest games of all time R&R episode! #phew!\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-44---Top-10-Games-of-All-Time-e1jlf45',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 3993,\n",
       "   'published': '6/8/2022'},\n",
       "  {'uid': '8a3b5d75-bca4-517f-9003-c3faad4bbd21',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO6755593827.mp3',\n",
       "   'title': 'May 2022 Roundup EXTENDED EDITION',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Oh my did things go off the rails during the filming of this month's Roundup, and you can experience it all here with over an hour of extra stuff!\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/May-2022-Roundup-EXTENDED-EDITION-e1jdai6',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 8950,\n",
       "   'published': '6/2/2022'},\n",
       "  {'uid': 'f7b52914-72a1-5cfb-9ae0-8cf18e8f4290',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO1665879835.mp3',\n",
       "   'title': 'May 2022 Roundup',\n",
       "   'subtitle': None,\n",
       "   'summary': 'So many games to talk about I lost track of them! 27? 28? and then two bonus ones from Kimberly as well, so 30 in the end! Yowza!',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/May-2022-Roundup-e1jd376',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 4717,\n",
       "   'published': '6/2/2022'},\n",
       "  {'uid': '24001433-bf02-5eb9-b8dd-b6f576adcdcb',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO4319034845.mp3',\n",
       "   'title': \"The R&R Show #43 - Best Crowdfunding of June '22\",\n",
       "   'subtitle': None,\n",
       "   'summary': \"Hey everybody, this week we're trying a new approach to Crowdfunding reporting, and ended up talking about 35 games for the month of June! YIKES! :)\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-43---Best-Crowdfunding-of-June-22-e1jc8hv',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 4697,\n",
       "   'published': '6/1/2022'},\n",
       "  {'uid': '840cdc5f-bc9b-51e1-8991-e3cca97f732b',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO6064450101.mp3',\n",
       "   'title': 'The R&R Show #43 EXTENDED EDITION',\n",
       "   'subtitle': None,\n",
       "   'summary': 'In addition to the crowdfunding stuff (35 GAMES TALKED ABOUT) we also did some show maintenance, a tough top 3, and some fun ThisOrThat this week! :)',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-43-EXTENDED-EDITION-e1jc8u4',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 9125,\n",
       "   'published': '6/1/2022'},\n",
       "  {'uid': '81ea2df3-0ade-5715-ab2f-d8c256e2eb46',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO4907439522.mp3',\n",
       "   'title': \"The R&R Show #42 - Top 10 Games We'd Buy RIGHT NOW! (May 2022)\",\n",
       "   'subtitle': None,\n",
       "   'summary': 'I was especially pleased with some of the choices we made in this episode... might be our strongest \"buy right now\" list yet!',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-42---Top-10-Games-Wed-Buy-RIGHT-NOW--May-2022-e1j1eln',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 1848,\n",
       "   'published': '5/25/2022'},\n",
       "  {'uid': 'f963cde9-f373-5351-b29e-a4c98d8e1f84',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO3293314748.mp3',\n",
       "   'title': 'The R&R Show #42 EXTENDED EPISODE',\n",
       "   'subtitle': None,\n",
       "   'summary': 'We mixed things up this week, starting with long Q&A, and the after the show doing some top3s and a this-or-that!',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-42-EXTENDED-EPISODE-e1j1eps',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 7353,\n",
       "   'published': '5/25/2022'},\n",
       "  {'uid': '4e665d53-86fc-5da9-a849-d52d68ba3649',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO4763878976.mp3',\n",
       "   'title': 'RTT #84 Extras',\n",
       "   'subtitle': None,\n",
       "   'summary': 'Hey everybody, here\\'s an extra almost 2 hours of jibber jabber I recorded before and after episode 84 of the regular podcast. Bear in mind, the podcast episode content is not in this audio file... this is all of the extra \"cutting room floor\" stuff for folks who like such stuff... chit chat with the audience, a lot more Q&A, show prep, and an unboxing of Dice Realms (and more conversation about that game!) :)',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RTT-84-Extras-e1ittg8',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 6516,\n",
       "   'published': '5/23/2022'},\n",
       "  {'uid': '6fb2ba2c-e81a-5271-a1c8-6b9da234a848',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO1771663954.mp3',\n",
       "   'title': 'Rahdo Talks Through►►► Episode 84',\n",
       "   'subtitle': None,\n",
       "   'summary': \"This episode sponsored by http://honeybuzz.rahdo.com •••[3:12] Games Q&A►►► Should pubs put out digital versions? Should pubs put out PnPs? Cards in cards? RRT YouTube shownotes? https://geekgroup.app ? Secret word contests? Final thoughts? Ranking http://gone.rahdo.com ? Responding to questions? Narrative in euros? ThinkerThemer's recent VW video? Lifestyle games? Downtime mitigation? Games we're best at? •••[1:24:15] Personal Q&A►►► Star Wars strengths? Fear? Krystal & Saagar? Twitter? Why is Last Jedi the best star war? Bluetooth speaker? Frugality problems? Alpha dogs? Dr. Strange & Moonknight? Star Trek show rankings? Dire Straits? Jens WoW? DOGGOS! •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Rahdo-Talks-Through-Episode-84-e1itq22',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 7806,\n",
       "   'published': '5/23/2022'},\n",
       "  {'uid': 'aa46ff9f-83ff-573e-9493-663a7a3154ab',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO6874475689.mp3',\n",
       "   'title': 'The R&R Show #41 EXTENDED EDITION',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Okay after last weeks pop culture diversion, this week we're focusing more on games in the extended edition of the show, with a few ranks, some board game art talk, and more! :)\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-41-EXTENDED-EDITION-e1im6hp',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 7618,\n",
       "   'published': '5/17/2022'},\n",
       "  {'uid': '5f23a16b-a383-5f12-95d0-29f8320cafe5',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO3652550886.mp3',\n",
       "   'title': 'The R&R Show #41 - Top 100 Games (20-11)',\n",
       "   'subtitle': None,\n",
       "   'summary': 'Ruel and I get together for another 10 games in our t100 countdown, and oh man are these games great! (no surprise considering where we are on the list). My biggest surprise was that Ruel snagged some of my faves for himself!',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-41---Top-100-Games-20-11-e1im2r2',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 2977,\n",
       "   'published': '5/17/2022'},\n",
       "  {'uid': '5c8e24b6-7416-5587-8f21-ab7537ab5923',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO7442771644.mp3',\n",
       "   'title': 'Top 10 of 2021 Revisited EXTENDED EDITION',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Here's the final top10 for 2021, plus a bunch of extra stuff streamed live on may 11th by yours truly. Enjoy! :)\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Top-10-of-2021-Revisited-EXTENDED-EDITION-e1idnev',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 6387,\n",
       "   'published': '5/12/2022'},\n",
       "  {'uid': '1304d96f-666e-5f7b-ad27-b801d489405a',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO5301329467.mp3',\n",
       "   'title': 'Top 10 Games of 2021, Revisited!',\n",
       "   'subtitle': None,\n",
       "   'summary': 'Okay everybody, it\\'s time for the yearly \"top10 of the previous year, this time for sure\" revisit video, and 4 new games have stepped in to take their spot as the best of the best, imo. Plus we did some Q&A afterwards! :)',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Top-10-Games-of-2021--Revisited-e1idktv',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 4006,\n",
       "   'published': '5/12/2022'},\n",
       "  {'uid': '70a4f4bf-39d8-5e6a-ae20-4161dd2e75a8',\n",
       "   'audio_url': 'https://d3ctxlq1ktw2nl.cloudfront.net/production/exports/19ccb320/51819457/9388c24a3024b5817e459c3bef89950b.m4a',\n",
       "   'title': 'The R&R Show #40 EXTENDED EDITION',\n",
       "   'subtitle': None,\n",
       "   'summary': 'Okay, in the preshow today we went pretty heavy into pop culture stuff, plus an update on my medical status of course! :)',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-40-EXTENDED-EDITION-e1ibtg1',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 7889,\n",
       "   'published': '5/10/2022'},\n",
       "  {'uid': 'd8dba403-41cc-5912-89f1-a6685f9abd29',\n",
       "   'audio_url': 'https://d3ctxlq1ktw2nl.cloudfront.net/production/exports/19ccb320/51819377/46ad6df9bf0ecbb5bf97f9c6b35af833.m4a',\n",
       "   'title': 'The R&R Show #40 - Top 100 Games of All Time (30-21)',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Hey everybody, we're getting closer and closer to the end of the top100 games of all time. what will we do then?!?!?\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-40---Top-100-Games-of-All-Time-30-21-e1ibtdh',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 2994,\n",
       "   'published': '5/10/2022'},\n",
       "  {'uid': '1e54989a-a398-5406-945b-9a201dfc0140',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO8873973094.mp3',\n",
       "   'title': 'The R&R Show #39 EXTENDED EDITION',\n",
       "   'subtitle': None,\n",
       "   'summary': \"The mic failed a couple times of course (new cable is on the way but won't arrive until friday!) but otherwise things went fairly well in todays gonzo show where we tackled another food subject and ruel ranked a couple of great games! :)\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-39-EXTENDED-EDITION-e1i1o3l',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 7947,\n",
       "   'published': '5/4/2022'},\n",
       "  {'uid': 'edfe99ba-556d-53ab-bbb9-aa0334c926e0',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO4737422598.mp3',\n",
       "   'title': 'The R&R Show #39 - Top 100 Games (40-31)',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Folks, no worries about the opening where I talk about my extreme dizziness for the last few days... doc says it's BPPV and very treatable. I posted more about it at the guild.rahdo.com as ruel promised, and now on with the show! :)\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-39---Top-100-Games-40-31-e1i1odp',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 3120,\n",
       "   'published': '5/4/2022'},\n",
       "  {'uid': 'f5127976-8317-5df1-974c-adf102936b99',\n",
       "   'audio_url': 'https://d3ctxlq1ktw2nl.cloudfront.net/staging/2022-4-3/fcb7ed1e-662e-e2d0-3772-77f34f7a349b.mp3',\n",
       "   'title': 'RTT Update',\n",
       "   'subtitle': None,\n",
       "   'summary': \"just a quick recording to let everyone know that while i accidentally took the podcast offline last night right after I uploaded the latest roundup, it's all fixed now so you can get back to listening! :)\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RTT-Update-e1i1g6d',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 77,\n",
       "   'published': '5/3/2022'},\n",
       "  {'uid': '0a6d1bda-f617-59f2-9aa9-b55fc0cefb01',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO8621021304.mp3',\n",
       "   'title': 'April 2022 Roundup EXTENDED EDITION',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Alright folks, last month I tried out including the extended edition of the monthly round up, where i do some additional stuff and you get more behind the scenes raw rahdo (for lack of a better term). I thought maybe this wouldn't work because one of the things I do in these extended eps is unbox stuff, which isn't great to listen to maybe? BUT it seems last month that over half of you chose the extended edition. But hey, that was the first try... you didn't know what you were getting into. Let's try again and this time you'll know what to expect, and I'll check the stats to see if you came back for more. One other thing, I had some technical difficulties at the start of this stream... mic quit again, which is why things start out a bit weird! :)\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/April-2022-Roundup-EXTENDED-EDITION-e1i073j',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 8200,\n",
       "   'published': '5/3/2022'},\n",
       "  {'uid': '4923c354-6685-5bd3-97b7-518867fc9767',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO7208996917.mp3',\n",
       "   'title': 'April 2022 Roundup',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Okay, the 10th anniversary month is over, and here's what we played during said month! :) Also, no one commented one way or the other if they wanted to keep the extended version of the roundups in the feed, but the stats say that the majority of folks preferred the extended edition. So that's back now too! :)\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/April-2022-Roundup-e1i06lr',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 3593,\n",
       "   'published': '5/3/2022'},\n",
       "  {'uid': '866b120c-e7f0-5e10-8122-fe4e2898d634',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO2084487866.mp3',\n",
       "   'title': 'The R&R Show #38 EXTENDED EDITION',\n",
       "   'subtitle': None,\n",
       "   'summary': 'In addition to talking crowdfunding games, this week we do a tough top 3, ruel reveals a never before seen side of himself, and i mess everything up on the recording schedule! :)',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-38-EXTENDED-EDITION-e1hnme4',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 7991,\n",
       "   'published': '4/27/2022'},\n",
       "  {'uid': '63ff5497-6780-5910-8721-b06c15bf88bb',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO8575570221.mp3',\n",
       "   'title': 'The R&R Show #38 - Top 10 Upcoming Kickstarters (May 2022)',\n",
       "   'subtitle': None,\n",
       "   'summary': \"There's some really exceptional projects coming in the next few weeks, and Ruel and I are here to tell you about the best that we found! And one big final announcement for the channel for the 10th anniversary month! :)\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-38---Top-10-Upcoming-Kickstarters-May-2022-e1hnjt6',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 3291,\n",
       "   'published': '4/27/2022'},\n",
       "  {'uid': '8f02e995-53e5-5c0c-9e09-91a67ff7057f',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO4411953380.mp3',\n",
       "   'title': 'Rahdo Talks Through►►► Episode #83 (Apr 2022)',\n",
       "   'subtitle': None,\n",
       "   'summary': \"This Episode Sponsored by The Paradox Initiative Check it out at https://www.kickstarter.com/projects/brentdickman/paradox-initiative?ref=4d85g9 Ali's Narrative Variant Geeklist: https://boardgamegeek.com/geeklist/277219/karars-campaigns-board-games [0:00] Intro •••[4:03] Games Q&A►►► Everdell rating? More story in euros? Remote gaming? Polyominos? Tulpenfieber? Attacking in fave games? Soloing darker themes? Gold West mancala? Deckbuilding in Agricola vs Magic? Burgundy Deluxe edition? Mainstream sponsors? Melodice? New ideas for legacy games? Board game trading? Colonization theme in board games? Catan? Top 5 classics? Alternate contest entry? Prime + Twitch? Deeper game analysis videos? Stardew Valley? Ark Nova? Killing in games? Rahdo retiring in 5? •••[1:34:43] Personal Q&A►►► Post scarcity when? Severance? Religion in a post scarcity world? Max pets? Preferred immortality length? Newlywed tips? My half sister? 2p trick takers (sorry should have been in the games section)? Breakfast food? Retirement passing the time? Blown Away? Jen’s WOW? Doggos! •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Rahdo-Talks-Through-Episode-83-Apr-2022-e1hg7d2',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 8977,\n",
       "   'published': '4/21/2022'},\n",
       "  {'uid': '3a60e9ea-b5c0-5917-9b9d-4da45dde7ba4',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO5185210829.mp3',\n",
       "   'title': \"The R&R Show #37 - top 10 games we'd buy right now\",\n",
       "   'subtitle': None,\n",
       "   'summary': \"It's a total coincidence, but how about celebrating the 10 year anniversary off the channel by getting 10% off for a week?! :)\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-37---top-10-games-wed-buy-right-now-e1hddbm',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 2409,\n",
       "   'published': '4/20/2022'},\n",
       "  {'uid': '1859c79f-ee56-50fc-804a-88beb24097ba',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO4512522087.mp3',\n",
       "   'title': 'The R&R Show #37 EXTENDED EDITION',\n",
       "   'subtitle': None,\n",
       "   'summary': 'In addition to the normal show, this week we do a new top3, a deep love shoutout, a new ruel ranks, and some Q&A! :)',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-37-EXTENDED-EDITION-e1hde8h',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 8305,\n",
       "   'published': '4/20/2022'},\n",
       "  {'uid': 'f88f7c5f-b2ac-5cf5-a792-49c701dfc373',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO5569850636.mp3',\n",
       "   'title': 'The R&R Show #36 | Top 100 Games (50-41)',\n",
       "   'subtitle': None,\n",
       "   'summary': 'This week Ruel and I crack our top 50 games of all time as the ultimate countdown continues (and ruel tries out his hand modeling skills) :)',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-36--Top-100-Games-50-41-e1h3rff',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 3619,\n",
       "   'published': '4/12/2022'},\n",
       "  {'uid': '3783ce27-250f-51e6-ad90-93cb429ed85f',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO6518895097.mp3',\n",
       "   'title': 'The R&R Show #36 EXTENDED EDITION',\n",
       "   'subtitle': None,\n",
       "   'summary': \"It's the return of the R&R-gument, some more this or that, and a bit of trivia to round up the ongoing countdown of Ruel's and my top100 games of all time! :)\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-36-EXTENDED-EDITION-e1h3r0e',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 8370,\n",
       "   'published': '4/12/2022'},\n",
       "  {'uid': '6f23d561-c956-5282-9e94-15ac54aa7909',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO8052411497.mp3',\n",
       "   'title': 'The R&R Show #35 EXTENDED EDITION',\n",
       "   'subtitle': None,\n",
       "   'summary': 'Oh my! Ruel and I had a LOT of segments to catup up with in the pre-show today, and I really enjoyed the conversation I must say! :)',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-35-EXTENDED-EDITION-e1gpop3',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 8548,\n",
       "   'published': '4/6/2022'},\n",
       "  {'uid': 'b24dc3a2-f09b-5f55-a639-ce6bf75a5b7f',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO2030199070.mp3',\n",
       "   'title': 'The R&R Show #35 - Top 100 Games (60-51)',\n",
       "   'subtitle': None,\n",
       "   'summary': \"The games keep getting better every week in our ongoing t100 countdown, but that's to be expected I reckon! :)\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-35---Top-100-Games-60-51-e1gpoau',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 3408,\n",
       "   'published': '4/6/2022'},\n",
       "  {'uid': '372557eb-1fb4-5f75-ae73-e3ad059069bb',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO1550255343.mp3',\n",
       "   'title': 'March 2022 Round Up EXTENDED EDITION',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Another month, and another big bunch of games to talk about! This time, I'm also posting the full live extended episode from Twitch, so it includes additional Q&A, some unboxings, and other silliness. Let me know if you don't think this should be on the podcast and you'd prefer to stick to just the main show! :)\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/March-2022-Round-Up-EXTENDED-EDITION-e1gjao0',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 8323,\n",
       "   'published': '4/1/2022'},\n",
       "  {'uid': '9df39d4a-6663-5dd1-9633-74d3c5e96cf6',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO8344485611.mp3',\n",
       "   'title': 'March 2022 Roundup',\n",
       "   'subtitle': None,\n",
       "   'summary': '24 games this month, a very brief celebratory \"we made 10 years\" at the end... I should probably make a bigger deal about such a big milestone, but that\\'s just not me! NOTE: this month i\\'m also experimenting with putting the longer EXTENDED EDITION up as well on the feed. Let me know if that\\'s a problem or a good thing :)',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/March-2022-Roundup-e1gibp4',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 4176,\n",
       "   'published': '4/1/2022'},\n",
       "  {'uid': 'e56ee19d-b0ed-5388-ab5b-3538831f0e97',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO5796448472.mp3',\n",
       "   'title': 'The RNR Show #34 - Top 10 Upcoming Kickstarters',\n",
       "   'subtitle': None,\n",
       "   'summary': 'Ruel and I have a LOT of crowdfunding games to talk about this week, and and an even more important fundraising campaign too: https://www.crowdfunder.co.uk/p/uganda-village-boardgame-convention-2022',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RNR-Show-34---Top-10-Upcoming-Kickstarters-e1geogj',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 3625,\n",
       "   'published': '3/29/2022'},\n",
       "  {'uid': '7b6f566c-19a6-529c-9c45-bd228809e02c',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO7362722134.mp3',\n",
       "   'title': 'The R&R Show #34 EXTENDED EPISODE',\n",
       "   'subtitle': None,\n",
       "   'summary': \"As always, there's a lot of extra content in the pre-show and a bit in the post show as well! :) Plus fundraising for a very important cause: https://www.crowdfunder.co.uk/p/uganda-village-boardgame-convention-2022 :)\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-34-EXTENDED-EPISODE-e1geoou',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 8604,\n",
       "   'published': '3/29/2022'},\n",
       "  {'uid': 'eb54b023-f6b7-5515-b0a1-563704e10184',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO3549368647.mp3',\n",
       "   'title': 'The R&R Show #33 EXTENDED EDITION',\n",
       "   'subtitle': None,\n",
       "   'summary': \"In addition to talking about the best games to buy in the spring clearance super sale (in our opinions), we also ruel-rank a new game, update jen's Ukrainian fundraising drive, dig deep in my family's history, and other fun stuff! :)\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-33-EXTENDED-EDITION-e1g42g8',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 8501,\n",
       "   'published': '3/23/2022'},\n",
       "  {'uid': 'f936395f-c45d-5a04-8c6d-0d27ae0bab61',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO6370359294.mp3',\n",
       "   'title': \"The R&R Show #33 - Top 10 Games We'd BUY RIGHT NOW! :)\",\n",
       "   'subtitle': None,\n",
       "   'summary': \"There's a huge sale on at show sponsor funagain's website this week, so ruel and i figured we'd take a quick scan of the 400 or so games and come up with our top10 must haves, and as always we've come up with something old, something new, and so forth! :)\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-33---Top-10-Games-Wed-BUY-RIGHT-NOW-e1g41qj',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 2744,\n",
       "   'published': '3/23/2022'},\n",
       "  {'uid': '4abbf106-cf2d-5d61-bae3-628b131fe7f8',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO3633238980.mp3',\n",
       "   'title': 'Rahdo Talks Through►►► Episode #82 (Mar 2022)',\n",
       "   'subtitle': None,\n",
       "   'summary': '•••[2:10] Games Q&A►►► Game perfection? Legacy expansions? Video game devs enjoying boardgames? Ark Nova the new Wingspan? Oak? Nightmare Cathedral? App boardgames not “real” boardgames? Best mancala games? Fresco update? Euro storytelling games? Twitch? Beyond the Sun? Culled games fate? Fave solo games? Game storage? Forbidden Island? Responsible runthroughs? Essen 2022? Uwe Rosenberg 2p games? Jen’s games of DTW? Ezra Klein games episode? •••[1:35:28] Personal Q&A►►► Immortality implications? Optimism in today’s world? Upcoming TV shows? Alcohol? Marijuana? Recreational drugs in general? Chickens routine? Funny stories? Doggos! Words of wisdom? •••Send your questions to questions@rahdo.com',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Rahdo-Talks-Through-Episode-82-Mar-2022-e1fr67u',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 10859,\n",
       "   'published': '3/17/2022'},\n",
       "  {'uid': 'd686d4bf-523c-51be-8917-d69742fdcac5',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO4324099523.mp3',\n",
       "   'title': 'The R&R Show #32 EXTENDED EDITION',\n",
       "   'subtitle': None,\n",
       "   'summary': 'If you want more R&R, here\\'s the place, because in addition to continuing our top100 games countdown, we \"ruel ranked\" 3 additional games, did a new top3, and had some time for Q&A at the end! :)',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-32-EXTENDED-EDITION-e1fpfbb',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 7753,\n",
       "   'published': '3/16/2022'},\n",
       "  {'uid': '07a2ff1d-0f66-5c8d-850f-788a861ebdf9',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO6788409838.mp3',\n",
       "   'title': 'The R&R Show #32 - top 100 games (70-61)',\n",
       "   'subtitle': None,\n",
       "   'summary': 'Ruel and I continue our epic countdown of the best of all time... I get more euroey, and ruel surprises with some off games that are now on my bucket list! :)',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-32---top-100-games-70-61-e1fpeto',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 2900,\n",
       "   'published': '3/16/2022'},\n",
       "  {'uid': 'a3f7a762-92dd-5b97-8c62-c4124445742e',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO2911768085.mp3',\n",
       "   'title': 'February 2022 Round Up',\n",
       "   'subtitle': None,\n",
       "   'summary': \"19 games talked about in today's roundup. Let me apologize right now for being 11 days late, and also for missing 2 games (which will get mentioned in next month's roundup!) To make up for the gaffs, Jen makes a special guest appearance this time! If you'd rather watch than listen, here's the youtube link: https://youtu.be/DPYpBNpZV4c\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/February-2022-Round-Up-e1fif06',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 4211,\n",
       "   'published': '3/11/2022'},\n",
       "  {'uid': '61300bb8-ae77-5efb-9c2d-2851c49cbf7c',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO5752364602.mp3',\n",
       "   'title': 'The R&R Show #31 EXTENDED EDITION',\n",
       "   'subtitle': None,\n",
       "   'summary': 'In addition to the t100 countdown continuing, today we do a couple of Ruel Ranks, a new top3, and tell stories of the Dice Tower West convention :)',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-31-EXTENDED-EDITION-e1fethg',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 8542,\n",
       "   'published': '3/9/2022'},\n",
       "  {'uid': '62745150-5fdb-55da-aa31-fe159fc3c914',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO2792932123.mp3',\n",
       "   'title': 'The R&R Show #31 - Top 100 Games of All Time (80-71)',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Today we're continuing our t100 countdown, and Jen announces a a new glass art line for fundraising to help Ukraine!\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-31---Top-100-Games-of-All-Time-80-71-e1fetdf',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 3168,\n",
       "   'published': '3/9/2022'},\n",
       "  {'uid': '2b6eff3d-d49a-541d-96ca-5d0c3ca23876',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO2123331950.mp3',\n",
       "   'title': 'The R&R Show #30 - EXTENDED EDITION',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Hey everybody, we're talking about 24 upcoming crowdfunding games today that have caught our eye! Plus, we're also raising funds for Ukraine... please check out https://www.justgiving.com/crowdfunding/TLNUKRAINE?utm_term=rgqq2GKaz for details :) But that's not all... we do some Q&A, talk about DTW, and work our way through a surprisingly tough Top 3!\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-30---EXTENDED-EDITION-e1f2948',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 6693,\n",
       "   'published': '3/1/2022'},\n",
       "  {'uid': 'b17ea8da-cddf-5c8d-a261-2ec2b4d60472',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO9766162261.mp3',\n",
       "   'title': 'The R&R Show #30 - top10 upcoming crowdfunding games',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Hey everybody, we're talking about 24 upcoming crowdfunding games today that have caught our eye! Plus, we're also raising funds for Ukraine... please check out https://www.justgiving.com/crowdfunding/TLNUKRAINE?utm_term=rgqq2GKaz for details :)\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-30---top10-upcoming-crowdfunding-games-e1f28os',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 3441,\n",
       "   'published': '3/1/2022'},\n",
       "  {'uid': '296a819b-dcc2-5baf-aabc-1432f61a4e1a',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO8833549842.mp3',\n",
       "   'title': 'The R&R Show #29 EXTENDED EDITION',\n",
       "   'subtitle': None,\n",
       "   'summary': \"It's time for the R&R show again, and this week, in addition to counting down new (and some old) games we'd BUY RIGHT NOW, we also do some ruel ranking, quite a bit of personal trivia (some funny, some tragic), and make time for Q&A at the end :)\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-29-EXTENDED-EDITION-e1epj5g',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 7461,\n",
       "   'published': '2/23/2022'},\n",
       "  {'uid': '3b2454f8-85f1-51df-92f0-a9966ed11b1e',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO9836923658.mp3',\n",
       "   'title': \"The R&R Show #29 - Top 10 Games We'd Buy Right Now (Feb '22)\",\n",
       "   'subtitle': None,\n",
       "   'summary': \"Okay everybody, we're going to be taking a bit of time off from the top100 games of all time countdown to celebrate something old, something new, something borrowed and something blue in our monthly look at our own personal hotness lists :)\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-29---Top-10-Games-Wed-Buy-Right-Now-Feb-22-e1epipm',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 2281,\n",
       "   'published': '2/23/2022'},\n",
       "  {'uid': '72801fd6-72bc-55c6-8725-22656790698a',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO8766345252.mp3',\n",
       "   'title': 'The R&R Show #28 - EXTENDED EDITION',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Okay, so for starters we're continuing the top100 countdown, with #90-81. Also we did a top 3 guilty pleasure movies, rated Riftforce, and dug deep on some Mr Rogers trivia, and there's time left over for Q&A at the end :)\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-28---EXTENDED-EDITION-e1ef2ig',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 7740,\n",
       "   'published': '2/18/2022'},\n",
       "  {'uid': 'd9f1c23f-1746-58bf-97c6-fee1c1d93076',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO4953846400.mp3',\n",
       "   'title': 'The R&R Show #28 - Top 100 (90-81)',\n",
       "   'subtitle': None,\n",
       "   'summary': \"The countdown continues, and we're giving away a copy of Fog of Love as well!\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-28---Top-100-90-81-e1ef29h',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 3464,\n",
       "   'published': '2/18/2022'},\n",
       "  {'uid': 'cb828f78-0f8b-57e1-9399-97c6e2e6fb67',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO5128080047.mp3',\n",
       "   'title': 'Rahdo Talks Through►►► Episode 81',\n",
       "   'subtitle': None,\n",
       "   'summary': \"•••Video version of this episode: https://youtu.be/5h-U0RfQHWI •••[1:34] Games Q&A►►► Carpe Diem rules changes? Choosing box covers? Boonlake standing? Libertalia remake? How to best read rules? Dealing with a game falling flat? Deckbuilder golden age? Scythe an engine builder? Scythe origin and me? X replacing Y examples? Playing games not for work? Alternatives to Marvel Champions? Upcoming top10s? Secret word auto-replies? Why go back to Libertalia? Ranking games on BGG? Ravensburger + Gamefound? Last boardgame I backed? Adventure Ink? Sign off origin? Pfister story modes? Mean humor in boardgame media? Underrated deckbuilders? Positivity in boardgame media? •••[1:11:06] Jen's Games Q&A►►► Graphic design in games? Fave box covers? High scoring vs low scoring games? Fave die? How do we play with others? •••[1:30:12] Personal Q&A►►► Motion sickness in VR? Chickens in winter? Shatner in space? Yang on McWhorter? Other VR games? Australian Survivor? Coping with old videogame work schedule? Breaking Everquest addiction? Matrix Resurrection? Anchor FM? Descript? The end of Corner to Corner? Lost in Translation? Princess and the Warrior? Haruki Murakami? Long term impact of divorce? Early pictures of me and Jen? Chickens in winter, part 2? What happened between videogame dev and rahdo runs through? English vs French? Hyphenated last names? NFTs in videogames? DOGGOS! Jen's words of wisdom! •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Rahdo-Talks-Through-Episode-81-e1edeih',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 11759,\n",
       "   'published': '2/15/2022'},\n",
       "  {'uid': '2d9dee7c-cee4-5e9f-aa08-034c8ad895d9',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO1088424910.mp3',\n",
       "   'title': 'The R&R Show #27 - EXTENDED',\n",
       "   'subtitle': None,\n",
       "   'summary': 'Not only did we start our top100 countdown in this episode, but if you check out the full length edition, we did a couple of ruel ranks, an r&r-gument, some \"there can be only one\" and had a spectacular mid-show breakdown! :)',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-27---EXTENDED-e1e50ch',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 8386,\n",
       "   'published': '2/9/2022'},\n",
       "  {'uid': '038e13f8-4fae-5365-8cfc-878b88a256e5',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO9670158890.mp3',\n",
       "   'title': 'The R&R Show #27 - Top 100 Games of All Time (#100-91)',\n",
       "   'subtitle': None,\n",
       "   'summary': 'Okay, time for the beginning of something big... for next several months, Ruel and I will be counting down our top100 of all time, starting today. Hopefully the audience enjoys as much as we enjoy talking about them! :)',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-27---Top-100-Games-of-All-Time-100-91-e1e509s',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 3207,\n",
       "   'published': '2/9/2022'},\n",
       "  {'uid': '9f43c34b-f6c1-5274-b2f5-792254a7cb7a',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO4216999193.mp3',\n",
       "   'title': 'The R&R Show #26 - EXTENDED EDITION',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Okay, in addition to talking about upcoming Kickstarters, this week Ruel & I talk about our favourite senses, do some trivia, and name our fave movies pre-1970, amongst other silly things! If you're rather than watch than listen, here's the youtube link: https://youtu.be/3bqYFYxuau4\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-26---EXTENDED-EDITION-e1dq06k',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 7291,\n",
       "   'published': '2/2/2022'},\n",
       "  {'uid': '51120e3c-cc7b-5536-b739-dc7852f99926',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO9237878257.mp3',\n",
       "   'title': \"The R&R Show #26 - Top 10 Upcoming Kickstarter Games for Feb '22\",\n",
       "   'subtitle': None,\n",
       "   'summary': \"Ruel and I are taking a loot at the coolest upcoming Kickstarters (in our opinions). If you'd rather watch this than listen, you can check it out on youtube at https://youtu.be/HPTU_JosSac :)\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-26---Top-10-Upcoming-Kickstarter-Games-for-Feb-22-e1dq053',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 3077,\n",
       "   'published': '2/2/2022'},\n",
       "  {'uid': 'c91c5c3b-1f7c-569f-b43c-7e2aae3ae9ea',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO5669232369.mp3',\n",
       "   'title': 'January 2022 Round Up',\n",
       "   'subtitle': None,\n",
       "   'summary': \"27 new games to talk about that were played in the month of January! Wowzers! If you'd rather watch than listen, check: https://youtu.be/Z3k-sS-lgwU\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/January-2022-Round-Up-e1dode3',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 4996,\n",
       "   'published': '2/2/2022'},\n",
       "  {'uid': '7f8f7d5a-d910-50e3-8cf1-f3be6b32f192',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO9655918138.mp3',\n",
       "   'title': 'The R&R Show #25 - EXTENDED EDITION',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Here's the extra long version of the episode, featuring live tech support, a new top3, two ruel ranks, Q&A, and other silliness! If you'd rather watch than listen, head over to https://youtu.be/9q16acDpe8o\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-25---EXTENDED-EDITION-e1df6v0',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 7761,\n",
       "   'published': '1/26/2022'},\n",
       "  {'uid': 'bb77d251-a816-5537-923e-d93c0aa2275d',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO5611838413.mp3',\n",
       "   'title': 'The R&R Show #25 - Top10 Games Under $20',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Hey everybody, today Ruel and I talked about our 10 great games below $20! If you'd like to watch rather than listen, head over to https://youtu.be/YMpGR5-AvwA\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-25---Top10-Games-Under-20-e1df6m4',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 2463,\n",
       "   'published': '1/26/2022'},\n",
       "  {'uid': '8c40392d-fea7-5e88-901a-5d5736d0834b',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO4019488305.mp3',\n",
       "   'title': 'The R&R Show #24 (Extended Edition)',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Hey everybody, this is the extra long edition of episode 24 of the R&R show, with an additional hour or so of behind the scenes going's on! :) To watch this in video form, head over to https://youtu.be/v-2i68S7JSM For more Ruel, check https://www.youtube.com/ruelgaviola\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-24-Extended-Edition-e1d5brp',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 7312,\n",
       "   'published': '1/21/2022'},\n",
       "  {'uid': 'dbc8a6d6-65c6-5814-92cf-f9b661258f8d',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO8899709640.mp3',\n",
       "   'title': 'The R&R Show #24 - Top 10 Remote Playable Games',\n",
       "   'subtitle': None,\n",
       "   'summary': 'And now... the latest episode of the R&R show! Rahdo and Ruel talk board games! To watch this in video form, head over to https://youtu.be/1nQQ-qOIJtk For more Ruel, check http://twitch.tv/ruelgaviola',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-24---Top-10-Remote-Playable-Games-e1d59e3',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 2825,\n",
       "   'published': '1/21/2022'},\n",
       "  {'uid': 'b749934c-4255-55ce-95eb-0d3e6fcfa64a',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO8119828839.mp3',\n",
       "   'title': 'Rahdo Talks Through►►► Episode 80',\n",
       "   'subtitle': None,\n",
       "   'summary': '•••[00:02:25] Games Q&A►►► Feld over Pfister? Imperium fall? NFTs in boardgames? Faiyum drop? Final Girl? 7 Wonders or Continents? Land vs Sea? Anunnaki? Stonemaier swingy cards? Aeon’s End the best & storage? Verdant vs other entwined drafting? Corrosion playtime? Future boardgame trends? Guessing Jen’s gaming preferences? The future for print&play? What game have I most influenced? How do I keep rules straight? Boardgames going mainstream? Asmodee sprawl? •••[01:10:01] Personal Q&A►►► How was our holiday season? Best farm dog? Driving differences in Europe? Potato donuts? Single world government? Die vs dice? Meat substitutes? What else do we miss from Europe? Annoyances living in Europe? My involvement in Gamer Glass? Rank these shows! 2.5x speed! Matt Fraction’s Hawkeye? Netflix Daredevil? Jen’s words of wisdom? DOGGOS!!! (spoiler warning) Hawkeye show thoughts? Spiderman No Way Home thoughts? •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Rahdo-Talks-Through-Episode-80-e1cvimd',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 9661,\n",
       "   'published': '1/15/2022'},\n",
       "  {'uid': 'bd14c55d-d59d-55b4-aab5-531990228df1',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO7768293323.mp3',\n",
       "   'title': \"Top 10 BG Themes I'd Hope to See - EXTENDED EDITION\",\n",
       "   'subtitle': None,\n",
       "   'summary': \"Okay, here's the 2+ hour full audio episode, which includes actually coming up with the list helped by the audience! If you'd rather watch than listen, here's the link to the youtube video: https://youtu.be/eh4_M5RsvXc •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Top-10-BG-Themes-Id-Hope-to-See---EXTENDED-EDITION-e1cu7mc',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 7278,\n",
       "   'published': '1/14/2022'},\n",
       "  {'uid': '6749ab14-7a18-5c49-af6f-250170b7c8a3',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO3691441105.mp3',\n",
       "   'title': \"Top 10 BG Themes I'd Hope to See\",\n",
       "   'subtitle': None,\n",
       "   'summary': \"This is the result of a very interesting (and overall successful I think) experiment in audience collaboration project to come up with a new top10 list. If you'd rather watch than listen, here's the link to the youtube video: https://youtu.be/hl1vAoKmXMA •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Top-10-BG-Themes-Id-Hope-to-See-e1cu7t7',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 1417,\n",
       "   'published': '1/14/2022'},\n",
       "  {'uid': 'dd38acbf-2919-56ff-a002-6347d7669ab7',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO8202593094.mp3',\n",
       "   'title': 'Top 10 CGE Games',\n",
       "   'subtitle': None,\n",
       "   'summary': \"CGE is one of my favourite publishers, and here's my ten favourite games they produce! If you'd rather watch than listen, here's the link to the youtube video: https://youtu.be/B2OwCc4i5zo •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Top-10-CGE-Games-e1ctl0e',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 1924,\n",
       "   'published': '1/13/2022'},\n",
       "  {'uid': '80764637-2af0-58c6-85d9-4b655dd5fc39',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO4447853542.mp3',\n",
       "   'title': 'The R&R Show #23 (Extended Edition)',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Hey everybody, this is the extra long edition of episode 23 of the R&R show, with an additional hour or so of behind the scenes going's on! :) To watch this in video form, head over to https://youtu.be/BezLIuNgUGc For more Ruel, check https://www.youtube.com/ruelgaviola\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-23-Extended-Edition-e1criih',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 7484,\n",
       "   'published': '1/13/2022'},\n",
       "  {'uid': 'cb866e42-4b2b-5ba6-ab99-4c26ddbdbd28',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO9391562995.mp3',\n",
       "   'title': 'The R&R Show #23 - Top 10 Anticipated Expansions of 2022',\n",
       "   'subtitle': None,\n",
       "   'summary': 'And now... the latest episode of the R&R show! Rahdo and Ruel talk board games! To watch this in video form, head over to https://youtu.be/FaD0DBLwauE For more Ruel, check http://twitch.tv/ruelgaviola',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-23---Top-10-Anticipated-Expansions-of-2022-e1cri8c',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 2600,\n",
       "   'published': '1/13/2022'},\n",
       "  {'uid': '2663dc1c-c534-59c0-ae17-f8b20c2a7eee',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO9382301002.mp3',\n",
       "   'title': 'The R&R Show #22 (Extended Edition)',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Hey everybody, this is the extra long edition of episode 22 of the R&R show, with an additional hour or so of behind the scenes going's on! :) To watch this in video form, head over to https://youtu.be/0Lb85ttXH5c For more Ruel, check https://www.youtube.com/ruelgaviola\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-22-Extended-Edition-e1chn55',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 7597,\n",
       "   'published': '1/6/2022'},\n",
       "  {'uid': '30edf4e4-5311-561a-a547-efebb903df6d',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO9576388766.mp3',\n",
       "   'title': 'The R&R Show #22 - Top 10 Upcoming Kickstarters (Jan 2021)',\n",
       "   'subtitle': None,\n",
       "   'summary': 'And now... the latest episode of the R&R show! Rahdo and Ruel talk board games! To watch this in video form, head over to https://youtu.be/7M-dXgKTgl8 For more Ruel, check http://twitch.tv/ruelgaviola',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-22---Top-10-Upcoming-Kickstarters-Jan-2021-e1chn31',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 2750,\n",
       "   'published': '1/6/2022'},\n",
       "  {'uid': 'd3aa5c45-3873-5244-aab6-2423b05f601e',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO3855885391.mp3',\n",
       "   'title': 'Top 25 Most Anticipated Games for 2022 (normal edition)',\n",
       "   'subtitle': None,\n",
       "   'summary': 'Oops, 2022 has only begun and I\\'m already making goofs! I uploaded the extended edition of the show last night, but forgot to upload the shorter version that cuts out the first \"preshow\" jibber jabber! Here it is now. Hope you enjoy! If you\\'d rather watch than listen, here\\'s the link to the youtube video: https://youtu.be/C9bplzh4u6g or the full show here: https://www.twitch.tv/videos/1249959548 •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Top-25-Most-Anticipated-Games-for-2022-normal-edition-e1cdvc6',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 6621,\n",
       "   'published': '1/2/2022'},\n",
       "  {'uid': '28d34de3-5173-5aaf-981a-a575ff9c0ae9',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO3248306524.mp3',\n",
       "   'title': 'Top 25 Most Anticipated Games of 2022 (extended edition)',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Here we go, time for the yearly anticipation list. I've uploaded the entire show that was streamed live, including the warmup pre-show, and the mid-show break. Hope you enjoy! If you'd rather watch than listen, here's the link to the youtube video: https://youtu.be/C9bplzh4u6g or the full show here: https://www.twitch.tv/videos/1249959548 •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Top-25-Most-Anticipated-Games-of-2022-extended-edition-e1cdf88',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 8997,\n",
       "   'published': '1/2/2022'},\n",
       "  {'uid': '96b3695f-7f3f-538d-891c-e732d954bfe0',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO3005730882.mp3',\n",
       "   'title': 'Rahdo Rounds Up►►► December 2021',\n",
       "   'subtitle': None,\n",
       "   'summary': \"And now... a episode outlining the new games we played in December, plus Q&A from the live stream after! If you'd rather watch this in video form: https://youtu.be/FW50dReT_GU •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Rahdo-Rounds-Up-December-2021-e1cb90c',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 5116,\n",
       "   'published': '12/31/2021'},\n",
       "  {'uid': '05735849-c37d-58ac-a92b-fe9937c7c624',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO1968167374.mp3',\n",
       "   'title': 'The R&R Show #21 (Extended Edition)',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Hey everybody, this is the extra long edition of episode 21 of the R&R show, with an additional hour or so of behind the scenes going's on! :) To watch this in video form, head over to https://youtu.be/eUDmWMWZwOY For more Ruel, check https://www.youtube.com/ruelgaviola\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-21-Extended-Edition-e1c9ots',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 7759,\n",
       "   'published': '12/29/2021'},\n",
       "  {'uid': '8ba65ca5-de3f-51cc-af55-4455e0beef74',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO6228032444.mp3',\n",
       "   'title': \"The R&R Show #21 - Top 10 Games We'd Buy Right Now! (december 2021)\",\n",
       "   'subtitle': None,\n",
       "   'summary': 'And now... the latest episode of the R&R show! Rahdo and Ruel talk board games! To watch this in video form, head over to https://youtu.be/AxYyD-ZOmGI For more Ruel, check http://twitch.tv/ruelgaviola',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-21---Top-10-Games-Wed-Buy-Right-Now--december-2021-e1c8rnu',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 3197,\n",
       "   'published': '12/29/2021'},\n",
       "  {'uid': '05441a8a-9c38-56bf-86e8-d0d32d300c4f',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO4907397399.mp3',\n",
       "   'title': 'Top 10 AEG Games',\n",
       "   'subtitle': None,\n",
       "   'summary': \"AEG is one of my favourite publishers, and here's my ten favourite games they produce! If you'd rather watch than listen, here's the link to the youtube video: https://youtu.be/Ha-mrnjfVAA •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Top-10-AEG-Games-e1c549t',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 1629,\n",
       "   'published': '12/27/2021'},\n",
       "  {'uid': '8af761a9-f595-5018-a2b9-44e6faa8eb60',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO2198021466.mp3',\n",
       "   'title': 'Top 10 of 2021 (preliminary)',\n",
       "   'subtitle': None,\n",
       "   'summary': \"It's Christmas time, so that means it's time for my preliminary top10 of the year, and this year it's joined by a bunch of other stuff that I streamed live on Christmas Eve. If you'd rather watch, the video can be found here: https://youtu.be/B7xgOikdy0w •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Top-10-of-2021-preliminary-e1c53ht',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 5089,\n",
       "   'published': '12/25/2021'},\n",
       "  {'uid': '5e68f862-9232-5a3c-8179-aaf62fd6aaf5',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO5694816695.mp3',\n",
       "   'title': 'The R&R Show #20 - Top 10 Games for Family Gatherings',\n",
       "   'subtitle': None,\n",
       "   'summary': 'And now... the latest episode of the R&R show! Rahdo and Ruel talk board games! To watch this in video form, head over to https://youtu.be/dcJAF6nLcTE For more Ruel, check http://twitch.tv/ruelgaviola',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-20---Top-10-Games-for-Family-Gatherings-e1bnj30',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 2651,\n",
       "   'published': '12/18/2021'},\n",
       "  {'uid': '8b2cfc93-c9e8-5c7c-8283-dfa9e091d6c2',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO3913334502.mp3',\n",
       "   'title': 'The R&R Show #20 (Extended Edition)',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Hey everybody, this is the extra long edition of episode 20 of the R&R show, with an additional hour or so of behind the scenes going's on! :) To watch this in video form, head over to https://youtu.be/e1spWstoUck For more Ruel, check https://www.youtube.com/ruelgaviola 8:26 Pre Show 5:39 Avatar teething / Mod training 24:49 An R&R-gumnet 41:57 Top 3 voting 46:00 Carrara Giveaway 47:32 Top 3 Tile Laying Games 56:24 Secret Word? 1:04:44 Thanks from Jen 1:08:20 The R&R Show 1:52:32 Post Show 1:54:35 T10 Runners Up 2:01:39 Basketball Free For All 2:05:06 Goodbye to The Dice Tower Podcast 2:09:51 Outro\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-20-Extended-Edition-e1bnk2v',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 7949,\n",
       "   'published': '12/18/2021'},\n",
       "  {'uid': '4bd3b122-8da9-5141-89d4-c61427098b6d',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO2182186547.mp3',\n",
       "   'title': 'The R&R Show #19 - Top 10 Games Accessories',\n",
       "   'subtitle': None,\n",
       "   'summary': 'And now... the latest episode of the R&R show! Rahdo and Ruel talk board games! To watch this in video form, head over to https://youtu.be/LssBfyjVIKE For more Ruel, check http://twitch.tv/ruelgaviola',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-19---Top-10-Games-Accessories-e1bdide',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 3043,\n",
       "   'published': '12/9/2021'},\n",
       "  {'uid': 'a91082a9-d6f9-56be-8ed3-256888390887',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO9167256202.mp3',\n",
       "   'title': 'The R&R Show #19 (Extended Edition)',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Hey everybody, this is the extra long edition of episode 19 of the R&R show, with an additional hour or so of behind the scenes going's on! :) To watch this in video form, head over to https://youtu.be/JATCxk9ooGA For more Ruel, check https://www.youtube.com/ruelgaviola\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-19-Extended-Edition-e1bdile',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 7201,\n",
       "   'published': '12/9/2021'},\n",
       "  {'uid': '73e272a2-0a2f-5791-8b49-34ee03db1cc2',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO5849063102.mp3',\n",
       "   'title': 'Rahdo Talks Through►►► Episode 79',\n",
       "   'subtitle': None,\n",
       "   'summary': \"•••[00:00:58] Games Q&A►►► Game of BGG.con? Best Machi Koro-inspired game? Imperium rules? Learning Golem? Introvert at a boardgame convention? Saying no to covering games? Taking a chance on covering games? Making choices for Jen? Clinic expansion? Weather Machine? Bag drafting? Die vs dice? Classifying spin-offs? Standing on shoulders? Boardgames in infancy? Thumbnails? Honorable mentions in the R&R show? Nations revisit on Twitch? Inseparable roll & write? Game dates? Freedom from serfdom as theme? How does Orleans Invasion rank as a co-op? Automania? Hegemony? Merv vs Zapotec? Rating Lopiano games for interaction? Music for the podcast? Survivor bias? Burgundy campaign? Red Cathedral a new classic? How best to support the channel? Kokopelli ranking? How did Jen do at BGG.con? Jen enjoying Jen Jogs show? Everquest as a boardgame? Would Jen continue boardgaming without me? •••[01:33:08] Personal Q&A►►► Uplifting TV shows? Get Back documentary? What would I do with collection if I stopped gaming? Dark Waters? Fave and least fave holiday food? Trypophobia? Fave desserts? Top 5 tv shows? Why interested in psychology? Ready for the apocalypse? Jen's other crafts? Jen's glass world expanding? Parent's staying together for the kids? Divorce's effects on the kids? Silvan Ranger controversy? Celebrating Thanksgiving and Christmas, growing up and now? Dealing with stress? New season for Survivor? Empathy on YouTube? Nate in season 2 of Ted Lasso? Eternals? Aging parents? Fictional product sponsor? What would replace boardgames? Ever go back to videogames? Jen's thoughts on my videogames? Jen's and my recall? Follow the videogame industry? Videogame industry turn over? Crunch time? Disasterous experiences? Working from home? Learning new skills? Words of wisdom? Dog pics! •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Rahdo-Talks-Through-Episode-79-e1bc0eo',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 14099,\n",
       "   'published': '12/7/2021'},\n",
       "  {'uid': 'd49e693b-95dd-5053-aa1b-c0ce924cf9b0',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO2021187629.mp3',\n",
       "   'title': 'The R&R Show #18 (Extended Edition)',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Hey everybody, this is the extra long edition of episode 18 of the R&R show, with an additional hour or so of behind the scenes going's on! :) To watch this in video form, head over to https://youtu.be/o457hjJPoSI For more Ruel, check https://www.youtube.com/ruelgaviola\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-18-Extended-Edition-e1b2h3p',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 7321,\n",
       "   'published': '12/2/2021'},\n",
       "  {'uid': 'e3d36746-5d2b-5158-bfc9-4199f37ff7b9',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO6713729343.mp3',\n",
       "   'title': 'The R&R Show #18 - Top 10 Upcoming Crowdfunding Games',\n",
       "   'subtitle': None,\n",
       "   'summary': 'And now... the latest episode of the R&R show! Rahdo and Ruel talk board games! To watch this in video form, head over to https://youtu.be/tgiSlgbk_-c For more Ruel, check http://twitch.tv/ruelgaviola',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-18---Top-10-Upcoming-Crowdfunding-Games-e1b2cab',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 2887,\n",
       "   'published': '12/2/2021'},\n",
       "  {'uid': '7642b610-20a6-544b-ab6c-a143423ab63a',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO1364513181.mp3',\n",
       "   'title': 'Rahdo Rounds Up►►► November 2021',\n",
       "   'subtitle': None,\n",
       "   'summary': \"And now... a episode outlining the new games we played in November! If you'd rather watch this in video form: https://youtu.be/I1O06SDwAX0 •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Rahdo-Rounds-Up-November-2021-e1b0lds',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 4890,\n",
       "   'published': '12/2/2021'},\n",
       "  {'uid': '278a3b94-dcc2-5ab6-a17b-12bfedad1901',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO8476004603.mp3',\n",
       "   'title': 'The R&R Show #17 (Extended Edition)',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Hey everybody, this is the extra long edition of episode 17 of the R&R show, with an additional hour or so of behind the scenes going's on! :) To watch this in video form, head over to https://youtu.be/lVzEZQOuC1Y For more Ruel, check https://www.youtube.com/ruelgaviola\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-17-Extended-Edition-e1anr0u',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 7298,\n",
       "   'published': '11/24/2021'},\n",
       "  {'uid': '3a6a7a86-eb3e-5926-9a0a-0936dec80483',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO1881309560.mp3',\n",
       "   'title': \"The R&R Show #17 - Top 10 Games We'd Give As Gifts\",\n",
       "   'subtitle': None,\n",
       "   'summary': 'And now... the latest episode of the R&R show! Rahdo and Ruel talk board games! To watch this in video form, head over to https://youtu.be/O1-w1jcRgwg For more Ruel, check http://twitch.tv/ruelgaviola',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-17---Top-10-Games-Wed-Give-As-Gifts-e1antjc',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 2541,\n",
       "   'published': '11/24/2021'},\n",
       "  {'uid': '22613f61-328f-5456-9029-c0b68d324adf',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO8326167656.mp3',\n",
       "   'title': 'The R&R Show #16 (Extended Edition)',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Hey everybody, this is the extra long edition of episode 16 of the R&R show, with an additional hour or so of behind the scenes going's on! :) To watch this in video form, head over to https://youtu.be/JZKfYukaAF8 For more Ruel, check https://www.youtube.com/ruelgaviola 5:00 Ruel Ranks 20:16 Chitchat 24:30 Flash Top 3 32:16 Contest giveway 34:16 Pre-show 41:21 The R&R Show 1:33:22 Post show 1:38:09 There Can Be Only One 1:39:55 Ruel Trivia 1:44:09 Rahdo Trivia 1:49:35 Q&A\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-16-Extended-Edition-e1acudd',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 7460,\n",
       "   'published': '11/17/2021'},\n",
       "  {'uid': 'b2fb2015-f747-590e-b6c8-17dc0df47c5d',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO3329219845.mp3',\n",
       "   'title': \"The R&R Show #16 - Top 10 Games We'll Never Get Rid Of\",\n",
       "   'subtitle': None,\n",
       "   'summary': 'And now... the latest episode of the R&R show! Rahdo and Ruel talk board games! To watch this in video form, head over to https://youtu.be/6ZFrOFEUFTY For more Ruel, check http://twitch.tv/ruelgaviola 0:00 Intro 5:04 Contest time 8:47 Top 10 Games Intro 12:20 10. Crokinole 16:22 9. Glory to Rome 19:19 8. Kohaku 22:44 7. Roll for the Galaxy 26:34 6. Samurai 30:24 5. Castles of Burgundy: Anniversary Edition 34:45 4. Paperback 38:04 3. Shadowrun Crossfire 43:42 2. Ticket to Ride 46:50 1. Pandemic 50:30 Outro',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-16---Top-10-Games-Well-Never-Get-Rid-Of-e1acpp5',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 3098,\n",
       "   'published': '11/17/2021'},\n",
       "  {'uid': 'f24ca959-3924-5c73-b27f-2ac5bc7e4b89',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO4269708917.mp3',\n",
       "   'title': 'The R&R Show #15 (extended edition)',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Hey everybody, this is the extra long edition of episode 15 of the R&R show, with an additional 70 minutes of behind the scenes going's on! :) To watch this in video form, head over to https://youtu.be/b5QtzuXXnQc For more Shea, check https://youtube.com/rtfmshow or http://shea.rahdo.com 0:00 Pre show 12:11 Mobile Markets & Cascadia giveaway 15:28 More Pre show 33:59 R&R Show, Part I 1:11:17 Mid-show break #1 1:28:25 R&R Show, Part II 1:31:53 Mid-show break #2 (BACON!) 1:37:15 R&R Show, Part III 2:06:08 Post show Q&A\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-15-extended-edition-e1a1oue',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 8092,\n",
       "   'published': '11/10/2021'},\n",
       "  {'uid': 'c9fb0e4f-e885-5845-ba1a-db5d538bada9',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO2246900128.mp3',\n",
       "   'title': 'The R&R Show #15 - Top 10 Sci Fi Games',\n",
       "   'subtitle': None,\n",
       "   'summary': \"And now... the latest episode of the R&R show! Rahdo and guest co-host Shea talk board games! To watch this in video form, head over to https://youtu.be/OX7tBpuagqk For more Shea, check https://youtube.com/rtfmshow or http://shea.rahdo.com 0:00 Intro 1:08 What's on Rahdo's Table? 5:12 What's on Shea's Table? 8:10 Contest time! 14:23 Top 10 Sci Fi Game 18:04 10. Terraforming Mars: Ares Expedition 22:08 9. Dune Imperium 28:07 8. Cosmic Colonies 31:20 7. Nemesis: Lockdown 37:11 6. CloudAge 40:38 5. Ganymede 45:18 4. Black Angel 50:13 3. Star Realms 54:35 2. Roll for the Galaxy 59:46 1. Twilight Imperium 1:08:11 Outro\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-15---Top-10-Sci-Fi-Games-e1a1nha',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 4152,\n",
       "   'published': '11/10/2021'},\n",
       "  {'uid': '67e82bbc-34ff-5cac-a1d3-6c7b11d7fcd1',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO9760085466.mp3',\n",
       "   'title': 'Rahdo Talks Through►►► Episode 78',\n",
       "   'subtitle': None,\n",
       "   'summary': '•••[00:02:07] Games Q&A►►► Wrath of Lich King qualification? Mythwind? Carnegie? London Dread & dice? Roll to resolves I like? Concordia a deckbuilder, part 3? Replaying top 20? Fractal: Beyond the Void? Roll Camera vs Intrepid? Dinosaur World? Cantaloop? Review vs Preview? Marvel Champions: Sinister Motives? Getting Jen to love Marvel Champions? What would happen to RRT without Jen? •••[00:59:46] Personal Q&A►►► Fatman Beyond? Masks in videos? My brother and mushrooms? Drinking while recording? Dynamic ads for podcast? •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Rahdo-Talks-Through-Episode-78-e19u24h',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 4514,\n",
       "   'published': '11/8/2021'},\n",
       "  {'uid': '6f6057eb-5a38-5b23-8f87-1987e617b93e',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO5800963390.mp3',\n",
       "   'title': 'The R&R Show #14 (extended edition)',\n",
       "   'subtitle': None,\n",
       "   'summary': 'Okay, so this is an experiment... after posting the latest R&R show, and then a \"bonus\" show pulling out an additional 30 minutes from the recent live stream, I decided to see what would happen if I put the *ENTIRE* 2+ hour stream up, unedited!!! So if you already listened to the R&R episode and the bonus episode, there\\'s still a lost you haven\\'t heard here, but it might be hard to find. But here\\'s time stamps to jump around! :) 0:00 Extended Edition Introduction 2:56 Countdown to LIVE 7:55 R&R Pre-show Intro 15:30 Ruel Ranks 26:56 Contest Winner! 31:33 More pre-show 33:36 There can be only one! 42:57 Secret word 49:58 The R&R Show Part 1 1:16:50 Mid-show break 1:30:52 The R&R Show Part 2 1:48:36 Post-show Intro 1:52:37 Q&A 1:57:58 Rahdo Trivia! 2:01:58 There can be only one! 2:05:20 Post-show wrapup! 2:14:47 Post streaming pickup!',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-14-extended-edition-e19q7lh',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 9280,\n",
       "   'published': '11/5/2021'},\n",
       "  {'uid': 'c5a5c5bc-c001-5011-a3c2-f4b862173475',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO6358735888.mp3',\n",
       "   'title': 'The R&R Bonus Show (Nov 2nd 2021)',\n",
       "   'subtitle': None,\n",
       "   'summary': 'And now... the first episode of the R&R Bonus show! Rahdo and Ruel talk board games! To watch this in video form, head over to https://youtu.be/7k5BTKeQpNg For more Ruel, check http://twitch.tv/ruelgaviola',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Bonus-Show-Nov-2nd-2021-e19ng7c',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 1968,\n",
       "   'published': '11/3/2021'},\n",
       "  {'uid': '2b267093-cd31-5e86-a6b9-dffbb8340145',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO5330813742.mp3',\n",
       "   'title': 'The R&R Show #14 - Top 10 Crowdfunding Games for November 2021',\n",
       "   'subtitle': None,\n",
       "   'summary': 'And now... the latest episode of the R&R show! Rahdo and Ruel talk board games! To watch this in video form, head over to https://youtu.be/V0tK7OzpJXY For more Ruel, check http://twitch.tv/ruelgaviola',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-14---Top-10-Crowdfunding-Games-for-November-2021-e19moqe',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 3902,\n",
       "   'published': '11/3/2021'},\n",
       "  {'uid': '8ed60f8c-f13a-5e3e-9d7e-09dd6560b11f',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO6582437435.mp3',\n",
       "   'title': 'Rahdo Rounds Up►►► October 2021',\n",
       "   'subtitle': None,\n",
       "   'summary': \"And now... a episode outlining the new games we played in October! If you'd rather watch this in video form: https://youtu.be/N7fVuBGK38A 1:34 [Shea] Dresden Gaming Table 2:19 Shea's 3. City of the Great Machine 4:10 Shea's 2. Circadians: Chaos Order 7:13 Shea's 1. Unfathomable 10:51 Introducing Ruel! 11:54 [Ruel] World Auto Racing 13:08 [Ruel] Perpetuity 14:48 15. Tabannusi 18:08 14. Paris: City of Lights 20:11 13. Siege of Runedar 22:32 12. Picture Perfect 24:48 11. Castle Party 28:28 10. 7 Wonders Architects 31:48 9. World of Warcraft: Wrath of the Lich King 34:22 8. Power Plants 37:18 7. Hegemony 42:33 6. Titania Ascending 45:52 5. Goblivion 50:37 4. Bitoku 54:19 3. Bardwood Grove 57:02 2. Messina 1347 1:00:48 1. Federation 1:06:10 Outro •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Rahdo-Rounds-Up-October-2021-e19jauh',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 4034,\n",
       "   'published': '11/1/2021'},\n",
       "  {'uid': 'efb54726-a416-50eb-8111-f11507543813',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO6104496293.mp3',\n",
       "   'title': \"The R&R Show #13 - Top 10 Games We'd Buy in October 2021\",\n",
       "   'subtitle': None,\n",
       "   'summary': 'And now... the latest episode of the R&R show! Rahdo and Ruel talk board games! To watch this in video form, head over to https://youtu.be/MbBAV5-2NDU For more Ruel, check http://twitch.tv/ruelgaviola',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-13---Top-10-Games-Wed-Buy-in-October-2021-e19dhmn',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 3991,\n",
       "   'published': '10/27/2021'},\n",
       "  {'uid': '4ffa171d-e8c6-5ce9-bf67-1cd989c06e06',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO3450892663.mp3',\n",
       "   'title': 'The R&R Show #12 - Top 10 Horror Games',\n",
       "   'subtitle': None,\n",
       "   'summary': 'And now... the latest episode of the R&R show! Rahdo and Ruel talk board games! To watch this in video form, head over to https://youtu.be/EX-j_dK2lr0 For more Ruel, check http://twitch.tv/ruelgaviola',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-12---Top-10-Horror-Games-e192t94',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 4318,\n",
       "   'published': '10/20/2021'},\n",
       "  {'uid': 'f58b85c3-5a5e-5e1e-aa86-d986cde8aa90',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO5263778486.mp3',\n",
       "   'title': 'Rahdo Talks Through►►► Episode 77',\n",
       "   'subtitle': None,\n",
       "   'summary': '•••[00:01:44] Games Q&A►►► Furnace updates? Top 10 guests? Patreon RSS link? Gamefound vs Kickstarter? Pandemic vs Fall of Rome? Player aids? Dice Tower West convention timing? Tik Tok boardgame discovery? Lords of Waterdeep storage? How did RRT break through? Posting Patreon exclusive peeks? Fave mechanism in Eleven? Changing Mombasa? Plunderous update? Delayed Essen games coverage? Patreon exclusive podcast? Co-op difficulty adjustments? Defining deck & deckbuilder? Speeding up long games? Geekgroup insights? Preferred game worlds? Eleven spurred real interest in football? Preferred covid precautions for BGG.con? R&R boost to Jen\\'s sales? Ranking Laukets? Emergent vs implicit narrative in games? Serialized vs episodic narrative in games? Approaching games with no setup variability? •••[02:08:56] Personal Q&A►►► Home exchange vacations? Developing music tastes? Survivor Australia? Fave Survivor elements? Mountains? Sunrise vs sunset? Birmingham? Why is Ted Lasso the best TV ever? How\\'s Jen\\'s eyes? Chicken protection? Raised by single moms? Who to dine with from videogame industry? Why didn\\'t I like What If? Marvel \"who wins in a fight\" bracket? Passion for gaming? MMOs? Losing pets? Jen\\'s words of wisdom? Doggo pics! •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Rahdo-Talks-Through-Episode-77-e18sv82',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 12371,\n",
       "   'published': '10/17/2021'},\n",
       "  {'uid': 'ecb312ea-9d89-5c79-a5e5-ef5771e610a9',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO4714347079.mp3',\n",
       "   'title': 'The R&R Show #11 - Top 10 MORE MORE MORE Games of Essen Spiel 2021',\n",
       "   'subtitle': None,\n",
       "   'summary': 'And now... the latest episode of the R&R show! Rahdo and Ruel talk board games! To watch this in video form, head over to https://youtu.be/YQBm05Eobco For more Ruel, check http://twitch.tv/ruelgaviola',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-11---Top-10-MORE-MORE-MORE-Games-of-Essen-Spiel-2021-e18oaig',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 3637,\n",
       "   'published': '10/13/2021'},\n",
       "  {'uid': '25f9df36-6dd9-536a-8cda-a3d344c3c396',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO5817724798.mp3',\n",
       "   'title': 'The R&R Show #10 - Top 10 Games of Essen Spiel 2021',\n",
       "   'subtitle': None,\n",
       "   'summary': 'And now... the latest episode of the R&R show! Rahdo and Ruel talk board games! To watch this in video form, head over to https://youtu.be/4npkxic2WEE For more Ruel, check http://twitch.tv/ruelgaviola',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-10---Top-10-Games-of-Essen-Spiel-2021-e18dlau',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 3827,\n",
       "   'published': '10/6/2021'},\n",
       "  {'uid': 'c5925205-eb39-5896-a4bd-cb59a905ad6d',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO4840728126.mp3',\n",
       "   'title': 'Rahdo Rounds Up►►► September 2021',\n",
       "   'subtitle': None,\n",
       "   'summary': \"And now... a episode outlining the new games we played in September! If you'd rather watch this in video form: https://youtu.be/kUBHWtR1pQQ 1:00 Shea's 4. Terraternity 2:53 Shea's 3. Voidfall 4:30 Shea's 2. Machi Koro 2 5:51 Shea's 1. Tindaya 9:51 Drop Drive 11:27 15. Eleven 14:07 14. The Hobbit: An Unexpected Party 16:26 13. Drawn to Adventure 20:12 12. Mandala Stones 23:14 11. Adventure of D (2nd edition) 26:07 10. Keep the Heroes Out 28:04 9. Murano Light Masters 32:16 8. Birdwatcher 36:03 7. Adventures of Robin Hood 40:48 6. Settlement 44:28 5. Bad Company 47:57 4. Origins: First Builders 51:22 3. Witchstone 55:02 2. The Crew: Mission Deep Sea 58:37 1. Dungeon Decorators •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Rahdo-Rounds-Up-September-2021-e185vmh',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 3848,\n",
       "   'published': '10/1/2021'},\n",
       "  {'uid': 'de58c5b5-53ce-559e-91bd-2c35994151b3',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO4262535000.mp3',\n",
       "   'title': 'The R&R Show #9 - Top 10 Upcoming Kickstarters for October 2021',\n",
       "   'subtitle': None,\n",
       "   'summary': 'And now... the latest episode of the R&R show! Rahdo and Ruel talk board games! To watch this in video form, head over to https://www.youtube.com/watch?v=oZQXaddP82Y For more Ruel, check http://twitch.tv/ruelgaviola',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-9---Top-10-Upcoming-Kickstarters-for-October-2021-e1835qk',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 3721,\n",
       "   'published': '9/29/2021'},\n",
       "  {'uid': 'ee783330-52e0-5415-aa34-e782cc3fa6c0',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO4996200552.mp3',\n",
       "   'title': \"The R&R Show #8 - Top 10 Games We'd Buy Right Now (September 2020)\",\n",
       "   'subtitle': None,\n",
       "   'summary': 'And now... the latest episode of the R&R show! Rahdo and Ruel talk board games! To watch this in video form, head over to https://youtu.be/QlyAGgL5Jgc For more Ruel, check http://twitch.tv/ruelgaviola',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-8---Top-10-Games-Wed-Buy-Right-Now-September-2020-e17oovp',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 4054,\n",
       "   'published': '9/22/2021'},\n",
       "  {'uid': '52bdad2a-1a71-57d0-8557-80b2c78aaa9c',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO6372109793.mp3',\n",
       "   'title': 'Rahdo Talks Through►►► Episode 76',\n",
       "   'subtitle': None,\n",
       "   'summary': \"•••[00:00:45] Games Q&A►►► Kickstarter as investment? Where's Tim? Different designer takes on my fave games? Murano Light Masters? Speaking out with channel? Objectively good games? Difficulty levels on co-ops? Jen in videos? Gaming with kids? Rank new Fresco modules? Let's Waltz modules? Boardgame TikTok? Kickstarter compilation campaigns? Solar Storm? Kickstarter vs crowdfunding? Essen on R&R? Deck builder vs hand builder? Art vs graphic design? Box fronts? Setting vs theme? Expansion ratings? Lid drift? Best games with definitive ending? How to stop focusing on winning? Direction vs point salad? Gaming with new gamers? •••[01:46:10] Personal Q&A►►► What do we like talking about? Words we hate? Game designer origin story? Concerts? Systemic racism outside of America? West Wing Weekly? Northern Wales? Getting more invovled? Countries we haven't been to yet? Route 66? Sports we could like? Prior relationships? Wandering eyes? Good friends? Fave chicken? Regenerative farming? Jen's words of wisdom? Doggo pics! •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Rahdo-Talks-Through-Episode-76-e1780b0',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 9853,\n",
       "   'published': '9/12/2021'},\n",
       "  {'uid': '4f74fac1-73cd-5cd4-bbab-e1142b61f8aa',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO3255095256.mp3',\n",
       "   'title': 'The R&R Show #7 - Top 10 Gencon 2021 Games!',\n",
       "   'subtitle': None,\n",
       "   'summary': 'And now... the latest episode of the R&R show! Rahdo and Ruel talk board games! To watch this in video form, head over to https://youtu.be/w-zSuuYwyBI For more Ruel, check http://twitch.tv/ruelgaviola To enter the contest, send the \"secret word\" as the subject line of an email to contest@rahdo.com (Secret word details revealed in the episode) :)',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-7---Top-10-Gencon-2021-Games-e173lj7',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 4021,\n",
       "   'published': '9/8/2021'},\n",
       "  {'uid': 'b1f53cdf-f0c1-5632-8b0a-07c2ba14058f',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO4595653219.mp3',\n",
       "   'title': 'Rahdo Rounds Up►►► August 2021',\n",
       "   'subtitle': None,\n",
       "   'summary': \"And now... a episode outlining the new games we played in August! If you'd rather watch this in video form: https://youtu.be/6tHKdUzgq4o Shea's Games 2:04 6. Super Truffle Pigs 3:51 5. Wild Serengeti 5:44 4. Mythic Mischief 9:30 3. Black Rose Wars: Rebirth 12:37 2. Agemonia 15:51 1. Oath Expansions 20:56 3. Fresco Expansion Box 23:27 2. Galaxy Trucker 2021 edition 28:24 1. Roll Camera: The B Movies Expansion Full Games 32:24 14. Lost Cities: Roll & Write 35:26 13. Lost Explorers 38:59 12. Gods Love Dinosaurs 42:22 11. Crack the Code 46:41 10. Spy Connection 49:40 9. Whirling Witchcraft 53:01 8. Khora: Rise of an Empire 57:50 7. Flamecraft 1:00:04 6. Islands in the Mist 1:03:35 5. Subastral 1:06:51 4. Verdant 1:09:27 3. Solar Sphere 1:14:39 2. Riverside 1:20:14 1. Let’s Make a Bus Route: Dice Game 1:25:27 Outro •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Rahdo-Rounds-Up-August-2021-e16strm',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 5213,\n",
       "   'published': '9/4/2021'},\n",
       "  {'uid': '275a9e24-4f6c-5cf2-b7f0-6e5b332f9a51',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO9981440865.mp3',\n",
       "   'title': 'The R&R Show #6 - Top 10 Games We Want to Play NOW!',\n",
       "   'subtitle': None,\n",
       "   'summary': 'And now... the latest episode of the R&R show! Rahdo and Ruel talk board games! To watch this in video form, head over to https://youtu.be/NGh88TiSIq0 For more Ruel, check http://twitch.tv/ruelgaviola To enter the contest, send the \"secret word\" as the subject line of an email to contest@rahdo.com (Secret word details revealed in the episode) :)',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-6---Top-10-Games-We-Want-to-Play-NOW-e16pr3t',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 3937,\n",
       "   'published': '9/2/2021'},\n",
       "  {'uid': 'fee92fad-fa55-5221-b7ea-294de042f1f4',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO9782627824.mp3',\n",
       "   'title': 'The R&R Show #5 - Top 10 (25 really) Upcoming Kickstarter Games',\n",
       "   'subtitle': None,\n",
       "   'summary': 'And now... the latest episode of the R&R show! Rahdo and Ruel talk board games! To watch this in video form, head over to https://youtu.be/UvDogBtyONQ For more Ruel, check http://twitch.tv/ruelgaviola To enter the contest, send the \"secret word\" as the subject line of an email to contest@rahdo.com (Secret word details revealed in the episode) :)',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-5---Top-10-25-really-Upcoming-Kickstarter-Games-e16firr',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 4043,\n",
       "   'published': '8/26/2021'},\n",
       "  {'uid': 'c6de8274-6839-5335-bb69-e0c0469b7fb3',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO4908986925.mp3',\n",
       "   'title': \"The R&R Show #4 - Top 10 Games We'd Buy Right Now (august 2020)\",\n",
       "   'subtitle': None,\n",
       "   'summary': 'And now... the latest episode of the R&R show! Rahdo and Ruel talk board games! To watch this in video form, head over to https://www.youtube.com/watch?v=qLYt84hA74k For more Ruel, check http://twitch.tv/ruelgaviola To enter the contest, send the \"secret word\" as the subject line of an email to contest@rahdo.com (Secret word details revealed in the episode) :)',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-4---Top-10-Games-Wed-Buy-Right-Now-august-2020-e164d9o',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 3838,\n",
       "   'published': '8/18/2021'},\n",
       "  {'uid': 'affa27f2-b762-526d-9cc0-45e720ddcb83',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO7623056043.mp3',\n",
       "   'title': 'Rahdo Talks Through►►► Episode 75',\n",
       "   'subtitle': None,\n",
       "   'summary': '•••[00:03:24] Games Q&A►►► Lamination? Box size? Green in green screen? Playing with others? Playing in restuarants? Audio show for patreon? Clickbait titles? Shea indicator? Colonization theme and alternatives? KS influence? Key to KS success? What game to \"legacy\"? Best Oniverse expansion? Objectively best game? Fix turns or variable ending? Top 10 multi-use cards? Top 10 language independent games? Shadowrun Crossfire? How to bring people in to boardgaming? Level designer skill? Code of conduct for live shows? Card luck in heavier games? Gloomhaven content? Rating games based on expansions? Timestamps in podcast? Artefacts? Meadow roads & environment cards? Other content creators should podcast? Ideal dog themed game? Undaunted series? Boardgame criticism? Watch Mojo fair use? Top 10 rules tweaks? Preferred co-op difficulty increaser? 6 key words to describe perfect game? Boardgame conventions with Delta? •••[02:15:38] Personal Q&A►►► Skipping hot topics for a bit? Leaving US? If I went back to videogame industry? Backyard chicken output? Patriot (Amazon prime tv series)? New Masters of Universe? Dog grooming? Awesome? Top10 European & American cities? Dystopian future vs idealized past? Hanging weight? US citizenship? Jen\\'s closing wisdom? Dog pics! •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Rahdo-Talks-Through-Episode-75-e15td6u',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 10726,\n",
       "   'published': '8/14/2021'},\n",
       "  {'uid': '3fec2230-7397-52cc-95cb-3fb13cdc45bb',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO2930054869.mp3',\n",
       "   'title': 'The R&R Show #3 - Boardgame Cage Match!',\n",
       "   'subtitle': None,\n",
       "   'summary': 'And now... the latest episode of the R&R show! Rahdo and Ruel talk board games! To watch this in video form, head over to https://youtu.be/arvAEflCaoE or https://www.twitch.tv/videos/1115257847 For more Ruel, check http://twitch.tv/ruelgaviola To enter the contest to win a new copy of Origins: First Builders, send the \"secret word\" as the subject line of an email to contest@rahdo.com (Secret word details revealed in the episode) :)',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-3---Boardgame-Cage-Match-e15pr3l',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 3809,\n",
       "   'published': '8/11/2021'},\n",
       "  {'uid': '9e514c94-8086-5284-9637-eef281bd694a',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO6985612402.mp3',\n",
       "   'title': 'Top 10 Solo Games w/ Maggie of ThinkerThemer',\n",
       "   'subtitle': None,\n",
       "   'summary': \"This month I'm joined by Maggie of Thinker Themer to count down all our fave solo games! If you'd rather watch the video of it, check https://www.youtube.com/watch?v=fw8mnA638b4, and you can find more of Thinker Themer at https://www.youtube.com/c/thinkerthemer •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Top-10-Solo-Games-w-Maggie-of-ThinkerThemer-e15lctm',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 6593,\n",
       "   'published': '8/10/2021'},\n",
       "  {'uid': 'c712ca71-ea24-5b84-aab1-e742b3fa4bf3',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO3332860044.mp3',\n",
       "   'title': 'The R&R Show episode #2',\n",
       "   'subtitle': None,\n",
       "   'summary': 'And now... the latest episode of the R&R show! Rahdo and Ruel talk board games! To watch this in video form, head over to https://www.youtube.com/watch?v=I96WQcouEqY or https://www.twitch.tv/videos/1108088686 For more Ruel, check http://twitch.tv/ruelgaviola To enter the contest to win a new copy of Origins: First Builders, send the \"secret word\" as the subject line of an email to contest@rahdo.com (Secret word details revealed in the episode) :)',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-episode-2-e15flob',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 4007,\n",
       "   'published': '8/4/2021'},\n",
       "  {'uid': '6061b332-29e2-5374-b88f-67d957e7775e',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO7165594532.mp3',\n",
       "   'title': 'Rahdo Rounds Up►►► July 2021',\n",
       "   'subtitle': None,\n",
       "   'summary': \"And now... a episode outlining the new games we played in July! If you'd rather watch this in video form: https://youtu.be/bCksX0m2k_o 0:00 Introduction 5:01 4. Lands of Galzyr 6:56 3. Assassin's Creed: Brotherhood of Venice 8:28 2. ISS Vanguard 11:00 1. Watergate 15:33 5. Rune Stones expansions 17:55 4. IaWW: Corruption & Ascension 19:25 3. Excavation Earth: It Belongs in a Museum 22:21 2. Marvel Champions: Venom 23:38 1. Rococo Deluxe 25:53 - For Sale 28:13 10. Majesty For the Realm 29:49 9. Nidavellir 32:51 8. Clever Cubed 34:54 7. Tussie Mussie 38:05 6. Indus 2500 BCE 40:13 5. Rajas of the Ganges: Dice Charmers 42:20 4. Oros 44:11 3. Venice 47:38 2. Remember Our Trip 49:30 1. Now or Never 52:34 Outro •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Rahdo-Rounds-Up-July-2021-e15al1d',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 3234,\n",
       "   'published': '8/1/2021'},\n",
       "  {'uid': '893040ab-a27a-5dbe-a0e7-303b9a15a69d',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO4976575764.mp3',\n",
       "   'title': 'The R&R Show Episode #1',\n",
       "   'subtitle': None,\n",
       "   'summary': 'And now... the premier episode of the R&R show! Rahdo and Ruel talk board games! To watch this in video form, head over to https://youtu.be/0X6XJZIWniw, https://www.twitch.tv/videos/1100935425, or https://www.facebook.com/watch/live/?v=4118237154878950 For more Ruel, check http://twitch.tv/ruelgaviola To enter the contest to win a new copy of FORT, send the \"secret word\" as the subject line of an email to contest@rahdo.com (Secret word details revealed in the episode) :)',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/The-RR-Show-Episode-1-e158j5m',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 3579,\n",
       "   'published': '7/30/2021'},\n",
       "  {'uid': 'f58f59ab-70a9-5666-8625-be69d74538d6',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO8068417660.mp3',\n",
       "   'title': 'Top 10 Card Games w/ Jason Perez of Shelf Stories',\n",
       "   'subtitle': None,\n",
       "   'summary': \"This month I'm joined by Jason Perez of Shelf Stories to count down all our fave card games! If you'd rather watch the video of it, check https://youtu.be/aB_DIU8os8M, and you can find more of Shelf Stories at https://youtube.com/shelfstories •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Top-10-Card-Games-w-Jason-Perez-of-Shelf-Stories-e14bq3i',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 8775,\n",
       "   'published': '7/12/2021'},\n",
       "  {'uid': '1e62a5a5-ae4c-571d-a14b-258789782150',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO3428465253.mp3',\n",
       "   'title': 'Rahdo Talks Through►►► Episode 74',\n",
       "   'subtitle': None,\n",
       "   'summary': \"•••[00:00:55] Games Q&A►►► Using copyrighted art in homemade games? Marvel Champions rating drop? Hallertau worth it for Agricola fan? Loop > Viscounts of West Kingdom co-op? Digital boardgames implementations? Ranking solo only games? BGG’s Gamenight show? Rahdo talk show? Polling podcast style? Content creators using platforms for social advocacy? Publishers response to said social advocacy? Best Martin Wallace games? https://recommend.games? Revisiting games post kickstarter? Card overlapping? Co-op turn structure? What games do we excel at? How often do I keep games after the runthrough? Boardgame value quiz? Can there be a fair BGG ranking system? Contributor to the channel who matches my tastes? Dismissing the importance of cultural representation? Unique devs? Playing Pandemic during a pandemic? Responding to a game we don’t like? What makes for good co-op? Justifying boardgame hobby? Getting reluctant friends to the table? Tawantinsuyu vs Barbarians: Invasion? •••[02:22:38] Personal Q&A►►► Why return to the UK? One world government? Evolving shooter videogame design? 3rd person vs 1st person? Hamas conservative? Defunding the police? One Punch Man? Team up with Stegmaier? Time to move on from colonization theme? Luck in games? What did I do on Fable? Jen’s fave of my videogames? Revisit my old games? Kickstarter vs Patreon? Flight advice? Jen’s and my vision status? Who do we think I look/sound like? Gun control in other countries? Investing during 2020? Ireland a pathway to EU? Jen's WOW? So many pet pics!!! •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Rahdo-Talks-Through-Episode-74-e13ttl1',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 13853,\n",
       "   'published': '7/4/2021'},\n",
       "  {'uid': 'b693b254-7fac-5f4f-9191-70d2b260a6a4',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO6077540366.mp3',\n",
       "   'title': 'June 2021 Round Up',\n",
       "   'subtitle': None,\n",
       "   'summary': \"UPDATE: a new version of the episode is now uploaded that has Shea's segment no longer playing at 1.4x speed. Sorry for the confusion!!! And now... a episode outlining the new games we played in June! If you'd rather watch this in video form: https://www.youtube.com/watch?v=6MfHJLpkWLg 3:16 4. Far Away (shea) 6:05 3. Too Many Bones (shea) 9:29 2. Distilled (shea) 14:37 1. Wild Assent (shea) 21:15 Dungeon & Kingdom (ryan) 22:32 4. Port Royal Unterwegs! 24:06 3. Welcome To… scenarios 26:33 2. Marvel Champions: Drax 28:36 1. Between 2 Castles: Secrets & Soirees 31:25 13. Die Tore der Welt: Das Kartenspiel 33:54 12. Aqualin 36:28 11. Mercado de Lisboa 40:18 10. Brew 43:37 9. Doodle Dungeon 47:43 8. Devil May Cry: Bloody Palace 53:54 7. Super-Skill Pinball 4-Cade 57:47 6. Soul Raiders 1:02:19 5. Etherfields 1:09:43 4. Imperium: Classics & Legends 1:13:12 3. Sheepy Time 1:16:27 2. Botanik 1:18:58 1. My Farm Shop 1:23:39 Outro •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/June-2021-Round-Up-e13rl0g',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 5059,\n",
       "   'published': '7/3/2021'},\n",
       "  {'uid': '0a3e37ee-a179-584f-9574-e48e98e54852',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO4991002810.mp3',\n",
       "   'title': 'Top 10 Kickstarter Games (revisisted)',\n",
       "   'subtitle': None,\n",
       "   'summary': \"This month I'm joined by Dan & Ashton of Shelfside to count down all our fave Kickstarter games! If you'd rather watch the video of it, check https://youtu.be/wSSrj2rwzHg, and you can find more of Shelfside at http://youtube.com/shelfside •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Top-10-Kickstarter-Games-revisisted-e12irv9',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 5540,\n",
       "   'published': '6/11/2021'},\n",
       "  {'uid': 'b3eaf0cd-143d-5484-ad44-b7c42361696f',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO2347948419.mp3',\n",
       "   'title': 'Rahdo Talks Through►►► Episode #73',\n",
       "   'subtitle': None,\n",
       "   'summary': \"•••[00:01:15] Games Q&A►►► 6 year milestone? Solo affects ranking? La Granja: No Siesta? Top 10 2p+ games? Youtube engagement impact? Variants best practices? Top 10 business simulators? Rahdo talk show? One hit wonders? Heavy scuba euro? 2p scaling in pirate games? Kittens expansion for Isle of Cats? Too much info about games? Inclusivity in games? Home made versions of games? Dice values in Troyes? Marvel Champions evolving? Best Crossfire mechanisms? Code of conduct too negative? Too many VP games? Tactics vs strategy? Dog themed games? Avoiding sig. other game burnout? •••[01:51:50] Personal Q&A►►► Key of Geebz? Queen's Gambit? World too slow? Games desensitization? State vs Federal? Wales? Our pups? More best things about PNW? Fitness? RV plans? Violent crime on the rise? Inflation on the rise? Social media discrimination? Studen housing? My new Syphon Filter design? Chicken food? Friendly chicken breeds? Economy effect on RRT? Jen's Words of Wisdom? •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Rahdo-Talks-Through-Episode-73-e12bvph',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 10990,\n",
       "   'published': '6/8/2021'},\n",
       "  {'uid': '6923e55a-4f4b-5228-9b79-bba452ae06bd',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO9004710599.mp3',\n",
       "   'title': 'Rahdo Rounds Up►►► May 2021 + Q&A',\n",
       "   'subtitle': None,\n",
       "   'summary': \"24 new games & expansions discussed for the month of May! If you'd prefer to watch this in video form, head to https://youtu.be/9JP5Dz3cvTI :) •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Rahdo-Rounds-Up-May-2021--QA-e1216e5',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 6825,\n",
       "   'published': '6/2/2021'},\n",
       "  {'uid': 'e4617ab7-9909-5138-a101-5ff6b81825ae',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO2567120541.mp3',\n",
       "   'title': 'Top 10 Games of 2020, revisited!!! + Q&A',\n",
       "   'subtitle': None,\n",
       "   'summary': \"It's time to finalize my best games of 2020, which I filmed live simultaneously on Youtube, Twitch and Facebook on may 28th. And after the top10 countdown, I stuck around for some questions and answer time! :) If you'd rather watch this top10 than listen, link: https://www.youtube.com/watch?v=f0Nm2opGFIs •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Top-10-Games-of-2020--revisited-----QA-e11pvme',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 8402,\n",
       "   'published': '5/29/2021'},\n",
       "  {'uid': '4943c566-8dd8-5313-8b18-a6a2b49baaf7',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO9175727213.mp3',\n",
       "   'title': 'Rahdo Talks Through►►► Episode #72',\n",
       "   'subtitle': None,\n",
       "   'summary': \"SHOW NOTES: •••[00:00:44] Games Q&A►►► Three Sisters? Lowlands? Capitalism theme in euros? Soloing while filming? Gaming burnout? Gaming post RRT? Different show post RRT? Viticulture? Video for gone games? Plunderous status? Glory to Rome? Gamer vs non-gamer? True gateway? 6 year of RTT? Soloing more these days? La Granja: No Siesta? Top10 2p+? Shea covering oldies? Looking at camera? Tshirt effect on channel? Work placement not a fave mechanism? Century combo = Waterdeep? Carebear practices? Misdirection during multiplayer? Social deduction? Still analyze games post RRT? Fresco Megabox rule change? Component quality effect? •••[01:40:01] Personal Q&A►►► Fave modern cartoons? Testing for videogame enthusiasm? Social media bans? Lego animation! (https://youtu.be/edAVbseyD8M) April fools bgg gags? (https://youtu.be/k-XR5Rj7OIE & https://youtu.be/V-2O2068ZkI) Sports appreciation? Natural dog care? Jen's wisdom of the month? •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Rahdo-Talks-Through-Episode-72-e10d4va',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 9230,\n",
       "   'published': '5/9/2021'},\n",
       "  {'uid': 'a550f879-43a3-5e70-a132-c2a59e744f9b',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO4778010654.mp3',\n",
       "   'title': 'Top 10 Pandemic Mechansims & Expansions/Spinoffs',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Hey everybody, this month I'm joined by Liz Taber of Long Distance Gamers to countdown our favourite Pandemic mechanisms and expansions/spinoffs. For more of LIz, you can find her channel (Long Distance Gamers) here: https://www.youtube.com/channel/UCEmiRcZZ_vLiIHC6BKOeWJw If you'd rather watch this top10 than listen, link: https://youtu.be/vN8hSP3iQ2s •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Top-10-Pandemic-Mechansims--ExpansionsSpinoffs-e10gt4d',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 7469,\n",
       "   'published': '5/8/2021'},\n",
       "  {'uid': '8e201a6c-aeb4-5022-9714-2bcdb893c884',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO7733278314.mp3',\n",
       "   'title': 'Rahdo Rounds Up►►► April 2021',\n",
       "   'subtitle': None,\n",
       "   'summary': \"17 new games discussed for the month of April! If you'd prefer to watch this in video form, head to https://youtu.be/QU9pygNc9WQ :) (1:17) [Shea] Hidden Leaders Expansions (2:57) 4. Marvel Champions: Galaxy’s Most Wanted (6:46) 3. Kingdom Builder Big Box (8:36) 2. Aquatica: Cold Waters (9:30) 1. Concordia: Solitaria New Games (12:47) 12. Transmissions (14:48) 11. Dead Man’s Cabal (18:04) 10. Glow (23:41) 9. Solomon Kane (29:33) 8. Pletrix (31:30) 7. It’s a Wonderful Kingdom (35:28) 6. Fairy Tale Inn (38:10) 5. Dice Theme Park (41:57) 4. World’s Fair 1893 (44:24) 3. Vivid Memories (47:21) 2. Rival Networks (50:38) 1. Anno 1800 •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Rahdo-Rounds-Up-April-2021-e1025le',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 3630,\n",
       "   'published': '5/1/2021'},\n",
       "  {'uid': '8107096e-4504-570f-8d36-ea693d0ba98a',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO5469996000.mp3',\n",
       "   'title': 'Top 10 Games for an RV Lifestyle',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Hey everybody, for this month's top 10 I'm joined by Sarah Shah of Boardgames in a Minute (an excellent channel!) to talk about our 10 games we'd take on the road with us if we found ourselves living in a recreational vehicle! :) p.s. Apologies for the last upload where I grabbed the wrong audio file to upload. Here's the proper top10 with Sarah! :) All the ways to find Sarah: https://www.boardgamesinaminute.com/ https://youtube.com/boardgamesinaminute https://www.instagram.com/board_games_in_a_minute/ https://www.tiktok.com/@puffindor https://twitter.com/Puffindor https://facebook.com/Puffindor https://ko-fi.com/puffindor https://www.etsy.com/shop/Puffindor •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Top-10-Games-for-an-RV-Lifestyle-eveslh',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 4132,\n",
       "   'published': '4/22/2021'},\n",
       "  {'uid': 'e000128f-0fa3-5a3b-8a38-6d0ad6d6b12e',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO1783164857.mp3',\n",
       "   'title': 'Rahdo Rounds Up►►► March 2021',\n",
       "   'subtitle': None,\n",
       "   'summary': \"19 new games discussed for the month of March! If you'd prefer to watch this in video form, head to https://youtu.be/Hm4UDzJYrj4 :) Contributors 4:00 [Shea #3] Rise of the Gnomes 6:34 [Shea #2] Scythe 10:22 [Shea #1] Mage Noir 16:38 [Ryan] Genotype & Long Shot the Dice Game 18:27 [Tim] Fort Rahdo Expansion Countdown 20:07 #5. Merlin: Morgana 22:44 #4. Valeria Card Kingdoms: Darksworn 24:25 #3. Marvel Champions: Quicksilver 26:20 #2. Auztralia: Tazmania & Revenge of the Old Ones 28:59 #1. Marvel Champions: Scarlet Witch Rahdo Games Countdown 30:39 #11. Coatl 33:00 #10. Alhambra Roll & Write 35:58 #9. Genotype 38:25 #8. Escape Roll & Write 40:30 #7. Space Plague 43:27 #6. After The Empire 47:10 #5. Cryo 50:00 #4. Scrumpy: Card Cider 53:10 #3. Hadrian’s Wall 56:48 #2. Meadow 58:52 #1. Hippocrates •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Rahdo-Rounds-Up-March-2021-eu1dc7',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 3811,\n",
       "   'published': '4/1/2021'},\n",
       "  {'uid': '3a81246b-ba79-53dc-9154-76b3c225affd',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO1998724132.mp3',\n",
       "   'title': 'Top 10 2p Games (revisited)',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Hey everybody, this month's top10 is a revisit of my top 10 2p-only games, and I'm joined by Ella Loves Boardgames and Stella of Meeple University! Stella's Channel: https://www.youtube.com/meepleuniversity Ella's Channel: https://www.youtube.com/ellalovesboardgames My original top10 from 5 years ago: https://www.youtube.com/watch?v=guBmscylSHI For this top10 list in video form: https://youtu.be/rGfISari4iE •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Top-10-2p-Games-revisited-etm296',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 9386,\n",
       "   'published': '3/29/2021'},\n",
       "  {'uid': '99e351b9-228a-551f-9d7a-c3d0ce4baefe',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO9349002709.mp3',\n",
       "   'title': 'Rahdo Talks Through►►► Episode #71',\n",
       "   'subtitle': None,\n",
       "   'summary': \"SHOW NOTES: •••[00:10:20] Games Q&A►►► Best RTT platform? Changing game ratings? Filming continuity? R&R with old games? FAQ update? Big boxes? Legacy vs campaign definition? Gloomhaven vs Primal? Depth in dungeon crawls? Spirit Island: Jagged Earth? Vindication rating? Designing within constraints? Golden age of gaming? Tinner's Trail? Top10 GOTY updates unfair? Elder Sign vs X-men? Tricon 2021? Is repetitive bad? Changing camera angles? Game enjoyment post RRT retirement? Rulebooks pronouns? Engine building category on BGG? Campaign vs legacy coverage? Handshakes vs copyright? Grain of salt? KS campaign runners managing audience? 18xx? Shortening Faiyum? Fave designer working on different? Narrative in boardgames? •••[01:57:33] Personal Q&A►►► Sacrifices for UBI? Social media bans? New Mulan film? Watching 3x speed video? X-Men comics? Did we imagine RRT would get this big? Other bg review channels when we started? Reading suggestion! Effective persuasion? Changing perspective story. Cryptocurrency? Violence in the MCU? Upcoming MCU lineup? Wandavision? Reckoners novels? Not all republicans! Intensions vs outcomes? How's my mom? Covid effect on her if we hadn't come back? Let's see Jen's knitting! Carebear kids gaming? Foodi tips? Sleeping tips? Income post RRT retirement? Jen's words of wisdom? •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Rahdo-Talks-Through-Episode-71-et6e1i',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 14939,\n",
       "   'published': '3/22/2021'},\n",
       "  {'uid': 'b6361674-e354-57cb-a1d3-63bf84d77a09',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO3236416526.mp3',\n",
       "   'title': 'Top 10 Combat Systems',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Hey everybody, this is February's top10, a bit late, but to make up for that, I'm joined by the newest contributor to the channel, Tim Chuon! Tim's Channel: https://www.youtube.com/TimChuon Tim's First Rundown for RRT: https://youtu.be/RJ4RZuByLdo To see this top10 on Youtube: https://youtu.be/uTu_pqalQTE •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Top-10-Combat-Systems-ersuua',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 6597,\n",
       "   'published': '3/10/2021'},\n",
       "  {'uid': 'd4b940ba-b017-5c04-96c9-dc56dbb6b7d2',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO7738391918.mp3',\n",
       "   'title': 'Rahdo Rounds Up►►► February 2021',\n",
       "   'subtitle': None,\n",
       "   'summary': \"15 new games discussed for the month of February! If you'd prefer to watch this in video form, head to https://youtu.be/vx9eA3tyRvw :) Shea's Coverage: (0:38) Chamber of Wonders (1:37) Dwellings of Eldervale (3:02) Skyline Express (5:00) Tiny Epic Dungeons My Coverage: (6:29) 11. Maglev Metro (9:52) 10. So, You’ve Been Eaten (12:55) 9. X-Men: Mutant Insurrection (17:02) 8. Sleeping Gods (22:40) 7. Red Rising (26:21) 6. Eternal Palace (28:52) 5. Sagani (31:49) 4. Terraforming Mars: Ares Expedition (34:47) 3. Stroganov (37:41) 2. Red Cathedral (39:57) 1. Faiyum •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Rahdo-Rounds-Up-February-2021-erbq8a',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 2683,\n",
       "   'published': '3/2/2021'},\n",
       "  {'uid': '960a6650-5184-585b-b598-e17c510a8dfa',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO7459313910.mp3',\n",
       "   'title': 'Rahdo Rounds Up►►► January 2021',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Oops, apologies, i just noticed this has been sitting in my 'drafts' folder since i uploaded it on feb 1! So I'm making it live now, the 16 new games discussed for the month of January! If you'd prefer to watch this in video form, head to https://youtu.be/1Goltm3QOeQ :) Shea's Coverage (1:04) [Shea] Carnegie (2:21) [Shea] Under Falling Skies Expansions Expansions: (3:43) 6. Morels: Foray (5:19) #5 Wingspan: Oceania (8:31) #4 Posthuman Saga: Journey Home (10:39) #3 Smartphone Inc: Update 1.1 (12:21) #2 Marvel Champions: Wasp (14:25) #1 Aeon's End: Legacy of Gravehold New Games New games: (16:25) #8 Primal: The Awakening (17:53) #7 The Coldest Night (20:33) #6 Seven Bridges (21:49) #5 Meeples & Monsters (23:39) #4 Funfair (26:23) #3 Hallertau (29:25) #2 CloudAge (32:44) #1 Project Elite (2020) •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Rahdo-Rounds-Up-January-2021-epqie2',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 2181,\n",
       "   'published': '2/15/2021'},\n",
       "  {'uid': '215e04bf-088e-532d-97dd-beccae69f041',\n",
       "   'audio_url': 'https://d3ctxlq1ktw2nl.cloudfront.net/staging/2021-1-12/9c78b819-622c-7168-e080-1dea8ae84eac.mp3',\n",
       "   'title': 'Rahdo Talks Through►►► Episode #70',\n",
       "   'subtitle': None,\n",
       "   'summary': 'This podcast is a follow on to the topics discussed in the last hour of episode 69, which can be found here: https://youtu.be/upvms4K8XhA Note: there won\\'t be Q&A, Jen won\\'t be appearing, it\\'s just me talking through what has happened since then and what I want to do going forward. If you have any questions or comments, don\\'t hesitate to reach out questions@rahdo.com. Here\\'s the excellent video I mentions from Jason Perez: https://www.youtube.com/watch?v=6z0wTZkg3a8 Here\\'s the interview I did on Meepleville meets: https://www.youtube.com/watch?v=ecc2j5vVhgw Here\\'s the hateful tweet I mentioned (warning: deeply offensive language and hate speech): https://twitter.com/Rahdo/status/1357582038140817410 Jen\\'s \"words of wisdom\" I mentioned: https://pbs.twimg.com/media/EtaC6EHVoAA_IFE?format=jpg&name=900x900',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Rahdo-Talks-Through-Episode-70-eqarq4',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 3190,\n",
       "   'published': '2/12/2021'},\n",
       "  {'uid': 'cf55f8e0-cfe4-5d6c-814f-f10e7e7de6fc',\n",
       "   'audio_url': 'https://d3ctxlq1ktw2nl.cloudfront.net/staging/2021-1-5/1efae7f0-d232-aafe-af53-6dcae3f5ffe1.mp3',\n",
       "   'title': 'Rahdo Talks Through►►► Episode #69',\n",
       "   'subtitle': None,\n",
       "   'summary': 'IMPORTANT NOTICE! The contents of the final portion of this podcast have been edited from what originally aired, because I made a terrible mistake that led to abusive and potentially violent acts against innocent and marginalized people. As such, all names have been removed, though I\\'ve left the other content stand so as not to hide my other mistakes. If further edits are to be made (I am consulting with people smarter than me from the affected communities), they will be noted here! Also, to those who are \"defending\" me by being demeaning, insulting or harassing to those who are rightfully angry/disappointed by my recent mistakes: STOP! I made real transgressions, I\\'m working to rectify them. If you disagree, you\\'re NOT on my side! Please extend grace! If you have any questions, please don\\'t hesitate to reach out at questions@rahdo.com! SHOW NOTES: •••[00:01:40] Games Q&A►►► Insert reviews? Seasonal games? One game do-over? Tips for written reviews? My City? 1 game/30 plays? 1st vs 3rd person question reading? Rulebook sins? Boardgame zelda? More 1st vs 3rd person reading? Future of C2C? Stats app? Games with no ratings? Digital discrepancy? How much time on each game? ISS Vanguard if Shea hadn\\'t stepped in? TTS if you own the game? Top 5 legacy games? Ideal Star Trek boardgame? Circadians series? Ranking T&L games? Co-op vs competitive? •••[01:09:22] Personal Q&A►►► Legion? Thoughts on Jan 6th? Golden vs Platinum rule? Hobbies? Recovering from Trump? Expanse vs Star Trek? Returning to EU? New books or podcasts for Jen? Censorship on BGG? Moving mom to EU? Ranking MCU movies? Value of sports? Other hobbies? Great reset clarification! Shelter vs private seller for getting dogs? How do we decide which dog? Needs of the many vs needs of the few? EU healthcare vs US? Where do i get my t-shirts? Tascini? Funagain? Eklund? Boardgame reviewers & masks? Jen\\'s words of wisdom? •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Rahdo-Talks-Through-Episode-69-eprvob',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 12697,\n",
       "   'published': '2/3/2021'},\n",
       "  {'uid': '4496b994-c90d-568f-a2cd-f941912050fc',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO2005007800.mp3',\n",
       "   'title': 'Rahdo Rounds Up►►► December 2020',\n",
       "   'subtitle': None,\n",
       "   'summary': 'Sorry for the delay, I didn\\'t realize this was in the \"draft\" folder, and I only just now noticed! Better late than never for 19 new games discussed for the month of December! If you\\'d prefer to watch this in video form, head to https://www.youtube.com/watch?v=h9b3Fje0r74 :) Shea & Ryan (1:40) Shea: ISS Vanguard (4:05) Shea: Masters of Mutanite (5:26) Shea: Pingyao (7:22) Ryan: Era of Tribes (9:24) Ryan: Winter Queen Expansions (11:08) 03. West Kingdom Tomesaga (14:37) 02. The Magnificent: SNØ (16:48) 01. Aeon’s End: Southern Village New Games (18:36) 11. Forgotten Waters (22:39) 10. Kodama Forest (24:41) 09. The Fox in the Forest (27:43) 08. Florenza 10th Anniversary (30:33) 07. Century Golem: Endless World (33:48) 06. Marvel United (37:15) 05. Dungeon Academy (39:26) 04. Flourish (41:28) 03. Four Gardens (44:55) 02. Darwin’s Journey (PAID) (48:52) 01. Bonfire •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Rahdo-Rounds-Up-December-2020-eoe39b',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 3208,\n",
       "   'published': '1/8/2021'},\n",
       "  {'uid': '1736a984-473c-5b62-bd4a-dba10bc0183d',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO1348028244.mp3',\n",
       "   'title': 'Rahdo Talks Through►►► Episode #68',\n",
       "   'subtitle': None,\n",
       "   'summary': 'New year, same podcast SHOW NOTES: •••[00:01:58] Games Q&A►►► Fave “T” game? Solo runthroughs? Klingon sub notification timing? Game room? How much play before filming? Official boardgame release year? Atlantis Rising? Spiel des Jahres recognizing official boardgame release year? Reviewer perspective different than gamers? Apply narrative device from Maracaibo to Trajan? Roll to resolve in Star Trek Expeditions? Event deck in Shadowrun Crossfire? TTS vs ETSY? 2020 a good or bad year for gaming? Nidavellir? Sports themed boardgames? London too random? Formidable opponents? RRT voting double? Castles of Tuscany rules goof? Castles of Tuscany official rules change? Rulebook structure? Darwin & Vanguard not on to anticipated list? Pandemic 0 vs regular Pandemic? Smile & a Gun a top 2p game? What does Jen remember about games? Fave AE Nemesis? Changing Rahdo audience? Has RRT changed our gaming preferences? Jen interested in role playing games? •••[02:29:22] Personal Q&A►►► Dark? Coping with loss of dogs? More than 2 dogs? Social justice on RRT? Terry Pratchett? How did Gamer Glass do in 2020? World Economic Forum’s global economic reset proposals? Using covid for societal reset? Why so many haters? Why no sports? New Star Wars lineup? Ted Lasso? Character growth in Back to the Future? My work on Sims? Discovery season 3? Mandalorian? •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Rahdo-Talks-Through-Episode-68-eojso5',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 15670,\n",
       "   'published': '1/8/2021'},\n",
       "  {'uid': 'bb01886c-bc97-56ac-9580-af87dc171da3',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO5705264841.mp3',\n",
       "   'title': 'Top 25 Anticipated Games of 2021',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Hey everybody, it's my yearly top25 countdown of the most anticipated games of the upcoming 365, which was filmed live on youtube on Jan 1st. To see this episode in video form: https://www.youtube.com/watch?v=is0IlqrD6Jg •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Top-25-Anticipated-Games-of-2021-eoetvq',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 10064,\n",
       "   'published': '1/2/2021'},\n",
       "  {'uid': '41bc9306-eec7-589c-ac0c-9c75ecee3234',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO7313217859.mp3',\n",
       "   'title': 'C2C Episode 28',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Hey everybody! Here's the final bi-weekly episode of Corner to Corner, and here's the YouTube link if you'd like to watch instead of listen: Episode 28: https://www.youtube.com/watch?v=mdjG_sXLhUM •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/C2C-Episode-28-eobhff',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 3745,\n",
       "   'published': '12/29/2020'},\n",
       "  {'uid': '5f0cdc45-0d56-56ce-9c58-8b3267d84463',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO9409557320.mp3',\n",
       "   'title': 'Top 10 Games of 2020 (preliminary)',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Hey everybody, it's my yearly top10 countdown of the games of the year, which was filmed live on youtube on Christmas day, and which will be followed by an updated list in April or May. To see this episode in video form: https://www.youtube.com/watch?v=Tt8bpygM2Y8 •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Top-10-Games-of-2020-preliminary-eo7p5a',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 6492,\n",
       "   'published': '12/25/2020'},\n",
       "  {'uid': '0a590c69-e64a-5b2b-a26e-d262e7ef8ec9',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO3624012592.mp3',\n",
       "   'title': 'Top10 Designers Revisited',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Hey everybody, this month's top10 is a revisit of my 10 designers, as well as the top10 from Jeremy Howard of MvM. To see more of Jeremy's content, check https://www.facebook.com/jeremy.howard.5201254 My original top10 from 5 years ago: https://www.youtube.com/watch?v=orL9jGApIsY For Rahdo & Jeremy's list in video form: https://www.youtube.com/watch?v=SwBXwWBi-1g •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Top10-Designers-Revisited-eo2h23',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 6202,\n",
       "   'published': '12/23/2020'},\n",
       "  {'uid': '4df96b8e-e205-50e8-9244-4b711788acb5',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO3545201992.mp3',\n",
       "   'title': 'RTT Episode 67',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Bye 2020! SHOW NOTES: •••[00:01:09] Games Q&A►►► Tom & I swapping styles? Youtube Ads? Jon Gets Games? How's it going with Shea & Ryan? Plunderous updates? Morality vs Illegality re: TTS? Hiding the math? Skulls of Sedlec? Smile & A Gun? Best nemesis in Aeon's End? Kosmos & Lookout 2p lines? Upcoming top10 revisits? Rahdo Requests thumbs? Blackout Hong Kong appearance? Insanity in games? Tuscany rules? Tuscany final thoughts? •••[01:31:40] Personal Q&A►►► Did we grunge? BGG pun? Marty McFly character growth? Opposite of empathy? Platinum vs Golden rule? Advice for balanced politics updates? Self care preferences? Time management? Is this really happening? Preferred streaming sites? Yang love? Sparking joy? Best Thanksgiving pie? Drinking glasses up or down? Culinary teas? PacNW influence in Jen's glass? Boardgame wisdom? The Boys? Farscape? Videogame archiving? Emulation? Remakes or remasters? Perishable videogames? Handy? Run Lola Run? Covid negative effects on us? Jen's words of wisdom? •••Send your questions to questions@rahdo.com •••Help Rahdo run @ https://patreon.com/rahdo:\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RTT-Episode-67-enf68m',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 11326,\n",
       "   'published': '12/7/2020'},\n",
       "  {'uid': 'f1b78f9c-0483-5cb9-a853-86f61511d432',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO7824443413.mp3',\n",
       "   'title': 'C2C Episode 27',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Hey everybody! Here's this weeks's episode of Corner to Corner, and here's the YouTube link if you'd like to watch instead of listen: Episode 27: https://www.youtube.com/watch?v=zYWdYFWqnAo •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/C2C-Episode-27-en7n0r',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 3682,\n",
       "   'published': '12/1/2020'},\n",
       "  {'uid': '4afb1bf6-c825-52d8-bf1d-c42462ab74af',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO4429687792.mp3',\n",
       "   'title': 'RRU November 2020',\n",
       "   'subtitle': None,\n",
       "   'summary': \"26 new games discussed for the month of October! If you'd prefer to watch this in video form, head to https://youtu.be/AQ4UDwt_0m4 :) Expansions (1:33) 8. 7 Wonders: Armada (4:10) 7. Splendor Marvel (6:42) 6. Star Wars: Unlock! (10:01) 5. TIME Stories: A Midsummer Night (13:26) 4. Fields of Green: Grand Fair (15:48) 3. Boomerang: Europe (19:28) 2. On Tour: Europe (21:11) 1. Marvel Champions: Ant-Man New Games (24:21) 18. Dune Imperium (27:28) 17. The Transcontinental (paid) (31:06) 16. Fresco Card & Dice Game (34:36) 15. Monster Expedition (37:45) 14. Azul: Summer Pavilion (41:27) 13. Medici the Dice Game (43:45) 12. 6 Castles (46:58) 11. Paleo (52:07) 10. Rune (54:36) 9. New York Zoo (56:18) 8. Città-Stato (paid) (1:00:45) 7. Levitation (paid) (1:02:58) 6. Twinkle (paid) (1:05:02) 5. Winter Kingdom (1:09:01) 4. Atheneum (1:11:12) 3. Lost Ruins of Arnak (1:14:49) 2. Cubitos (1:18:34) 1. Merv: Heart of the Silk Road •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RRU-November-2020-en7m74',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 4960,\n",
       "   'published': '12/1/2020'},\n",
       "  {'uid': '5169a2ac-5d86-50d2-9516-8f5c72035571',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO1529316024.mp3',\n",
       "   'title': 'C2C Episode 26',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Hey everybody! Here's this weeks's episode of Corner to Corner, and here's the YouTube link if you'd like to watch instead of listen: Episode 26: https://www.youtube.com/watch?v=h5c7EgSwF6Q •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/C2C-Episode-26-emk57b',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 3660,\n",
       "   'published': '11/17/2020'},\n",
       "  {'uid': '61bfc8f0-1b5e-50b7-8e55-7958c53378f3',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO3966326085.mp3',\n",
       "   'title': 'C2C episode 25',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Hey everybody! Here's this weeks's episode of Corner to Corner, and here's the YouTube link if you'd like to watch instead of listen: Episode 25: https://www.youtube.com/watch?v=vwWGKTi58Y8 •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/C2C-episode-25-elvrqu',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 3644,\n",
       "   'published': '11/3/2020'},\n",
       "  {'uid': 'bb46d0f6-b43e-5845-a9ee-71740cff011d',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO1311062705.mp3',\n",
       "   'title': 'RTT Episode 66',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Unleash the doggo pics at http://doggo.rahdo.com :) SHOW NOTES: •••[00:02:49] Games Q&A►►► Immorality of copyright infringement? Why cover long games? Mercado de Lisboa? 2020 Feld game coverage? Roll for the Galaxy tactics? Beer hangup? Plunderous cancellation? Covid's effect on digital boardgaming? Adventure Ink? Rank Marvel Champions expansions? Recent cull? Freedom Five? Alternatives to KDM? Furnace vs Wonderful World? Downtime between runthrough and final thoughts? Orleans Stories? Hadrian's Wall? Glasgow? Lookout vs Kosmos 2p lines? 7 Wonders Duel Agora? Revisiting my top 10? IP conflicts? Wingspan eggs strategy? My rankings ignoring Jen? Ranking Pandemic expansions? Duelosaur Island? Digital conventions? WYG status? Expansions in Yearly top10? Rahdo houserules? •••[01:55:16] Games with Jen Q&A►►► Dungeon Petz revelation? Dummy players? Preferred game themes? •••[02:19:39] Personal Q&A►►► Lovecraft country? Storytelling rules? Qualities of a wonderful person? 5 year tea plan? Jen's glass business? Jen's fave tea? Gateway teas? What do we do about our carbon footprint? Fireworks? Jen's words of wisdom? •••Send your questions to questions@rahdo.com •••Help Rahdo run @ https://patreon.com/rahdo\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RTT-Episode-66-elueht',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 10854,\n",
       "   'published': '11/3/2020'},\n",
       "  {'uid': 'e18a44a4-aca0-5585-ab1b-3e35f254d8a5',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO4681661990.mp3',\n",
       "   'title': 'RRU October 2020',\n",
       "   'subtitle': None,\n",
       "   'summary': \"36 new games discussed for the month of October! If you'd prefer to watch this in video form, head to https://youtu.be/R_pbDdmAUt8 :) S&R Coverage [2:45] Arkenshield (Shea) [4:08] Brick & Mortar (Shea) [5:44] Reign Absolute (Shea) [6:57] Shards of Madness (Shea) [7:51] Veiled Fate (Shea & Ryan) Expansions [9:36] 8. Escape the Curse of the Temple: Traps [11:41] 7. 7 Wonders 2nd Edition [14:52] 6. Escape the Curse of the Temple: Quest [16:55] 5. Paperback: Unabridged [18:26] 4. Marvel Champions: Once and Future Kang [21:24] 3. Russian Railroads: American Railroads [22:28] 2. Grand Austria Hotel: Let’s Waltz! [24:19] 1. Pandemic Legacy Season 0: 1963 New Games [26:36] 23. Legends of Andor: The Last Hope [30:26] 22. Pan Am [33:07] 21. Curious Cargo [36:19] 20. Kawa [39:31] 19. Beyond the Sun [42:44] 18. Dwergar [45:44] 17. Studies in Sorcery [47:37] 16. Mysterium Park [50:47] 15. Seastead [53:41] 14. Finishing Time (Feierabend) [58:48] 13. Alice’s Garden [1:00:23] 12. Beez [1:03:30] 11. Raiders of Scythia [1:06:01] 10. Troyes Dice [1:09:33] 9. Whistle Mountain [1:11:57] 8. Shogun No Katana [1:14:33] 7. Glasgow [1:16:55] 6. Wild Space [1:18:50] 5. Furnace [1:22:44] 4. Pandoria Merchants [1:25:14] 3. Praga Caput Regni [1:28:32] 2. Kokopelli [1:30:49] 1. Castles of Tuscany •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RRU-October-2020-elro1r',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 5785,\n",
       "   'published': '11/1/2020'},\n",
       "  {'uid': '2aba2dd1-6485-5cd9-bf84-bc5e6b96e424',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO2877149319.mp3',\n",
       "   'title': 'Top 25 Anticipated Games of Essen Spiel Digital',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Hey everybody, this month's top10 is a top 25... namely the most anticipated games of Essen Spiel. If you'd rather watch the video, you can find it here: https://www.youtube.com/watch?v=QtrGkaZtos8 •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Top-25-Anticipated-Games-of-Essen-Spiel-Digital-elbl9u',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 2111,\n",
       "   'published': '10/21/2020'},\n",
       "  {'uid': 'a176254d-324f-580a-9e75-e4bbf959acc5',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO6758861171.mp3',\n",
       "   'title': 'C2C episode 24',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Hey everybody! Here's this weeks's episode of Corner to Corner, and here's the youtube link if you'd like to watch instead of listen: Episode 24: https://www.youtube.com/watch?v=FUnMycIdmO8 •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/C2C-episode-24-elbagd',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 3645,\n",
       "   'published': '10/20/2020'},\n",
       "  {'uid': '31b272ef-cb38-584a-ae14-c30b43f2a198',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO9259294973.mp3',\n",
       "   'title': 'C2C episode 23',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Hey everybody! Here's this weeks's episode of Corner to Corner, and here's the youtube link if you'd like to watch instead of listen: Episode 23: https://www.youtube.com/watch?v=PuihReetWf0 •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/C2C-episode-23-ekmsmc',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 3660,\n",
       "   'published': '10/7/2020'},\n",
       "  {'uid': '566deb96-10bb-5323-a70a-8ce0cf38b935',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO3643067789.mp3',\n",
       "   'title': 'RTT Episode 65',\n",
       "   'subtitle': None,\n",
       "   'summary': 'Jen hits her funny bone SHOW NOTES: •••[00:02:12] Games Q&A►►► Table top simulator piracy? Spills on games? Table flipping moment? Biggest game goof? Boardgame rulebook reviews? Gloomhaven or Frosthaven after Jaws? Rurik coverage? Tabletopia more clinking that TTS? Games I don\\'t like even though I should? Inherently bad mechanisms? Apps that allow boardgame worlds to change? What would get me into wargaming? Why are wargames resistant to modernization? Card Play Conflict Resolution & Gloomhaven? Jump Drive a next step to San Juan? Should patrons not post to early release videos? Why no retail for Plunderous? Marco Polo climbing in ranking? Why the hotness for Red Cathedral? Categorizing game feel? •••[00:59:24] Games with Jen Q&A►►► Our gaming habits if RRT didn\\'t exist? Love of Legacy vs distaste for consumerism? •••[01:21:33] Personal Q&A►►► Doggo pics? New Dune movie? Geocaching? Rahdo on the road? Jen into space opera? When did we consider Denmark? Everquest\\'s impact on Jen? Still running? Indi tea shops? Doggo pics part II? How frequently do we wash clothes? Top disney live action animated remakes? Fave disney animated film? Star Trek Lower Decks? Assassin\\'s Creed lazy design? Gun ownership driving gun deaths? How do we vote? Do we sing or play instruments? Fave movies? No Russian accent in The Great? Connie Booth? Celebs in Malta? BLM & \"all\"? Pitbulls? Jen\\'s on the spot top10 check? Jen\\'s interest in negotiation in games? Working on Plunderous triggering flashbacks? What\\'s the \"reference man\" book title? Jen\\'s height? My experience with being \"the other\"? Empathy vs critical thinking? Taxes in Malta? Demonizing tax avoidance? Words of wisdom? •••Send your questions to questions@rahdo.com •••Help Rahdo run @ https://patreon.com/rahdo',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RTT-Episode-65-ekjkn6',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 12804,\n",
       "   'published': '10/4/2020'},\n",
       "  {'uid': '53d81b2b-930b-5c42-9026-d931eee0428d',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO5707157311.mp3',\n",
       "   'title': 'RRU September 2020',\n",
       "   'subtitle': None,\n",
       "   'summary': \"27 new games discussed for the month of September! If you'd prefer to watch this in video form, head to https://youtu.be/VeyCwVexZTQ :) Intro (0:00) [Shea] Embarcadero (2:22) [Shea] Galaxy Hunters (3:36) [Shea] Inventure Quest (4:50) 24. Draconis Invasion (6:57) 23. 7th Citadel (9:59) 22. Silver & Gold (13:07) 21. Renature (15:53) 20. Sabotage (18:33) 19. Dungeon Drop: Dropped Too Deep (23:48) 18. Mariposas (26:02) 17. Rossio (29:36) 16. Sonora (33:10) 15. Alice's Garden (36:22) 14. School of Sorcery (38:57) 13. Dreamscape Expansions (41:50) 12. Monsters on Board (43:55) 11. Village Green (45:57) 10. Viscounts of the West Kingdom (47:46) 09. Unforgiven (49:28) 08. Endless Winter (52:06) 07. Café (54:42) 06. Marco Polo (57:06) 05. Truffle Shuffle (1:00:08) 04. The City (1:02:46) 03. Plunderous (1:04:33) 02. Tiny Towns: Villagers (1:09:40) Technical difficulties (1:10:50) 01. Marvel Champions: Red Skull (1:12:27) Outro (1:17:04) •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RRU-September-2020-ekg3gj',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 4690,\n",
       "   'published': '10/2/2020'},\n",
       "  {'uid': 'ef96d6f4-5d41-5ae5-a55d-ed80d943ffe4',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO2652561142.mp3',\n",
       "   'title': 'Top 10 Fillers Revisited',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Hey everybody, this month's top10 is a revisit of my 10 filler games, as well as the top10 fillers from Monique & Naveen of Before You Play. To see more of M&N's content, check https://www.youtube.com/channel/UC3z8YEKBEjSPRb6L2RJPWUg My original top10 from 5 years ago: https://www.youtube.com/watch?v=6mo9cg3IwbI Introduction (0:00) Honorable Mentions - Nanga Parbat (4:00) Honorable Mentions - Litle Prince: Make me a Planet (4:57) Honorable Mentions - Fantasy Realms (7:43) Rahdo's #10 - Ankh'or (9:29) M&N's #10 - 6 Nimmt (12:21) Rahdo's #9 - Fugitive (15:27) M&N's #9 - Seikatsu (20:03) Rahdo's #8 - Café (23:55) M&N's #8 - Schotten Totten (27:39) Rahdo's #7 - Ticket to Ride: London (32:40) M&N's #7 - Railroad Ink (36:08) Rahdo's #6 - My City (40:55) M&N's #6 - For Sale (47:22) Rahdo's #5 - On Tour (50:59) M&N's #5 - Yokai Septet (57:23) Rahdo's #4 - FUSE (1:02:25) M&N's #4 - Biblios (1:05:09) Rahdo's #3 - Mandala (1:09:39) M&N's #3 - Hanamikoji (1:13:14) Rahdo's #2 - Circle the Wagons (1:17:09) M&N's #2 - Parade (1:20:52) Rahdo's #1 - Jump Drive / The City (1:26:19) M&N's #1 - Cabo (1:33:43) Outro (1:38:04) •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Top-10-Fillers-Revisited-ek1msv',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 6177,\n",
       "   'published': '9/23/2020'},\n",
       "  {'uid': '172fe971-2e00-5a4e-a0f6-32b419a89f5b',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO6690186043.mp3',\n",
       "   'title': 'C2C Episode 22',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Hey everybody! Here's this weeks's episode of Corner to Corner, and here's the youtube link if you'd like to watch instead of listen: Episode 22: https://www.youtube.com/watch?v=IoHyZfNCxrs •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/C2C-Episode-22-ek1mkt',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 3525,\n",
       "   'published': '9/23/2020'},\n",
       "  {'uid': '6f2d0034-ad0c-5a11-846c-b45a3942a354',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO7599599575.mp3',\n",
       "   'title': 'RTT the Meepleville Meets 2nd interview',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Timm Metivier (the owner of Meepleville in Las Vegas, as well as showrunner of the Dice Tower West convention) and I sat down for another back and forth discussion, and while the last one did about 30 minutes on Black Lives Matter, this one goes much deeper on another very non-boardgame subject: gun violence. Fair warning, no boardgaming in this one! If you'd prefer this in video form, you can find it at https://www.youtube.com/watch?v=9VoyVLGOrwM •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RTT-the-Meepleville-Meets-2nd-interview-ejq9ki',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 5797,\n",
       "   'published': '9/18/2020'},\n",
       "  {'uid': 'c5bd9878-2079-56c3-aa86-408b89746405',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO2683486578.mp3',\n",
       "   'title': \"RRT Kickstarter's Projects We Love\",\n",
       "   'subtitle': None,\n",
       "   'summary': \"Hey everybody. This is a pilot for a new collaboration between my channel and Kickstarter. We'll see if KS wants to continue past this test, and if so, they'll be crossposted to Youtube and the podcast channel! To get notified of project launches, hit the links below. (1:11) EMBARCADERO https://www.kickstarter.com/projects/renegadegamestudios/embarcadero?ref=ksr_partner_rahdo (4:37) PLUNDEROUS https://www.kickstarter.com/projects/683340922/plunderous?ref=ksr_partner_rahdo (7:58) CASCADIA https://www.kickstarter.com/projects/flatoutgames/cascadia?ref=ksr_partner_rahdo (11:28) IN TOO DEEP (Reboot) https://www.kickstarter.com/projects/burntislandgames/in-too-deep-reboot?ref=ksr_partner_rahdo (15:28) LONESOME VILLAGE https://www.kickstarter.com/projects/ogrepixel/lonesome-village?ref=ksr_partner_rahdo Ryan's Channel: https://www.youtube.com/nightsaroundatable Shea's Channel: https://www.youtube.com/rtfmshow Ruel's Channel: https://www.twitch.tv/ruelgaviola ... https://boardgamegeek.com/boardgame/23953/outside-scope-bgg\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RRT-Kickstarters-Projects-We-Love-ejedh0',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 1199,\n",
       "   'published': '9/10/2020'},\n",
       "  {'uid': 'a50bbf31-61c7-55b6-86da-2751f0d66944',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO3487215714.mp3',\n",
       "   'title': 'RTT Episode 64',\n",
       "   'subtitle': None,\n",
       "   'summary': 'Will you still need me? SHOW NOTES: •••[00:01:10] Games Q&A►►► Anything positive from Covid in the boardgame industry? What defines a boardgame expert opinion? Best polyominal games? Length and swingyness of Altiplano Traveler? Using rankingengine.pubmeeple.com? Replaying old games? 7 Wonders dropping 2p rules? Feld City Collection regular or deluxe? Marvel Champions thoughts? RRT stuff in the gaming section? Any inside Amsterdam game info? Next step after Pandemic? TTS thoughts? Disclaimers in rulebooks? Embargoes vs Kickstarter previews? Amsterdam runthrough? top100 with Shea & Ryan? Rokoko too open? Games of 2020 so far? No Uprising coverage? What’s up with crossover top10s? Standalone roundups? What games get rounded up? Why are people anti-post campaign Pandemic? Reigniting passion for heavy games? Other games for contributors to cover? Why does Jen enjoy Shadowrun Crossfire? How to solo Marvel Champions? Preferred solo scoring style? Move viewed video? Previews with vs without final thoughts? Average length of Dominion for us? 3+ games that work well with 2? What’s Your Game’s rankings? •••[01:55:50] Games with Jen Q&A►►► Jen’s fave mechanism, and why? Our fave gaming moment? Where will RRT be in 5 years? Could Jen add her game of the month to the roundups? Gaming post breakup? •••[02:23:03] Personal Q&A►►► What has we learned as a species from the lockdown? Jen’s and my wrestling intro song? What fantastical pet would we want? Decoupling personal value and games? What if I hadn’t done drama in highschool? Swimming? Cats vs dogs in boardgames? Wingspan with dogs? Dark on Netflix? Kamala Harris thoughts? High Score on Netflix? Travel disasters? Jen author suggestions? Reconciling new game drive vs old game comfort? Lead designer monetization dictates? Preferred development scheme? Dictates to return to design? Exec influence on design? Digital boardgame value? Would Jen or I miss the Rahdo persona? Was Rahdo inevitable? Increasing old hen production? Dogs and hens? Overseas tax avoidance? Reference man? Gerald vs Gerard? Animal pic format? How did Jen become so wonderful? Fave cuts? Fatman Beyond BLM episode? What happened with Christopher Nolan? Wisdom of the month? •••Send your questions to questions@rahdo.com •••Help Rahdo run @ https://patreon.com/rahdo',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RTT-Episode-64-ejd19t',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 16165,\n",
       "   'published': '9/10/2020'},\n",
       "  {'uid': 'e7b83987-9a37-56e8-a6b6-4a9d15fb1fa6',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO7147630840.mp3',\n",
       "   'title': 'RRU August 2020',\n",
       "   'subtitle': None,\n",
       "   'summary': \"23 new games discussed for the month of August! If you'd prefer to watch this in video form, head to https://youtu.be/6JrxBTck3JY :) Intro (0:00) [Shea] Defection (1:05) [Shea] Petrichor: Cows (2:23) [Shea] Philosophia: Floating World (3:47) [Shea] Riftforce (5:37) 16. Warp’s Edge (7:13) 15. Apollo (9:29) 14. Alma Mater (12:36) 13. Ganesha (15:45) 12. Unstocked (17:50) 11. Fruit Picking (22:01) 10. Fox Matters (23:51) 9. Tekhenu (26:04) 8. Treelings (30:21) 7. Streets (32:52) 6. Dr Finn 2021 Game Collection (35:39) 6.4. Butterfly Garden (36:10) 6.3. Mining Colony (38:51) 6.2. Biblios Quill & Parchment (41:47) 6.1. Nanga Parbat (44:31) 5. Cascadia (47:00) 4. Hamburg (50:07) 3. MC: Wrecking Crew & Hu lk (53:04) 2. Tapestry: Plans and Ploys (56:02) 1. Pandemic Legacy Season 0 (58:14) Outro (1:08:27) •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RRU-August-2020-ej0bup',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 4158,\n",
       "   'published': '9/2/2020'},\n",
       "  {'uid': 'f7778b07-a399-53ad-8dd7-9006c2429e33',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO4105987729.mp3',\n",
       "   'title': 'C2C Episode 21',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Hey everybody! Here's this weeks's episode of Corner to Corner, and here's the youtube link if you'd like to watch instead of listen: Episode 21: https://www.youtube.com/watch?v=Ehz0UcYHbW8 •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/C2C-Episode-21-eilu60',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 3686,\n",
       "   'published': '8/26/2020'},\n",
       "  {'uid': 'e4ebc55e-c4bb-5b77-8798-bd3820a396e9',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO1361756529.mp3',\n",
       "   'title': 'C2C Episode 20',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Hey everybody! Here's this weeks's episode of Corner to Corner, and here's the youtube link if you'd like to watch instead of listen: Episode 20: https://www.youtube.com/watch?v=g4pZWDlW0WE •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/C2C-Episode-20-eilu3a',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 3662,\n",
       "   'published': '8/26/2020'},\n",
       "  {'uid': '42c31d88-6d58-55bf-b78c-67f47838cedc',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO6219357295.mp3',\n",
       "   'title': '3@3 (including Top 10 3k+ Games Part 2)',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Hey there, this is a guest appearance I did on Reul Gaviola's 3@3, wherein (amongst other things) I finished my top10 3k+ games, counting down #s 5-1 Interview starts at 3:53 Game countdown at 27:29 •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/33-including-Top-10-3k-Games-Part-2-eiinn9',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 4622,\n",
       "   'published': '8/24/2020'},\n",
       "  {'uid': '5aaab5b4-0fe7-55c3-8e96-0f21091d6257',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO6819329644.mp3',\n",
       "   'title': 'Top 10 3k+ Games (part 1)',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Hey everybody, this month's top10 is a video listing my top 10 games that didn't crack the BGG 3000, but only the 1st half! To watch the 2nd half of this episode, head over to https://www.youtube.com/watch?v=tg7aEo_TH2A or check out the next podcast listing, my appearance on Ruel Gaviola's 3@3 show. If you'd prefer to watch this top10-6 in video form, head to https://www.youtube.com/watch?v=TZ7XdGwH3H4 :) And now... the spoilers!!! Introduction (0:00) #10 Mercado (2:15) #9 Xi'an (5:00) #8 The Boldest (8:56) #7 Capo Dei Capi (11:31) #6 Institute for Magical Arts(14:08) The list continues (17:50) •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com Sponsorships: on for this episode\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Top-10-3k-Games-part-1-eiimrh',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 1210,\n",
       "   'published': '8/24/2020'},\n",
       "  {'uid': '1fbc462a-ec5d-58fc-9db7-eb687c6e5447',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO7806138083.mp3',\n",
       "   'title': 'Top 10 Heavy Games II',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Hey everybody, this month's top10 is a revisit of my top10 co-ops which I originally filmed back in 2015. And this time, I'm joined by Jess Cassady, and I definitely recommend checking out her content at https://www.youtube.com/playlist?list=PLeXdZKJsaETCzmeSordt_6G920OBJlFr3 and https://www.youtube.com/watch?v=MBtqikZ-otw If you'd prefer to watch this top10 in video form, head to https://youtu.be/X40YLbEToFM :) And now... the spoilers!!! Introduction (0:00) Rahdo's #10 Black Angel (5:11) Jess's #10 Food Chain Magnate (10:48) Rahdo's #9 Gloomhaven (20:38) Jess's #9 Acquire (26:08) Jess's #8 Chartered (28:35) Rahdo's #8 Feast for Odin (31:36) Jess's #7 Civilization (36:04) Rahdo's #7 Maracaibo (42:47) Jess's #6 Dominant Species (50:53) Rahdo's #6 Spirit Island (58:06) Jess's #5 Brass: Birmingham (1:10:41) Rahdo's #5 Anachrony (1:15:13) Jess's #4 18XX (1:21:25) Rahdo's #4 CO2: Second Chance (1:34:14) Jess's #3 Pax Pamir 2nd Edition (1:40:17) Rahdo's #3 Cooper Island (1:49:05) Jess's #2 Bios: Origin (1:53:04) Rahdo's #2 The Gallerist (1:57:56) Jess's #1 Ginkopolis (2:03:19) Rahdo's #1 Agra (2:13:30) •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Top-10-Heavy-Games-II-ei0dh3',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 8712,\n",
       "   'published': '8/14/2020'},\n",
       "  {'uid': '4dd50540-76f8-53ca-b1a5-9d78f8144baf',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO1959902829.mp3',\n",
       "   'title': 'RTT the Meepleville Meets interview',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Timm Metivier (the owner of Meepleville in Las Vegas, as well as showrunner of the Dice Tower West convention) definitely ran through me and my life in this VERY deep interview, covering my childhood, my time in the videogame industry, my YouTube success, my BLM shirt, and more! If you'd prefer this in video form, you can find it at https://youtu.be/ecc2j5vVhgw •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RTT-the-Meepleville-Meets-interview-ehppt7',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 4581,\n",
       "   'published': '8/6/2020'},\n",
       "  {'uid': '008903ce-d2b1-59ab-b799-72e641c79964',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO8494408166.mp3',\n",
       "   'title': 'RTT Episode #63',\n",
       "   'subtitle': None,\n",
       "   'summary': 'My first bleep! SHOW NOTES: •••[00:01:10] Games Q&A►►► Aeon’s End memory? Eric Lang on Lovecraft? Inka Brand on games as art? Scythe on RRT? Prioritizing games? Primal the Awakening? Martin Wallace co-designed Runebound? Aeon’s End Legacy vs Clank Legacy? Incorrect game classifications? Roll to resolve ruining potential faves? D6 vs all the other D#s? Bad mechanisms justified by theme? How to find the right ramble? Jaws of the Lion if you’re already Gloomhaven experts? Why not mention designers in run-throughs? How to choose what gets runthrough vs rundown vs rounded up? How to rate Pandemic? Dummy players? Themes we want to see more of? Cards better than dice? Legacy always a good thing? Gaming trends? Why are we gaming masochists? •••[01:42:34] Personal Q&A►►► Is “rahdo” to me as Hulk is to Bruce Banner? Empath? Emotional to kill chickens? Roosters? Chicken breeds? Hansa Teutonica? Fostering dogs? Why fantasy over scifi in boardgaming? Keeping players in the dark? Fave Star Trek episodes? Violent videogames leading to real world violence? Trump’s economy? Australian gun control? BLM? Global warming? Michael Moor’s Planet of Humans? Dark on Netflix? Star Trek Continues? Showering schedule? How to buy a half cow? Skiing with Jen? Jen read any good books lately? Worst insult? Theme song of our lives? What to consider regarding retiring in other countries? Overwhelmed by RRT? New Fable? How’s the leg? Fave dystopia fiction? Unity2020? Jen’s fave book genres? Pandemic Legacy Season 1 death? Moving considerations? How to handle self defeating player? Jen’s words of wisdom? •••Send your questions to questions@rahdo.com •••Help Rahdo run @ https://patreon.com/rahdo •••Download episode directly: https://s3-us-west-2.amazonaws.com/anchor-audio-bank/staging/2020-08-05/35795195a81efbd4d0edf4c376d8eff6.m4a',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RTT-Episode-63-ehmncq',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 13064,\n",
       "   'published': '8/5/2020'},\n",
       "  {'uid': '0c52456d-193a-5fc3-84e2-2266eb7a05e8',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO5798045518.mp3',\n",
       "   'title': 'RRU July 2020',\n",
       "   'subtitle': None,\n",
       "   'summary': \"24 new games discussed for the month of July. If you'd prefer to watch this in video form, head to https://www.youtube.com/watch?v=809N0-hVaP8 :) Intro (0:00) [ryan] Dead Reckoning (0:57) [shea] Turris (2:09) 22. Back to the Future: Back in Time (4:33) 21. Garum (8:36) 20. Spirits of the Forest: Moonlight (12:50) 19. Nevada City (15:44) 18. Lizard Wizard (19:31) 17. Reavers of Midgard (21:35) 16. Tutankhamun (26:03) 15. Cosmic Encounter Duel (29:56) 14. Tang Garden (35:19) 13. Alubari (39:09) 12. Relics of Rajavihara (42:09) 11. Dice Settlers: Western Sea (43:35) 10. Zen Garden (46:37) 9. With a Smile and a Gun (49:01) 8. Altiplano: Travelers (52:34) 7. Perseverance Chapter 1 & 2 (55:31) 6. Plunderous (59:31) 5. My City (1:07:30) 4. Pendulum (1:11:07) 3. Dominion: Menagerie (1:14:25) 2. Marvel Champions: Dr Strange (1:18:31) 1. Targi: The Expansion (1:20:20) •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RRU-July-2020-ehi9me',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 5015,\n",
       "   'published': '8/2/2020'},\n",
       "  {'uid': '3410e3f0-6168-5310-9071-7a6e36af9970',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO2820796287.mp3',\n",
       "   'title': 'C2C Episode 19',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Hey everybody! Here's this weeks's episode of Corner to Corner, and here's the youtube link if you'd like to watch instead of listen: Episode 19: https://www.youtube.com/watch?v=KVgcSVK1Jgw •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/C2C-Episode-19-ehc6qc',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 3603,\n",
       "   'published': '7/28/2020'},\n",
       "  {'uid': 'fc2567fa-4a11-5e3f-adb8-94a5e06d902c',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO2210194554.mp3',\n",
       "   'title': 'RTT the Aldie Interview',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Hey everybody, I recently did a 2 hour interview with Scott Alden of Boardgamegeek.com, where we discussed a wide range of topics and basically tried to get to know each other a little better. If you'd prefer this in video form, you can find it at https://www.youtube.com/watch?v=OIPhPrPhcH8 •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RTT-the-Aldie-Interview-egrjua',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 7782,\n",
       "   'published': '7/17/2020'},\n",
       "  {'uid': 'f1935df3-dc08-5bef-bcd5-1c0a2ebfca47',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO8307836076.mp3',\n",
       "   'title': 'C2C Episode 18',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Hey everybody! Here's this weeks's episode of Corner to Corner, and here's the youtube link if you'd like to watch instead of listen: Episode 18: https://www.youtube.com/watch?v=YNdHawg7eqE •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/C2C-Episode-18-egomu6',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 3682,\n",
       "   'published': '7/15/2020'},\n",
       "  {'uid': 'f0ba7826-c3bb-5af6-98f5-c4204ff5c3b4',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO9922654473.mp3',\n",
       "   'title': 'RTT Episode 62',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Back to normal, including some heavy topics that snuck up on me! SHOW NOTES: •••[00:00:50] Games Q&A►►► Virtual Cons? Sentinels of the Multiverse? Castles of Tuscany? Tracking new games? Lovecraft in gaming part II? RRT full content list? SU&SD's take on Wingspan? Jaws of the Lion rating? TTR London? Hanamikoji? Jaws of the Lion if Gloomhaven didn't exist? Bad things about Legacy? Secret endgame scoring? Colonialism in boardgaming? My interactions with designers of games I cover? Glen More 2 art? Oath a Legacy game? Pipeline? •••[01:30:25] Personal Q&A►►► How much work to have chickens? Changes to our worldview? Pillars of the Earth videogame? Savage Dragon & Criminal? Professional wrestling? BLM, the organization? Would we rather be back in Malta to face COVID? New Zealand? What Hogwarts house would we be? Ambivert? Eggs? Puppy advice? More puppy advice? Hat day? Yang not partisan enough? Teatime with Jen Heavy Cardboard crossover? 5 fave things about England? Fave new show? Most recent good film? Revisiting old comfort tv? Guildford landmarks? Jen's words of wisdom? •••Send your questions to questions@rahdo.com •••Help Rahdo run @ https://patreon.com/rahdo •••Download episode directly: https://d3ctxlq1ktw2nl.cloudfront.net/staging/2020-6-11/89229828-44100-2-e2a9e4a875631.m4a\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RTT-Episode-62-egj4op',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 11445,\n",
       "   'published': '7/11/2020'},\n",
       "  {'uid': '608b4875-5720-5dc0-ab7b-e74306a599aa',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO2152138933.mp3',\n",
       "   'title': 'RRU June 2020',\n",
       "   'subtitle': None,\n",
       "   'summary': \"17 new games discussed for the month of June. If you'd prefer to watch this in video form, head to https://www.youtube.com/watch?v=YZAx3NFxQMU :) Intro (0:00) Mini Rogue [Shea] (2:00) Monumental [Ryan] (3:19) 15. Minecraft (5:14) 14. Back to the Future: Dice Through Time (8:00) 13. Abandon all Artichokes (12:12) 12. Metro X (14:06) 11. King’s Forge (17:00) 10. Hokkaido (19:47) 9. Roll Player Adventure (22:06) 8. Age of Atlantis (26:00) 7. Wonder Woman: Challenge of the Amazons (32:55) 6. Intrepid (37:52) 5. Overlord (41:11) 4. Roll Camera (44:20) 3. Concordia: Egypt Map (47:08) 2. Marvel Champions: Black Widow (48:55) 1. Gloomhaven: Jaws of the Lion (50:34) •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RRU-June-2020-eg7069',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 3274,\n",
       "   'published': '7/2/2020'},\n",
       "  {'uid': 'cfcca945-e46b-5b95-aa47-bf9db053fd7b',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO5811849024.mp3',\n",
       "   'title': 'C2C Episode 17',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Hey everybody! Here's this weeks's episode of Corner to Corner, and here's the youtube link if you'd like to watch instead of listen: Episode 17: https://www.youtube.com/watch?v=8BwR07txbZ4 •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/C2C-Episode-17-efseu1',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 3633,\n",
       "   'published': '6/24/2020'},\n",
       "  {'uid': 'b2f7355e-2c65-5081-be71-54a80e51f993',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO3810760482.mp3',\n",
       "   'title': 'Top 10 Co-op Games II',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Hey everybody, this month's top10 is a revisit of my top10 co-ops which I originally filmed back in 2014. And this time, I'm joined by Ruel Gaviola, and I definitely recommend you check out his Twitch and/or Facebook feeds for great live streamed boardgame sessions with him and his family! If you'd prefer to watch this top10 in video form, head to https://www.youtube.com/watch?v=zUFvHz-Mit4 :) And now... the spoilers!!! Introduction (0:00) Rahdo's #10 Aerion (8:23) Ruel's #10 Dead of Winter (10:30) Rahdo's #9 The Crew (13:38) Ruel's #9 Codenames: Duet (18:59) Rahdo's #8 Spirit Island (21:20) Ruel's #8 Kitchen Rush (26:14) Rahdo's #7 FUSE (30:11) Ruel's #7 Star Trek Panic (32:56) Rahdo's #6 Cities Skylines (36:34) Ruel's #6 Paperback (40:50) Rahdo's #5 The War of Mine (44:24) Ruel's #5 Just One (51:16) Rahdo's #4 Tiny Epic Defenders (54:17) Ruel's #4 Escape: The Curse of the Temple (58:44) Some Honorable Mentions (1:01:31) Rahdo's #3 Aeon's End (1:03:14) More honorable mentions (1:08:01) Ruel's #3 Freedom: The Underground Railroad (1:10:49) Rahdo's #2 Marvel Champions (1:16:15) Ruel's #2 The Mind (1:22:22) Rahdo's #1 Gloomhaven (1:26:50) Ruel's #1 Pandemic Legacy Season 1 (1:34:28) Even more honorable mentions (1:40:46) •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Top-10-Co-op-Games-II-efp83k',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 6362,\n",
       "   'published': '6/22/2020'},\n",
       "  {'uid': '47c2c6b1-025e-5500-9f05-da32f8ba8cd4',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO8867033139.mp3',\n",
       "   'title': 'C2C Episode 16',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Hey everybody! Here's this weeks's episode of Corner to Corner, and here's the youtube link if you'd like to watch instead of listen: Episode 16: https://www.youtube.com/watch?v=BXB3c82iPpo •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/C2C-Episode-16-ef72c3',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 3590,\n",
       "   'published': '6/9/2020'},\n",
       "  {'uid': '1f73bc13-67a2-57e4-b3aa-7bb65df9da86',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO7982775248.mp3',\n",
       "   'title': 'RTT Episode 61',\n",
       "   'subtitle': None,\n",
       "   'summary': 'Full episode archive... activate! SHOW NOTES: •••[00:01:56] Games Q&A►►► Crossfire vs Dragonfire? Boardgame genre nomenclature? Martin Wallace thoughts? Nations vs Through the Ages? Ranking the Pillars of the Earth trilogy? How can we enjoy Institute of Magical Arts? Game characters connects and disconnects? Cannabis party game? Joe Rogan as a boardgamer? Homesteaders expansion coverage? Legacy definition? Boardgame apps for testing? The \"Ryan Thing\"? The Rahdo reach? FUSE vs Escape? Escape Roll & Write? Merlin Arthur expansion worth the extra length? What now with no Essen/Gencon upcoming games? Stacking the deck? •••[01:47:12] Personal Q&A►►► Tablet apps we play? Morality choices in games? Jen getting burned while making glass? Why am I like I am? Butterfly effect store clerk? Moving abroad pitfalls? Origin of Jen\\'s glass making? Glass rod annealing? Hot beverage time with Jen? My end as a mailman? Survivor\\'s most recent season thoughts? Are we humanists? Jen\\'s thoughts on Pillars of the Earth books? Food budgeting? Cookie/biscuit milkshake? Star Wars supporting material? MATH shirt? National parks in Washington state? UBI and people\\'s purpose? Childhood traditions in our lives? Returning to the videogame industry? Jen\\'s words of wisdom? •••Send your questions to questions@rahdo.com •••Help Rahdo run @ https://patreon.com/rahdo •••Download episode directly: https://s3-us-west-2.amazonaws.com/anchor-audio-bank/staging/2020-06-08/6ec1cb394dabff7529a5d8f2297df0a8.m4a',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RTT-Episode-61-ef4flf',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 13071,\n",
       "   'published': '6/8/2020'},\n",
       "  {'uid': 'c4a3cf13-0499-577c-91d2-cc2739e5f3c7',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO2458569227.mp3',\n",
       "   'title': 'RRU May 2020',\n",
       "   'subtitle': None,\n",
       "   'summary': \"19 new games discussed for the month of May. If you'd prefer to watch this in video form, head to https://www.youtube.com/watch?v=HPKxGCwzHEg If you can, please consider helping fund organizations on the frontlines of the fight to create a more just society: https://www.townandcountrymag.com/society/money-and-power/g32730417/george-floyd-blm-how-to-donate-help/ Please consider watching Marc Bernardin's excellent piece in the first half hour of Fatman Beyond 5/30/20 https://www.youtube.com/watch?v=3BrYDZFKAjM or https://soundcloud.com/fatmanonbatman/284-live-from-the-quarantina-53020 The Ink Lab is good people! https://the-ink-lab.ueniweb.com/ Intro (0:00) Four Shea Games (3:14) 15. Unlocking Insanity (7:40) 14. Maharaja (11:01) 13. Empires of the North expansions (15:05) 12. Sunflower Valley: The Card Game (18:57) 11. Cupcake Empire (22:17) 10. Pandemic Hot Zone (26:18) 09. Extra! Extra! (28:54) 08. Dollars to Donuts (32:50) 07. The Dead Eye (35:14) 06. Merchants of the Dark Road (37:47) 05. Zoo-ography (42:21) 04. Shadow Kingdoms of Valeria (45:49) 03. The Whatnot Cabinet (47:30) 02. Underwater Cities New Discoveries (51:22) 01. Wingspan: European Expansion (53:52) Shirt Story (56:52)\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RRU-May-2020-ef30uc',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 3500,\n",
       "   'published': '6/6/2020'},\n",
       "  {'uid': 'bdd15169-ca81-5e94-8e70-0d96fc1e85e0',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO4462654417.mp3',\n",
       "   'title': 'Top 10 \"Must Have\" Games (revisited)',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Hey everybody, May's top10 is me updating my list the games I would choose if I was forced to limit my collection to a measly 10. I'm joined by Shea Parker and Ryan Creighton, who have recently become contributors to the Rahdo Runs Through channel as well! My original Must Have list from 5 years ago: https://www.youtube.com/watch?v=VxeDzkm8-7w Shea's channel (RTFM): https://www.youtube.com/rtfmshow Ryan's channel (Nights Around a Table): https://www.youtube.com/nightsaroundatable •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com SPOILERS!!! . . . . . .#10 Rahdo: Roll for the Galaxy Shea: Omen: A Reign of War Ryan: Merchants and Marauders #9 Shea: Eldritch Horror Ryan: Roll for the Galaxy Rahdo: FUSE #8 Ryan: 7 Wonders Duel Rahdo: Shadowrun Crossfire Prime Runner Ed. Shea: Crokinole #7 Rahdo: Kokoro Avenue of the Kodama Shea: Star Realms Ryan: Terra Mystica #6 Shea: Telestrations Ryan: Alchemists Rahdo: Pandemic Legacy Season 1 #5 Ryan: Keyflower Rahdo: The Isle of Cats Shea: Cosmic Encounter #4 Rahdo: Troyes Shea: Quacks of Quedlinburg Ryan: Tiny Epic Galaxies #3 Shea: Gloomhaven Rahdo: Gloomhaven Ryan: Trickerion #2 Ryan: Alien Frontiers Rahdo: Castles of Burgundy 20th Anniversary Edition Shea: Spirit Island #1 Ryan: Everdell Shea: Twilight Empirium 4th Edition Rahdo: Paperback\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Top-10-Must-Have-Games-revisited-eeskr3',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 11084,\n",
       "   'published': '6/2/2020'},\n",
       "  {'uid': 'f83fc2b3-83e7-54af-bc8b-b7bba37a6a02',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO1271417371.mp3',\n",
       "   'title': 'C2C Episode 15',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Hey everybody! Here's this weeks's episode of Corner to Corner, and here's the youtube link if you'd like to watch instead of listen: Episode 15: https://www.youtube.com/watch?v=KpwsY3b8YDA •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/C2C-Episode-15-eer24v',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 3678,\n",
       "   'published': '5/31/2020'},\n",
       "  {'uid': 'de48a114-54e3-5556-9783-7e828b682dbf',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO8371652060.mp3',\n",
       "   'title': 'C2C Episode 14',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Hey everybody! Here's this weeks's episode of Corner to Corner, and here's the youtube link if you'd like to watch instead of listen: Episode 14: https://www.youtube.com/watch?v=cvjHQ6pEOTA •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/C2C-Episode-14-eeefu5',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 3629,\n",
       "   'published': '5/22/2020'},\n",
       "  {'uid': 'e2dadfcc-c434-5dce-8bf9-5bb97848783e',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO2312562350.mp3',\n",
       "   'title': 'C2C Episode 13',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Hey everybody! Here's this weeks's episode of Corner to Corner, and here's the youtube link if you'd like to watch instead of listen: Episode 13: https://youtube.com/watch?v=aGmFwiqzy6Y •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/C2C-Episode-13-eee9q2',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 3642,\n",
       "   'published': '5/15/2020'},\n",
       "  {'uid': 'be1ef3a3-d57a-55d1-9227-e02566b3c352',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO3424513240.mp3',\n",
       "   'title': 'RRU April 2020',\n",
       "   'subtitle': None,\n",
       "   'summary': \"24 new games discussed for the month of April. If you'd prefer to watch this in video form, head to https://www.youtube.com/watch?v=h1g00ACXwOw :) (0:00) Intro (3:41) 24. Fallout Shelter (5:46) 23. Yggdrasil Chronicles (9:50) 22. Kanagawa (12:24) 21. Bunny Kingdom (15:48) 20. Clank! In! Space! Cyber Station 11 (22:14) 19. Liberation of Rietburg (25:10) 18. Telepathic (28:44) 17. Yinzi (31:49) 16. Manitoba (40:04) 15. Curators (42:45) 14. Traintopia (44:29) 13. Small Islands (47:01) 12. Steamfall: Genesis (50:26) 11. Fairy Trails (54:20) 10. Destination Neptune 2nd ed (57:21) 09. Ankh’or (59:47) 08. Rolled West (1:03:15) 07. Ausonia (1:05:31) 06. Trails of Tucana (1:06:48) 05. The Phantom (1:11:06) 04. Homesteaders: New Beginnings (1:14:41) 03. Barenpark: Bad News Bears (1:17:40) 02. Robin of Locksley (1:20:08) 01. Walking in Provence •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RRU-April-2020-eee9ql',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 5092,\n",
       "   'published': '5/7/2020'},\n",
       "  {'uid': 'af9d9fbd-1eee-5d35-a031-af9e9109f7c8',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO1823312291.mp3',\n",
       "   'title': 'C2C Episode 12',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Hey everybody! Here's this weeks's episode of Corner to Corner, and here's the youtube link if you'd like to watch instead of listen: Episode 12: https://www.youtube.com/watch?v=8BCwPuW5e1g •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/C2C-Episode-12-eee9pv',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 3687,\n",
       "   'published': '5/6/2020'},\n",
       "  {'uid': '38ca2947-1e1c-5d15-832d-05a059bfc66e',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO1187971746.mp3',\n",
       "   'title': 'RTT Episode 60',\n",
       "   'subtitle': None,\n",
       "   'summary': \"5 years, and i'm still not preparing properly! SHOW NOTES: •••[00:01:50] Games Q&A►►► Most innovative mechanism? What game to retheme? Keeping non-2p games? Accepting game deliveries these days? Area control for 2p? Best Marvel Champions characters? Rise of the Red Skull? Best heroes vs boss game? Race for the Galaxy vs Roll vs Jump Drive vs New Frontiers? Caper, Yinzi & 1987? Railroad Revolution expansion? Other Azul games? Roundup recordings? Which of my videogames would make the best boardgame? Thoughts about KS's gone wrong? Lazy gameplay mechanisms? What happened to Transatlantic? Forum Trajanum compared to other Felds? Upcoming Felds? Dreams of Tomorrow? Incomplete prototypes? Shea plans? Atmosfear the first digital boardgame? Last Will vs Prodigal's Club? Simple solos? Covid19's affect on the industry? Boardgame boxes facing out on shelves? Handling multiple modules? Talking to Tom Vasel about Le Havre? My City really legacy? •••[01:36:22] Personal Q&A►►► How is bengal spice so sweet? Introducing a new dog? Did Jen play any of my games? Spelling of Jen's name? How do we relax? Pub food? No breakfast? Most important videogames in my life? Jen's fave West Wing character? Letterkenny? Preferred news sources? Avoiding confirmation bias? What podcasts do we listen to? PNW travel? Best president? Ideal spot to live in US? UBI vs M4A? Bernie supporters misunderstood? Bethesda story? Really plenty of games out there? Oculus Quest games? Game play counselor? Safari experience? Beat Saber expertise? Egg sizes? Preparedness for Covid19? Fave song on the radio these days? Impostor syndrome? Rise of Skywalker observations? •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RTT-Episode-60-eee9s9',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 13341,\n",
       "   'published': '5/3/2020'},\n",
       "  {'uid': 'c023cc2e-0cba-5ec8-a7fd-59fb70683298',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO2368107239.mp3',\n",
       "   'title': 'Top 10 of 2019, revisited',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Hey everybody, this month's top10 was a revisit of my top10 of 2019, and extend the countdown to the top30. If you'd prefer to watch this in video form, head to https://www.youtube.com/watch?v=aghbDb_P0bQ :) And now... the spoilers!!! 30. Aerion 29. Circadians: First Light 28. Edge of Darkness 27. Trails of Tucana 26. Bruxelles 1897 25. The Crew 24. Rush MD 23. Ticket to Ride: London 22. The Magnificent 21. Fantastic Factories 20. Bloom Town 19. On Tour 18. Paris: New Eden 17. Solar Draft 16. It's a Wonderful World 15. Aquatica 14. Cooper Island 13. Coloma 12. Cities: Skylines 11. Glen More II 10. Mandala 09. Walking in Provence 08. The Isle of Cats 07. Wingspan 06. Miyabi 05. Tapestry 04. Tiny Towns 03. Black Angel 02. Marvel Champions 01. Maracaibo •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Top-10-of-2019--revisited-eee9q6',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 3015,\n",
       "   'published': '4/29/2020'},\n",
       "  {'uid': '5130bce6-121c-5aea-b1fd-0abe6d63b636',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO6774287675.mp3',\n",
       "   'title': 'C2C Episode 11',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Hey everybody! Here's this weeks's episode of Corner to Corner, and here's the youtube link if you'd like to watch instead of listen: Episode 11: https://www.youtube.com/watch?v=tgj9a45ZCF8 •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/C2C-Episode-11-eee9qa',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 3645,\n",
       "   'published': '4/29/2020'},\n",
       "  {'uid': '1ad77c80-1dd7-5b60-bf00-3bc3af0be493',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO5105702045.mp3',\n",
       "   'title': 'C2C Episodes 9-10',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Hey everybody! Here's this weeks's episodes of Corner to Corner, and here's the youtube links if you'd like to watch instead of listen: Episode 9: https://www.youtube.com/watch?v=lR_-B-PV4PY Episode 10: https://www.youtube.com/watch?v=x4Uax5Oza_A •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/C2C-Episodes-9-10-eee9qr',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 7289,\n",
       "   'published': '4/27/2020'},\n",
       "  {'uid': '1c2e403d-e7c0-5ac0-8dfd-efcba19b63a9',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO4905399190.mp3',\n",
       "   'title': 'C2C Episodes 7-8',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Hey everybody! Here's this weeks's episodes of Corner to Corner, and here's the youtube links if you'd like to watch instead of listen: Episode 7: https://www.youtube.com/watch?v=nk9C0knuFXA Episode 8: https://www.youtube.com/watch?v=C9Wh1r0Kn20 •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/C2C-Episodes-7-8-eee9qh',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 7336,\n",
       "   'published': '4/20/2020'},\n",
       "  {'uid': '7035f633-aeb0-52c0-b701-d1d69fa2adf6',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO3627919173.mp3',\n",
       "   'title': 'RTT Episode 59',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Warning: buttons will be pushed! SHOW NOTES: •••[00:00:28] Games Q&A►►► Making regular games soloable? The future of deckbuilding? Themes Jen doesn't like? How to help Rahdo Run Through? Rahdo requests? Emotionally touching games? Designing new mechanisms? Games about dreams? Branching out? How do I learn games? A day in the life of Rahdo? The three types of carebear? GAMA during corona? Using theme to teach games? Organizing game components? Rahdo promos? Justifying Pandemic thematically? Why don't I rate Orleans higher?n Abyss vs Conspiracy: Abyss? How many goofs before refilming? Why no mathtrades? What hardware & software do I film with? Thoughts on Burgundy 20th Anniversary Ed.? Exploding Kittens love? App automas? Do I value innovation too much? Skipping classics? Super Rahdo auctions? Did I misrepresent Forgotten Circle haters? Superheroes of Renown and other homebrew designs? Rules discovery? Magic vs Keyforge? Rolling Realms? •••[01:33:13] More games Q&A (with Jen)►►► Explaining RRT popularity? RTT in the Dice Tower network? Most incredible gaming moment? How to get friends past gateways? •••[01:58:32] Personal Q&A►►► Mutants in the Marvel Comics universe? Avenue 5? The Passage trilogy? Thoughts on The Expanse, The Witcher and Farscape? Picard is portrayed incorrectly? Luke a Mary Sue? Favourite Star Wars droid? Would I really go back to work on a new SyphonFilter? How has Corona affected us? Biden's chances? Thoughts on Yang leaving the race? How much is too much when it comes to SJWness? Examples of how music has advanced? When did we decide not to have kids? How's Jen's monovision working out? Jen's inherent contradiction in how she consumes entertainment media? How does Jen fell about all the Rahdo haters? 23 and me results? Advice about what not to do when moving overseas? Tea recommendations from Jen? Any phone/tablet games we enjoy? West Wing Weekly? Working with Peter Molyneux? Jen's words of wisdom? Picard thoughts now that the season is over? •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RTT-Episode-59-eee9um',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 15643,\n",
       "   'published': '4/13/2020'},\n",
       "  {'uid': 'eeac291c-a957-5680-88b7-19324da35281',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO1595638577.mp3',\n",
       "   'title': 'C2C Episodes 5-6',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Hey everybody! Here's this weeks's episodes of Corner to Corner, and here's the youtube links if you'd like to watch instead of listen: Episode 5: https://www.youtube.com/watch?v=VMbYI3JBQkE Episode 6: https://www.youtube.com/watch?v=wALAtCQXdfs •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/C2C-Episodes-5-6-eee9rg',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 7223,\n",
       "   'published': '4/11/2020'},\n",
       "  {'uid': '4de5e28e-3175-55d3-b858-a7d9f6f22ae4',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO7671156765.mp3',\n",
       "   'title': 'C2C Episodes 3-4',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Hey everybody! Here's this weeks's episodes of Corner to Corner, and here's the youtube links if you'd like to watch Episode 3: https://www.youtube.com/watch?v=3IVGGnDOVKg Episode 4: https://www.youtube.com/watch?v=Hv_VUJRFlBQ •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/C2C-Episodes-3-4-eee9qj',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 7134,\n",
       "   'published': '4/4/2020'},\n",
       "  {'uid': '9dcf2444-5a58-561c-b8f1-d9759147f5f6',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO3329539448.mp3',\n",
       "   'title': 'RRU March 2020',\n",
       "   'subtitle': None,\n",
       "   'summary': \"22 new games discussed for the month of March. If you'd prefer to watch this in video form, head to https://www.youtube.com/watch?v=xZuFczvGjfQ :) Countdown --------------------------- 22. Gloomy Graves 21. Franky: Rock'n Vegas 20. Flyin’ Goblin 19. Lawyer Up 18. Sidekick Saga 17. Dwarf 16. Quest for El Dorado: Golden Temples 15. Excavation Earth 14. Canvas 13. Succulent 12. Steampunk Rally: Fusion 11. Squire for Hire: Mystic Runes 10. Paris 9. Kingdom Builder: Nomads 8. Santa Monica 7. The Crew 6. Planet Unknown 5. Mandala 4. Marvel Champions: Captain America & Thor 3. Agricola Revised Edition 2. Gloomhaven: Forgotten Circles 1. Frosthaven •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RRU-March-2020-eee9r2',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 3785,\n",
       "   'published': '4/3/2020'},\n",
       "  {'uid': '1b1b67ce-9131-5d7c-8e0a-19fe2a736fe7',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO6916788752.mp3',\n",
       "   'title': 'C2C Episodes 1-2',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Hey everybody! Welcome to a brand new show that I'm putting on YouTube with Tom Vasel of the Dice Tower: Corner to Corner. This is the first two episodes, and if you'd rather watch them than listen to them, the direct links are: Episode 1: https://www.youtube.com/watch?v=sqlc6Ekompk Episode 2: https://www.youtube.com/watch?v=ZX2Mw9ti2Gw •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/C2C-Episodes-1-2-eee9s7',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 7424,\n",
       "   'published': '3/29/2020'},\n",
       "  {'uid': '095cd346-ae39-588e-9e1b-af7d1d298c79',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO8125363873.mp3',\n",
       "   'title': 'Top 10 Influential Games of the Decade',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Hey everybody, welcome to the 2nd episode of the audio-only version of my monthly top 10 videos. If you'd prefer to watch this in video form, head to https://www.youtube.com/watch?v=2B3Yaj-Ytto :) And now... the spoilers!!! Tom's List ------------------------------ 2010 Alien Frontiers 2011 Risk: Legacy 2012 Lords of Waterdeep 2012 Love Letter 2012 X-Wing 2012 Machi Koro 2015 Codenames 2015 TIME Stories 2017 Gloomhaven 2019 Wingspan Rahdo's List ----------------------------- 2010 7 Wonders 2012 Zombicide 2013 Hanabi 2013 Qwixx 2014 Viticulture: Tuscany 2015 TIME Stories 2016 Mansions of Madness 2nd Edition 2016 Oh My Goods: Longsdale in Revolt 2017 Gloomhaven 2019 Wingspan •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Top-10-Influential-Games-of-the-Decade-eee9sb',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 5839,\n",
       "   'published': '3/23/2020'},\n",
       "  {'uid': '3377a356-bb1a-587b-b841-96161c0d7c30',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO2282025358.mp3',\n",
       "   'title': 'RTT Episode 58',\n",
       "   'subtitle': None,\n",
       "   'summary': 'Umm, surely 6 hours is too long? SHOW NOTES: •••[00:00:46] Games Q&A►►► Carcassonne original rule? Etherfield not anticipated? My fave co-op mechanism? How is new TIME stories 2p? What game would I design? Playing with others? Worth it to seek out older games? Ever play oldies? Tubemate recommendation. Boardgame age recommendations? 7 Wonders Armada? Circle the Wagons vs Walking in Provence? Finished Near & Far campaign? Purposeful negativity to boost views? Takenoko? Conspiracy: Abyss? Castles of Tuscany? My City? Handling Lovecraft\\'s racism? Do we Magic the Gathering? How to reach me? Captain is Dead player count? Nights around a table collaboration? Adventure of D reprint? Dreamscape? Boardgame Metacritic? How do I cull my collection? Boardgame reviewer culls in general? Why HATE? Online boardgame implementations? Collection size in Malta vs USA? Boardgame collection update videos? More \"what were they thinking\" games? Unexplored themes? My tastes changing over the years? Games that get better with more than 2? Big boxes for little games? Shadowrun Crossfire vs Aeon\\'s End Legacy? Embargo preference? Zhanguo revisit by Jen? Best time of day to play games? Snacking while gaming? Game lighting? Gaming music? Gaming room? Game session length? D Day Dice thematically odd? Where are the older episodes of RTT? Gloomhaven wannabes? Becoming a 2p consultant? •••[02:36:16] More games Q&A (with Jen)►►► Jen\\'s fave co-op mechanism? FOMO? Why aren\\'t we more critical? 10 games 100 times or 100 games 10 times? D&D interest? Playing games we don\\'t like with the right people? Pigeonholing a bad thing? How far to go with diversity in games? Thematic alternative to VP? Asmodee\\'s new parts policy? What\\'s the problem with having unplayed games? •••[03:51:55] Personal Q&A►►► Moving to Australia? Syphon Filter vs Metal Gear Solid? Works of Fiction or non-fiction that helped make us who we are? Syphon Filter Remake? Videogame recruiters still sniffing around? How was DTW? Indoor skydiving? Fave Survivor? Doctor Who? Why is SJW considered a bad thing by some? What does my MATH shirt mean? Jen\\'s recommendations for young adult fantasy fiction? Malta corruption? Second wedding? What would I say to Trump or Boris Johnson? How did I survive to 13? Factchecking Rahdo related entries on wikipedia? Jen copycats? Who did we vote for in democratic primary? Jen\\'s wisdom of the month? More Picard thoughts (spoilers)? Mandalorian thoughts (spoilers)? Rise of Skywalker Thoughts (spoilers)? •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RTT-Episode-58-eee9vv',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 21535,\n",
       "   'published': '3/8/2020'},\n",
       "  {'uid': '903058d8-0431-55ab-884a-01603d625c3c',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO9384408583.mp3',\n",
       "   'title': 'RRU February 2020',\n",
       "   'subtitle': None,\n",
       "   'summary': \"24 new games discussed for the month of February. If you'd prefer to watch this in video form, head to https://www.youtube.com/watch?v=ufPoou2T7Cs :) DTC Games --------------------------- Cubitos The Crew Mandala Marvel Champions expansions Queen of Hansa Silver and Gold Ludocherry shirts Countdown --------------------------- 18 Oceans 17 Chrono Corsairs 16 Dawn of Mankind 15 Space Base: Shy Pluto 14 Mind MGMT 13 Matchbox Collection 12 Public Market 11 Lift Off 10 Deadly Doodles 9 Enchanters: East Quest 8 Stellar 7 Masters of Charms 6 Mechanica 5 Rush MD 4 Teotihuacan: Late Preclassic Period 3 Tumble Town 2 Tiny Towns: Fortune 1 Castles of Burgundy Anniversary Edition •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RRU-February-2020-eee9r1',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 3429,\n",
       "   'published': '3/3/2020'},\n",
       "  {'uid': '6290fa92-a94e-5742-b3c7-3cf12edf2b64',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO8678402020.mp3',\n",
       "   'title': 'Top 10 Games of the Decade',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Hey everybody, welcome to the first episode of the audio-only version of my monthly top 10 videos. If you'd prefer to watch this in video form, head to https://www.youtube.com/watch?v=aiAeWM1Jxuw :) Countdown ------------------- 10. Roll for the Galaxy (2014) 09. Dungeon Petz (2011) 08. 7 Wonders (2010) 07. Keyflower (2012) 06. Nations (2013) 05. Castles of Burgundy (2011) 04. Troyes (2010) 03. Gloomhaven (2017) 02. Shadowrun: Crossfire (2014) 01. Pandemic Legacy: Season 1 (2015) •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/Top-10-Games-of-the-Decade-eee9q9',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 2847,\n",
       "   'published': '2/4/2020'},\n",
       "  {'uid': 'd0ab98e5-b30f-51f1-aee1-c2b068c43d79',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO6090109990.mp3',\n",
       "   'title': 'RRU January 2020',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Hey everybody, welcome to the first episode of the audio-only version of my monthly gaming Rahdo Round Up, where I talk about the games Jen and I have played over the preceding 4 weeks. If you'd prefer to watch this in video form, head to https://www.youtube.com/watch?v=-Q8wornJR-o :) Countdown: 22. World Without End 21. Captain is Dead: Lockdown 20. Parks 19. Legendary Forests 18. Fox in the Forest Duet 17. Captain is Dead: Dangerous Planet 16. Florenza Dice Game 15. Trickerion 14. Dungeon Alliance Adventures 13. Ishtar 12. Quirky Circuits 11. TIME Stories: Experience 10. TIME Stories: Hadal Project 9. Rocketmen 8. Inner Compass 7. Aftermath 6. Micro City 5. Solar draft 4. Suburbia Collector’s Edition 3. Circle the Wagons 2. Aeon’s End: Outcasts 1. The Networks: Executives •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RRU-January-2020-eee9rp',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 5127,\n",
       "   'published': '2/3/2020'},\n",
       "  {'uid': '1bf43f93-66a3-553c-8040-a56d40e6939e',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO4454355563.mp3',\n",
       "   'title': 'RTT Episode 57',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Ch-ch-ch-changes! SHOW NOTES: •••[00:04:52] Games Q&A►►► Rahdo top 100? Reviewer impact? LotR LCG preferences? Weight vs Complexity? Boardgame cafes? Why didn't RRT cover videogames instead of boardgames? 4x recommends? Solo RRT issues? Pandemic Legacy 3 anticipation? Ecos ranking? Space Hulk Death Angel a euro? Top10's and roundups on podcast channel? 2p faves diminished after playing with more? Design a game around our home town? HP Lovecraft's racist history? Games that could benefit from more diversity? Other live shows besides the alaboom? What games to play with family? Stowing sore loser tendencies? Backlash against Project Shrinko? Res Arcana suffered from Rahdo clash? Hopeful improvements in Frosthaven? We don't like Legacy games? Jen's fave Pfister? •••[02:27:03] Personal Q&A►►► Pronunciation of Teotihuacan? Any games played with parents? Chicken checkin? Gamestorm or Dice Tower west? Rank our homes? Most anticipated TV for 2020? DC or Marvel? Game pubs taking responsibility for counterfeits? USA healthcare progress? Skydiving? Cinema going? Jen's wisdom of the month? Picard thoughts? •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RTT-Episode-57-eee9ue',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 13905,\n",
       "   'published': '2/2/2020'},\n",
       "  {'uid': '6a8a5af7-5a17-5bfa-895e-cf5cb6942477',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO2761486837.mp3',\n",
       "   'title': 'RTT Episode 56',\n",
       "   'subtitle': None,\n",
       "   'summary': 'Happy New Decade, everybody! SHOW NOTES: •••[00:01:37] 75 Games of Interest in 2020►►► The 7th Citadel, Adventure of D (2nd Edition), Agemonia, Almanac: Crystal Peaks, Alpha Quadrant, Boomerang: Australia, Brasil, Canopy, Castle von Loghan, Chai: Tea for 2, Contact, Coraline: Beware the Other Mother, Dead Reckoning, Deckscape: Escape from Alcatraz, Defense of Procyon III, Dice Quest, Excavation Earth, Fairy Trails, Foundations of Rome, Fresco: Card & Dice Game, Frosthaven, The Game: Quick & Easy, Gloomhaven: Jaws of the Lion, The Great Wall, Hamlet, The Hobbit: An Unexpected Party, Holi: Festival of Colors, Imperial Century, Imperium, In Too Deep, Jodhpur, Kanban EV, Lands of Galzyr, Legend Raiders, Lost Atlantis, Mariposas, Marvel Splendor, Medici: The Dice Game, Menestrels, Metal Gear Solid: the Board Game, Moonflight, The Mountain, Nevada City, Nidavellir, No Dawn, Oath: Chronicles of Empire and Exile, Oltree, Paper Dungeons, Paris, Plunderous, Rise & Fall, The Rival Networks, Roads to Rome, Rococo: Deluxe Edition, Roll Player Adventures, Ruins of Mars, Running Quest: Soul Raiders, Santa Monica, Seventh Cross, Shadow Kingdoms of Valeria, So You’ve Been Eaten, Solomon Kane, Streets, Tang Garden, Tea for 2, Tharos, Three Sisters, TIME Stories: Cavendish Manor, Traintopia, Transhumanity, Unlikely Heroes, Viscounts of the West Kingdom, Weather Machine, Welcome To… New Las Vegas, Yedo: Deluxe Master Set •••[02:03:42] 27 Expansions of Interest in 2020►►► Anachrony: Fractures of Time, Anachrony: Future Imperfect, Architects of the West Kingdom: Age of Artisans, Big Book of Madness: The Vth Element, Crusaders: Divine Influence, Dominion: Menagerie, Edge of Darkness: Cliffs of Coldharbor, Endeavor: Age of Expansion, Fresco: Expansion Modules 11-14, Gugong: Panjun, Heroes of Tenefyr: Second Curse, Imperial Settlers: Empires of the North – Roman Banners, The Isle of Cats: Late Arrivals, Madeira: Expansion, Marvel Champions: Wrecking Crew, Marvel Champions: Thor, Museum: The Historians, Mystic Vale: Nemesis, New Frontiers: Starry Rift, Roll Player: Fiends & Familiars, Rune Stones: Enchanters Forest, Sailing Toward Osiris: Pharaoh’s Pyramid, Sleeping Gods: Tides of Ruin, Spirit Island: Jagged Earth, Teotihuacan: Shadow of Xitle, Tiny Towns: Fortune, Zhanguo: Expansion •••[02:19:15] 22 Kickstarters shipping in 2020►►► Burgle Bros 2: Casino Capers, Dungeon Drop, Etherfields, Goetia: Nine Kings of Solomon, The Grand Carnival, Icaion, Kingdom Rush: Rift in Time, Legacies, Manchukuo, Margraves of Valeria, Merchants Cove, Roland Wright: Dice Game, Rome & Roll, Runika & the Six sided Spellbooks, Search for Planet X, Seize the Bean, Sovereign Skies, Space Race, Tasty Humans, Time of Legends: Destinies, Tungaru, Ugly Christmas Sweaters •••[02:32:10] Top 25 Games of Interest in 2020►►► Return to Dark Tower, TIME Stories Revolution, Deckscape Duel, The Fox in the Forest Duet, Chrono Corsairs, Followers, Venice, Tekhenu, Floor Plan, Hour of Need, Lions of Lydia, Rocketmen, Artificial Intelligence, Quantified, Inner Compass, School of Sorcery, Cosmic Colonies, Calico, Sleeping Gods, Mercado de Lisboa, Perseverance: Castaway Chronicles, Dice Realms, Troyes Dice, Adventure Ink, My City •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RTT-Episode-56-eee9ti',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 12400,\n",
       "   'published': '1/12/2020'},\n",
       "  {'uid': '4b1d2185-1573-5c37-87ec-a6e4e7fe36b4',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO6376187362.mp3',\n",
       "   'title': 'RTT Episode 55',\n",
       "   'subtitle': None,\n",
       "   'summary': 'Longest episode evar!!! SHOW NOTES: •••[00:01:10] Top 10 Revisits►►► Sim City, Tippity Top 10 •••[00:18:05] Game Q&A►►► BGG mechanisms revamp? BGG convention preview games lists? Standard boardgame rules template? Altiplano expansion? When/why do I use house rules? Tapestry embargo? Rahdo video stats? What publishers to approach? Pronunciation of Peloponnes? Updating games ratings based on expansions? How to judge a game based on the rules without seeing the cards? Standard Rahdo rejection letter? Why not Feudum? Walnut Grove alternative? How to get a paying job in the boardgame industry? Playing open hand in co-ops? On Mars & others in the top10 for 2019? How are the new Rahdo segments for 2019 going so far? How to know which games I passed on covering? Where\\'s my wishlist? Solo vs 2p runthroughs? Chatting with folks in boardgame stores? Snowdonia, Foothills or Alubari? How often do I accidentally say yes to games that turn out to be crap? Best design techniques? Euros that let you be creative? Ideal boardgame designer dinner party? First review copy I received? Why no boardgame rentals? Why did my top10 not change much after 5 years? Gloomhaven campaign ending thoughts? How does Paulo do it? •••[02:20:15] Game Q&A w/Jen►►► Mechanisms falling out of favor for us? What boardgame tech advances can\\'t we wait for? Offensive boardgame theme treatment? Have games ever made us mad at each other? Best online boardgame community? Which one game to save from burning building? Why\\'s Jen not in more videos? Podcasts we listen to? What\\'s the deal with grains of salt in paid previews? Oathsworn? Why did Tapestry drop? How in sync are Jen and I regarding game tastes? Do I still buy games? Do we keep any games even though one of us doesn\\'t care for it? Who\\'s the bigger sore loser? How to help people learn games? Thoughts on BGG\\'s new look? Project Shrinko and P&P thoughts? Which Pandemic to start with? Judging games based on random factors? Nostalgia factor in rating games? Tom Lehmann co-host? Re-experiencing games for first time preference? Bloom Town vs Quadropolis as gateway? What would a Backyard Chicken boardgame be like? RRT time off? Ultimate gaming room? Review Q\\'s before giving A\\'s? Escape room experiences/thoughts? What one game to super-deluxify? What if I had been introduced to modern boardgames in highschool? Ever guest lecture? Robotized boardgame components? How to downsize while getting good value? •••[03:52:40] Personal Q&A►►► Creative outlets outside of gaming? Evern been to SE USA? Hitchcock movies? Radiohead? Late night shows? States we\\'d like to visit? Celeb \\'free pass\\' list? Geocaching background? Pups post move? Rainy PNW adjustment? Jen & booktube? Jen and me and \"the small window\"? Ever going back to the videogame industry? Do Jen and I still surprise each other? Big Mouth (the show)? Bucket list? What do we love most about each other? Moving plans in the future? Mystery Science Theater 3000? Jen\\'s tea pantry? Jen\\'s investment approach? Jen on Goodreads? Jen\\'s preferred reading? The Mandalorian? Intermittent fasting? Following current politics? RRT funds backing other shows? •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RTT-Episode-55-eeea4a',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 18667,\n",
       "   'published': '12/6/2019'},\n",
       "  {'uid': '15ba2e02-1504-5505-b847-7dbc4b7cddfa',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO9398603822.mp3',\n",
       "   'title': 'RTT Episode 54',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Soooo many Q's, only time to A SHOW NOTES: •••[00:01:25] Game Q&A►►► Ads on my channel? Light speed variant for Space Base? Where do prototypes go? Playing the badguy in games? What does my Mom think of RRT? What games does my Mom enjoy playing? Return of the Rosenberg Shackles? Different gaming partner than Jen? Spousal gateway? Game rating shifts? Forgot Odin? How to deal with trolls? Returning to Blue Highway? PAX West? How to handle Essen Spiel? Timing of Gencon/Essen preview podcasts? Rating hole? Viticulture thematic consistency? Teburu thoughts? Game regrets? Why listen to trolls? Underestimating final thoughts? Why is Endeavor attacking okay? Letter Jam less than ideal with 2? Kennerspiel committee intent? Ultimate Aliens boardgame? Heavier roll & writes? Best things about roll & writes? List of things.rahdo.com? •••[02:24:35] Personal Q&A►►► What job after RRT? What are we most proud of? How'd Jen like Blown Away? Our fave movies? Malta in the spring or fall? War movies? Memorial sites visited? Troll tips? Burano vs Tubingen? Visited southern Germany? Should JK Rowling stop with the new Potterverse stuff? How do we eat 50 eggs a week? What's with the intermezzo tunes? Rick & Morty? What's Jen's fave glass creation? Can Jen make a Klein bottle? Any podcasts questions too trolly? Jen's fave recent books? No sports we're interested in? Missing Malta? Madalorian? Take a few months off RRT? Playtesting in boardgame vs videogame industries? How's it going with mom? Fist fights? Tattoos? Cringey moments? Rare Earth? How do I RSS the podcast? Dark Crystal show? Going to BGG in Dallas? Jen's wisdom of the month? Infinity War vs Endgame? •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RTT-Episode-54-eee9v0',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 17203,\n",
       "   'published': '11/8/2019'},\n",
       "  {'uid': '0dd05fa8-81a4-54aa-a671-79f203c98dcf',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO8719315248.mp3',\n",
       "   'title': 'RTT Episode 53',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Essen Spiel 2019 ahoy! SHOW NOTES: BGG preview list: https://boardgamegeek.com/geekpreview/12/spiel-19-preview HC Crossover 1: https://www.listennotes.com/podcasts/heavy-cardboard/heavy-cardboard-episode-140-amTEYwOIDhg HC Crossover 2: https://www.listennotes.com/podcasts/heavy-cardboard/heavy-cardboard-episode-141-vKRlQ96CJIL •••[00:01:12] Top 10 anticipated games of the show►►► Paris: New Eden, Cooper Island, Steamopolis, Coloma, Aquatica, It's a Wonderful World, Foothills, Tapestry, Expedition to Newdale, Maracaibo •••[00:24:35] Games of Interest►►► Deadly Doodles, Franky: Rock’n Vegas, Solar Draft, Rescue Animals, Monster Baby Rescue!, Posthuman Saga, The City, Tricky Druids, PAX, T-Rex’s Holiday, Pirates Under Fire, Decktective, Embers of Memory, Beluga, Aristocracy, Assembly, Opale, Tan-tan Caravan, Rolled West, Truck Off, Nocturion, Ninja Night, Queen of Hansa, Kingsburg: The Dice Game, Deckscape: Curse of the Sphinx, Dawn of Mankind, Rolling Ranch, Pact, Fire!, Coral Islands, Squire: Collector of the Glorious Rarities, Queenz, Lux Aeterna, Coralia, Die Befreiung der Rietburg, Boomerang, The Captain is Dead: Dangerous Planet, Roll to the Top! Laminate, Circle the Wagons, Maya, Jiguan: Eastern Mechanist, On Tour, Dino World, Conspiracy: Abyss Universe, Draftosaurus, Walking in Provence, Ticket to Ride: London, Fast Sloths, Florenza Dice Game, Robin of Locksley, Corinth, Copenhagen: Roll & Write, ArtSee, A Fistful of Meeples, ClipCut Parks, Egizia: Shifting Sands, Dreamscape, Rush MD, Colors of Paris, Cat Café, Obscurio, Sprawlopolis, Humboldt’s Great Voyage, Bloom Town, Skytopia, Dale of Merchants Collection, Nova Luna, Mastabas, Century: New World, Karekare, 6 Castles, Kingdomino Duel, High Rise, Trails of Tucana, Carrossel, Pax Transhumanity, Yggdrasil Chronicles, Ratzzia, Little Town, Quest for El Dorado: Golden Temples, Key Market 2nd Edition, Pharaon, DS Classic Goodie Box, Walking in Burano, Save the Meeples, Detective City of Angels, Smoothies, Edge of Darkness, Botanists, Snowdonia Master Set, Proto, On the Underground: London/Berlin, Era: Medieval Age, Valley of the Kings Premium Edition, Marco Polo II, Yukon Airways, Sanctum, Cities: Skylines, Parks, Circadians, The Magnificent, Paris: City of Lights, Babylonia, So You’ve Been Eaten, Bruxelles 1897, La Vina, Rune Stones, Ishtar, Masters of Renaissance, Ragusa, Orleans Stories, Neta Tanka, Clank! Legacy, Machi Koro Legacy, RatVille, Suburbia Collector’s Edition, Deep Blue, Alubari: A Nice Cup of Tea, Sierra West, 1987 Channel Tunnel, Terramara, Glen More II, Pret a Porter, Imperial Settlers: Empires of the North, Chocolate Factory, Castles of Burgundy Deluxe, Trismegistus, Paladins of the West Kingdom, Black Angel •••[03:17:05] Expansions of Interest►►► Carcassonne Maps, Railways of Portugal, Assembly Expansions, Habitats XL, Merlin: Knights of the Round Table, This War of Mine: Days of the Siege, Edge of Darkness: Sands of Duenstar, Rune Stones: Nocturnal Creatures, Concordia: Balearica/Cyprus/Italia, Pursuit of Happiness: Experiences, Sagrada: Passion, Barenpark: Bad News Bears, Dice Settlers: Western Sea, Everdell Expansions, Newton: Great Discoveries, Santa Maria: Exploration Deck, Welcome To… Thematic Neighborhoods, Clank!: Temple of the Ape Lords, Empires of the North: Japanese Islands, Trickerion Dahlgaard’s Academy, Underwater Cities: New Discoveries, Teotihuacan: Late Preclassic Period •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RTT-Episode-53-eee9ro',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 12596,\n",
       "   'published': '10/21/2019'},\n",
       "  {'uid': '456d3280-9f75-59e5-a10e-e7c4a0bf8d0e',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO2571803101.mp3',\n",
       "   'title': 'RTT Episode 52',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Rahdo vs the world!!! :) SHOW NOTES: The Rahdo apology tour begins here: https://boardgamegeek.com/article/32578907#32578907 •••[00:00:44] Games of Interest►►► Bloom Town, Deep Blue, Deckscape: Curse of the Sphinx, Rush MD, Sunflower Valley: Card Game, The Magnificent, Trails of Tucana, Marco Polo 2, Skytopia, Fire!, Florenza Dice Game, Gugong: Panjun, Jiguan: Eastern Mechanist, Marvel Champions: Card Game, Miyabi, Nova Luna, Paris: New Eden, Rune Stones, So You've Been Eaten, Time of Legends: Destinies, TIME Stories Revolution: Expereince, Ultra Tiny Epic Galaxies, Dragonfire: Campaign - Waterdeep, Last Bastion, Tapestry, Chrono Corsairs, Clank! In! Space! Cyber Station 11, Gates of Delirium, 7th Citadel, Walking in Provence, Edge of Darkness: Cliffs of Coldharbor, School of Sorcery, Aristocracy, Orleans Stories, Empires of the North: Japanese Islands, TIME Stories Revolution: Hadal Project, Tiny Towns: Fortune, Kitchen Rush (revised edition) •••[00:53:17] Games Q&A►►► Jen, why are games fun? No record of the Rosenberg shackles? Income issues related to game value? Full runthroughs? 3+ games we like/want to play? Help find a lost game bag from UKGE 2019? Empire of the Void II? Playing the villain not to win? Strange/Norrell runthrough? Santa Maria's handling of sensitive subject hurt fun factor? How common are runthrough reshoots? What game did I hate the most yet finish? Longest game session? Most anticipated next game *right now*? Jettison collection? Solo upswing? How to play new Carpe Diem with orig rules? Translation of rules into non-English? Escape with or without expansions? Does Jen still think Escape is better than Agricola? Will a game come out in next 5 years to supplant Pandemic for us? More thoughts on Spirit Island? Gloomhaven digital implementation? Rahdo designed boardgame? Life for Pandemic Legacy season 1 after campaign is over? Ultimate bingo style euro? How to do detailed ratings on BGG? Rahdo vs Eric Martin? Rahdo vs SU&SD? Rahdo vs the games industry? Feast for Odin return? Grizzled from the POV of German soldiers? My heart no longer in it? How many pubs send out final copy of covered games? Enjoy Legacy more because forced to play more? Any games thought would be poor but surprised upon 2nd play? Green screen trick? Know-op? How does RRT voting rate? Expansions ever make a bad game good? More replays of old games for the show? Dreamscape? What happens when a Kickstarter fails? Rundowns too rushed? More game revisits? Wingspan as Kennerspiel? How'd Jen like Black Angel? GotY contenders? What prompted me to start RRT? What solo game would I play *right now*? Where's the Rahdo/Dice Tower live play session? Game killers? Suburbia too hate-draftey? Mechanics v Mechanisms according to the OED? Tigris & Euphrates? •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RTT-Episode-52-eee9qv',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 11928,\n",
       "   'published': '9/5/2019'},\n",
       "  {'uid': 'fda08f74-c903-5945-9aad-37e726142f3b',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO5526310993.mp3',\n",
       "   'title': 'RTT Episode 51',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Gencon 2019!!! SHOW NOTES: •••[00:01:22] Top 10 Must Get Games►►► Machi Koro Legacy, Deckscape (Eldorado, Curtain, Sphinx), On Tour, Pandemic Rapid Response, Sabotage, Space Explorers, Sierra West, Aeon's End: The New Age, Black Angel, Edge of Darkness EoD preorder link: https://alderacstore.com/gen-con-2019-pickup/ •••[00:22:15] Games of Interest►►► Are You a Robot, Truck Off, Tricky Druids, Deadly Doodles, Rail Pass, The Queen of Hansa, ShipShape, Battle of the Bards, Boomerang, Dreams of Tomorrow, Nocturion, Undo, One Key, Penny Lane, Old West Empresario, Legendary Forests, Chocolatiers, Realm of Sand, Imaginarium, Dungeon Academy, EXIT: Catacombs of Horror, Foodies, Colors of Paris, Tribes: Dawn of Humanity, Roll for Adventure, Magnastorm, Little Town, Crusoe Crew, Patchwork Doodle, Noctiluca, Rolling Ranch, Carnival of Monsters, Captain is Dead: Dangerous Planet, Obscurio, Corinth, Museum, Crusaders: Thy Will Be Done, Tales of Glory, Quirky Circuits, Cat Cafe, Copenhagen, Ticket to Ride: London, Letter Jam, Welcome to Dino World, Walking in Burano, Wreck Raiders, Imhotep: The Duel, Las Vegas Royale, ArtSee, Kingdomino Duel, Wingspan, Crown of Emara, Ragusa, Detective: City of Angels, Century: Golem Edition Easter Mountains, Century: A New World, Everdell, Res Arcana, Lanterns Dice, Underwater Cities, PARKS, Era: Medieval Age, Imperial Settlers: Empires of the North, Bargain Quest •••[01:43:00] Expansions of Interest►►► Bargain Quest expansions, Clank! expansions, Copenhagen Tiles, City of Angels: Bullets over Hollywood, Everdell, K2 expansions, Luxor, Museum Expansions, Sagrada: Passion, Villages of Valeria expansions, Vindication: Leaders & Alliances, Welcome To expansions, Teotihuacan: Late Preclassic Period, Merlin expansions •••[01:51:28] Games to Demo►►► Chocolate Factory, Dominations, Edge of Darkness, Emperor's Choice, Endeavor: Age of Expansion, Fertility, High Rise, In the Hall of the Mountain King, Isle of Cats, Margraves of Valeria, New Frontiers, Posthuman Saga, Roam, Sorcerer City, Stygian Society, Suburbia Planet Unknown, Dead Eye, Mandala, Skytopia, Namiji, Marquesas, Coral Islands, Jurassic Parts, Silver & Gold, Harry Potter: Death Eaters Rising, Copenhagen: Roll & Write, Marco Polo 2, Spirit Islan: Jagged Earth, Floor Plan, Foothills, Crystal Palace, Dice Hospital: Community Care, Lorenzo Il Magnifico the Card Game, Adventure Games, Taverns of Tiefenthal, Aftermath, God of War: the Card Game, Ecos: First Continent, Sleeping Gods, Genotype: Mendelian Genetics, Barenpark: Bad News Bears •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RTT-Episode-51-eee9qc',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 7919,\n",
       "   'published': '7/30/2019'},\n",
       "  {'uid': '47ddcaf4-8bf2-5aba-92b9-4c9cadd907fd',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO3387305699.mp3',\n",
       "   'title': 'RTT Episode 50',\n",
       "   'subtitle': None,\n",
       "   'summary': \"A bit long winded... SHOW NOTES: •••[00:00:45] Games of Interest►►► Cities: Skylines, Aftermath, Kingdomino Duel, Clank! Expeditions: Temple of the Ape Lords, Copenhagen, Roll & Write, Cosmic Run: Express, Enchanters: Odyssey, Escape Tales: Low Memory, Habitats: XL Expansion, Lands of Galzyr, Mint Cooperative, ClipCut Parks, Concordia: Balearica, Entrepreneurs, Harry Potter: Death Eaters Rising, Paris, Rescue Animals, 7th Continent: Classic Edition, Toy Story: Obstacles & Adventures •••[00:28:22] Top10 Revisit►►► Underrated Games •••[00:49:12] Gaming Q&A►►► Examples of great scaling for 2? Desert Island solo games? Game depth definition? What happened to Carpe Diem ranking? CO2 & Kanban swap? Large collection wall? Rahdo con? Bad game teaching experiences? What makes great game tension? Designer responsibility for fan behavior? Boardgame marketing? Burning Cat convention? Concordia underwhelming? Rahdo house rules/variants? Value for money in runthroughs? PnP runthroughs? Fields of Arle 2nd thoughts? Star Wars Outer Rim? Playing Black Angel with Eric Martin? Drive to win? Paid previews for games we don't like? Really necessary to reiterate paid caveats? Dice Forge expansion? What's a math trade? More Black Angel info? Best game convention? Did we get any farther in 7th Continent? Ancient World 2nd edition? Retheme challenge: Colosseum? How to reconcile ranking loops? Why did I start doing paid previews? Why keep such a big collection I don't play? Darwinauts beautiful, really? Aeon's End ideal order? •••[02:12:52] Personal Q&A►►► Constructive criticism for GoT? The secret to our relationship? Fave GoT characters and episodes? GoT negative groupthink? Jen's fave Tolkien characters? Tolkien biopic? Where would we live in the Tolkien-verse? Puppy advice? Why are there 880 From Batavia copies in the playlist? How many times have I been fired? Thoughts on Star Trek Picard series? Take games on sabbatical? Thoughts on Survivor: Edge of Extinction? Non-spoiler Star Trek Disco thoughts? Jen's words of wisdom? Quasi-Disco thoughts and what next for a Trek newb? •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RTT-Episode-50-eeehnm',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 12124,\n",
       "   'published': '7/3/2019'},\n",
       "  {'uid': '63a96407-7b94-5c44-bdec-a544c1907e8e',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO6019007844.mp3',\n",
       "   'title': 'RTT Episode 49',\n",
       "   'subtitle': None,\n",
       "   'summary': 'A bit short...<br /> <br /> SHOW NOTES:<br /> <br /> •••[00:02:17] Games of Interest►►►<br /> Streets, Crystal Palace, Big Book of Madness: The Vth Element, Dice Throne Adventures, Etherfields, Legacies, Lorenzo Il Magnifico: The Card Game, Merlin: Knights of the Round Table, Natsumemo, On the Underground: London/Berlin, Pandemic: Rapid Response, Terra Mystica: Merchants of the Seas, Trismegistus: The Ultimate Formula, Yedo: Deluxe Edition, The Isle of Cats<br /> <br /> •••[00:18:38] Gaming Q&A►►►<br /> Best part of gaming? Res Arcana not too cutthroat? 3 words to describe gaming in 2018? Queensdale rating? # of plays before runthrough? Final thoughts during play? Jen\\'s impact on final thoughts? Noting final thoughts? Thoughts between play and final thoughts? Rahdo revisits? Playing cutthroat in runthroughs? Engine building definition? Thoughts on Rodney\\'s paid preview thought piece? Year of the Dragon shackles? Need to win? Video stats? Engine downtime? Neta Tanka vs Manitoba re: cultural appropriation? Customizable dice?<br /> <br /> •••[01:09:16] Personal Q&A►►►<br /> Moving internationally with dogs? What to cut if White Album is a single LP? What does Jen grow in her garden? How are the new chickens? How\\'d I celebrate the big 5-0? Any more gaming convention plans for 2019? Game of Thrones final season thoughts?<br /> <p> •••Help Rahdo run @ <a href=\"https://patreon.com/rahdo\">https://patreon.com/rahdo</a><br /> •••Send your questions to <a href=\"mailto:question@rahdo.com\">questions@rahdo.com</a></p',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RTT-Episode-49-eer6s0',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 5871,\n",
       "   'published': '6/5/2019'},\n",
       "  {'uid': '04b9bfea-4285-5ea8-90d1-fc62768552aa',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO1469627173.mp3',\n",
       "   'title': 'RTT Episode 48',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Just a normal episode! :) SHOW NOTES: •••[00:00:31] Games of Interest►►► Age of Dirt, Xi'an Presitge, A Fistful of Meeples, Coralia, Fast Sloths, Pact, Ecos: First Continent, Endeavor: Age of Expansion, Marquesas, Search for Planet X, Unlock! Timeless Adventures, Clinic Deluxe Edition •••[00:15:15] Top 10 Revisits►►► 2018, Game Artists •••[00:41:20] Gaming Q&A►►► Colonialism theme in boardgaming? Retheme challenge! Unplayed games from Malta? Where are the euros? Games to play post-RRT? BGG subscriptions? Games named after places? Pubs more or less likely to send review copies in the States? Why keep games we can never play? Fave games by continent? Best Agricola expansions? Jen's dream Tolkien boardgame? Jen's design for a glass making game? Boardgame dirty laundry? Train by Brenda Romero? Rahdo interns? Coimbra vs Notre Dame? Tabletop Day? Dixit? Networks? Anything need to disappear from boardgaming? What generates most excitement for a new game? The art of Ania Kryczkowska? •••[01:46:44] Personal Q&A►►► Do Jen and I watch shows together? What new shows have both Jen and I enjoyed? Care bear player enjoying violence in other media? How can I actually like Glengarry Glen Ross? Other real life superheroes besides Stan Lee? Malta vacation tips? Details about our 20th anniversary catamaran trip? Black Sails? Murano tips? Limoncello? Retirement in Malta? Fave spots in Italy? Maltese fish markets? Sustainability in boardgaming? How to prioritize media? Jen's monthly words of wisdom? •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RTT-Episode-48-eer6ts',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 9664,\n",
       "   'published': '5/9/2019'},\n",
       "  {'uid': '278b9541-0fb3-5987-8d41-7a182ba1ea94',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO1692864398.mp3',\n",
       "   'title': 'RTT Episode 47',\n",
       "   'subtitle': None,\n",
       "   'summary': 'Year 8 announcement!!! https://www.patreon.com/posts/time-flies-25705143 SHOW NOTES: •••[00:01:44] Games of Interest►►► Altar Quest, Dice Quest, Floor Plan, Key Market, Lanterns Dice: Lights in the Sky, Bruxelles 1897, Hamlet, Dungeon Academy, Dead Reckoning, Letter Jam, Maracaibo, Margraves of Valeria, Namiji, Running Quest: Sould Raiders, Save the Meeples, Starlight, Sanctum, Trouble in Templetown, Underwater Cities: Expansion, Venice, Villages of Valeria: Landmarks & Architects •••[00:27:33] Top 10 Revisits►►► Uwe Rosenberg •••[00:49:12] Gaming Q&A►►► Burgundy Expansions? Reprints? Overlooked games? Tile drafting games? How do I make my lists? Paladins of the West Kingdom solo? Marvel Comics universe reboot? (oops, personal one slipped in there) Hottest recent designer? Revisiting games leading to enjoying more or less? No Rahdo Twitter engagement? Protections for designers in game industry? Expansions make game weaker? Martin Wallace/EGG? Story games? What\\'s best about expansions? 3D printers vs Kickstarter? Art vs Artist? Game designer vs developer? Game suggestions? Repetitive strategies? Fox in the Forest? Will I design a game? Ant Lab Games? One size fits all games? Jen\\'s preferred games? Games as art lead to no fun? Too kind to games? Gaming Rules vs Watch it Played? Least fave podcast question? Was Vasel right about Moorea? How good is Roll for the Galaxy Rivalry? Dragonfire gets a ranking? Feast for Odin expansion? Background music for games? The rise of co-ops? Choose your own adventure books? Brass Birmingham ranking? Roll Player vs Concordia vs Loyang? Does game \"take that\" alter real brain patterns? Rahdo fatigue? Rahdo final thoughts? Aeon End ideal play order? Snowdonia still stand up? Am I running through faster? Do I beat myself up IRL? Rahdo subtitles? •••[02:28:14] Personal Q&A►►► Catch 22 tv series? Rahdo in Austin? Jen hesitant to get into gaming? Playing more group games in hte states? Turning 50? Spiderman One More Day? Secret Wars 3? Married too young? Situationally famous? Beatles board game? Jen\\'s take on Wizarding World theme park? One one ethnicity\\'s food forever? Mountain climbing worthwhile? Tour our new surroundings? Fish truck? Thundaar\\'s pterodactyl? Our finances? What do we miss from Europe? Lab grown meat? Our Planet miniseries? Who does Jen want to be in Harry Potter-verse? My preferred nickname? Into the Spider Verse? Binge watch TV or weekly watch? Food we missed in Malta that we can have now? Puppy advice? •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RTT-Episode-47-eer740',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 13020,\n",
       "   'published': '4/5/2019'},\n",
       "  {'uid': '71de8adb-e4a0-5372-8da3-bb45f39f0fdc',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO5507358200.mp3',\n",
       "   'title': 'RTT Episode 46',\n",
       "   'subtitle': None,\n",
       "   'summary': 'On the eve of Dice Tower Con West... RTT music thread: https://www.boardgamegeek.com/thread/2162652/podcast-music Last Jedi thread: https://www.boardgamegeek.com/thread/2160803/last-jedi-blather SHOW NOTES: •••[00:01:13] Games of Interest►►► Euphoria: Ignorance is Bliss, Foothills, Jodhpur, Ankhor, Menestrels, Bloom, Project Elite - Zombicide Invader Crossover Set, Sushi Roll, The Captain is Dead: Dangerous Planet, Pursuit of Happiness: Experiences, Welcome Too... variant boards, Quest of El Dorado: Golden Temples, TIME Stories Revolution: Midsummer Night, Deadly Doodles, Newdale, Darwinauts, Kingdom Rush: Rift in Time, Atelier: Painter\\'s Studio, Cooper Island, Quirky Circuits, Agricola: Corbarius Deck, Lorenzo il magnifico: Pazzi Conspiracy, Valley of the King: Premium Edition, Valeria: Card Kingdoms - Crimson Seas, Watergate •••[00:21:54] Top 10 Revisits►►► Drafting games, one hit wonders •••[00:39:26] Gaming Q&A►►► Top 5 or next 15? Expansion coverage? Theme vs setting? Retirement games? Theme music usage? \"Rahdo approved\"? Kickstarter to retail? Sending games in a time machine? 3d printer future in boardgaming? Wingspan take that? ET gaming? House variants? Similarities between boardgame and videogame industries? Rahdo journal? •••[01:18:32] Personal Q&A►►► Meaningful books from our childhood? Fave bands growing up? Last Jedi manifesto? Comic books? Wrestling? Changing history? Vegetarian? Videogame dev stories? Adjusting to winter? Jen\\'s words of wisdom? •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RTT-Episode-46-eer75l',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 6999,\n",
       "   'published': '3/6/2019'},\n",
       "  {'uid': '839ed299-be8c-5485-a35c-a4f39ba8cfe1',\n",
       "   'audio_url': 'https://d3ctxlq1ktw2nl.cloudfront.net/production/2020-4-22/75785602-48000-1-353305a24ffaa.mp3',\n",
       "   'title': 'RTT Episode 45',\n",
       "   'subtitle': None,\n",
       "   'summary': \"More games, more rants! :) SHOW NOTES: •••[00:01:10] Games of Interest►►► Gloomhaven: Forgotten Circles, Beyond Humanity: Colonies, Roll for the Galaxy: Rivalry, Lord of the Rings: Journeys in Middle-earth, Copenhagen, Tavern of the Deep Valley, Dungeonology: The Expedition, Dunaia: The Prophecy, Aeon's End: New Age, Pret-a-Porter, Harbour: High Tide, Luxor: The Mummy's Curse, Suburbia: Collector's Edition, Silver & Gold, The City: The Expanded City, Teotihuacan: Late Preclassic Period, Agemonia, Xingu, Century: A New World, Hadara, The Castles of Burgundy (Royal Edition), Era: Medieval Age, Corinth, Imperial Settlers: Roll & Write, Kingsburg: The Dice Game •••[00:35:50] Gaming Q&A►►► People's choice top 10? Untouched boardgame genres? Any topics that should be off limit for boardgames? Boardgame industry's cultural insensitivity? Does runthrough style translate to better game teaching IRL? The 'teach'? Andor's roll to resolve? Boardgaming close to mainstream? How to find my list of co-op games? My biggest rules blunder? Rules mega thread issue? Did Martin Wallace really work on Wildlands & Hit Z Road? Gnomopolis? Has Energy Empire held up? Thematic euros? Why Dungeon Petz but not Carnival of Monsters? Better for equal representation at the cost of historical accuracy? Boardgame burn out? Handing RRT over to someone else upon retirement? Reshooting early runthroughs? Ragusa runthrough? Top sandbox games? Easier to houserule 2p into a 3p minimum game, or meanness out of a take take that game? Our houserules? Opinionated Gamer's peak rating article? Best way to move boardgames? Rodney Smith's hype videos? Rewatching old runthroughs? Continuing runthroughs once the camera stops? What games do I wish I'd kept? Best expansion for Elder Sign? Any genres Jen or I dominate? Updating top10 co-ops? Rahdo at Essen Spiel 2019? •••[02:23:00] Personal Q&A►►► Most signficant changes to USA in our absence? My high pitched voice? Vasectomy story? How did we end up in Malta? BBC nature documentaries? Christmas tree & decorations? Syphon Filter influenced by Metal Gear Solid? How do we weather tough times in our marriage? Gaming with Mom? Fave childhood TV shows? Did Syphon Filter meet original vision? Any recent videogames we've enjoyed? Prevalence of open world videogames? Any snow since we've been back? Free to air TV? Renting the UK house? Why is Jen coming to UK? Bandersnatch? Jen's words of wisdom? •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RTT-Episode-45-eer77q',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 12198,\n",
       "   'published': '2/5/2019'},\n",
       "  {'uid': 'fab28007-9fdd-5e18-ab06-8c68638d19cb',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO9897835722.mp3',\n",
       "   'title': 'RTT Episode 44',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Anticipation, 2019-style! SHOW NOTES: •••[00:01:45] 45 Games of Interest!!►►► Adventure Games series, Carnival of Monsters, Carnival Zombie, Cartographers: A Roll Player Tale, Chocolate Facotry, Chocolatiers, Circadians: First Light, Coloma, Sierra West, Cosmic Run: Mining Colony, Dawn of Mankind, Deckscape: Behind the Curtain, Dice Upon a Time, Egizia: Shifting Sands Edition, F.L.O.W., Humboldt's Great Voyage, Inhuman Conditions, Strange & Norrell: the Boardgame, Kingswood, Legend Raiders, Metal Gear Solid: The Board Game, No Dawn, The One Hundred Torii, Outlaws In A Strange Land, Patchwork Doodle, Second Chance, Perseverance: Castaway Chronicles, Quantified, Quodd Heroes, Ragusa, Res Arcana, Revolution of 1828, Roam, Scotland Yard: Das Wurfelspiel, Seventh Cross, Snowdonia: Deluxe Master Set, Solomon Kane, Space Gate Odyssey, Space Race, Tang Garden, Tiny Towns, Vampire: The Masquerade - Heritage, Victorian Masterminds, Villagers, Yinzi: Shining Ming Dynasty •••[01:31:05] Expansions of Interest & Already Filmed Games of Interest►►► Barenpark: Die Grizzlies sind los!, Dice Forge: Rebellion, Dungeon Alliance: Champions, Homesteaders: New Beginnings, Manhattan Project: Energy Empire - Cold War, Mystic Vale: Harmony, Railways of Portugal, Roll Player: Fiends & Familiars, TIME Stories Madam & Hadal Project, Thunderstone Quest: Barricades and What Lives Beneath, Zhanguo Expansion, Madeirs Expansion, Railroad Revolution: Railroad Evolution The Crusoe Crew, Detective: City of Angels, Diceborn Heroes, Domination: Road to Civilization, Dreamscape, Exploriana, Heroes of Tenefyr, Incoming Transmission, Kung Fu Panda: The Board Game, Museum, Neta-Tanka, Seize the Bean, Sorcerer City, Stygian Society, Vadoran Gardens, Welcome to DinoWorld •••[01:55:12] Top 25 Games of Interest►►► Steamopolis, Imperial Century, Roll Player Adventures, Rome and Roll, Grim Heroes, Paladins of the West Kingdom, Aerion, Sarah's Vision, The Ancient World 2nd Edition, Dale of Merchants Collection, Edge of Darkness, On Tour, La Stanza, Artificial Intelligence, Alubari: A Nice Cup of Tea, On Mars, Comanauts, Wingspan, Project: ELITE, Sleeping Gods, Aeon's End: Legacy, Clank! Legacy: Acquisitions Incorporated, Machi Koro Legacy, Glen More II: Chronicles, Black Angel •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RTT-Episode-44-eer7a7',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 9207,\n",
       "   'published': '1/4/2019'},\n",
       "  {'uid': 'b852e3f3-3175-50dd-9049-0319e635397b',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO3584059732.mp3',\n",
       "   'title': 'RTT Episode 43',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Rahdo Rants Through! SHOW NOTES: •••[00:3:00] Gaming Q&A►►► Kids! King Vlaada! Earlier Essen preview? Teotihuacan inspiration? BGG game description critique? How much dice is too much dice? Street Masters & Solomon Kane? Why isn't Escape too light? Dream home variant! BGG meets Boxofficemojo? Robin Hood and the Merry Men? Player aids? Separate solo rules? Reprints too deluxified? Designers phoning it in? Re-seeking gone games? Tainted Grail deets? Groundhog gaming? Crazy rahdo days? Jen feels the pressure? Santa Maria's theme? Game publisher vision? Boardgame pessimism? Series boardgame rules? •••[01:17:50] Personal Q&A►►► Studio Ghibli? Immigration rant alienating audience? Syphonfilter PS1 Classic? Family blacksheep? Fave dog breeds? Jen's fave cocktails? Jen's words of wisdom! •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RTT-Episode-43-eer7b7',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 6594,\n",
       "   'published': '12/15/2018'},\n",
       "  {'uid': '69155935-5c8f-543e-95fb-f28e3e3727e4',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO2259649193.mp3',\n",
       "   'title': 'RTT Episode 42',\n",
       "   'subtitle': None,\n",
       "   'summary': 'Better late than never! :) SHOW NOTES: •••[00:01:25] Recent Top 10 Revisits►►► Fantasy, BGG disagreements and OOPs alternatives •••[00:25:03] Gaming Q&A►►► What do BGG rankings reflect? Attic storage? Would I work for BGG? How should BGG entries be written? How do we deal with sudden game endings? How do we sit at the table? How do we orient the board? Old school game aesthetics? Boardgame industry trends? 2017 top10 of the year update? Budget games? Losing boardgame passion? Most diverse designer? Games we love in spite of being terrible at them? What should get Legacy\\'d? Epic boardgaming moments? Hidden gems? Concordia expansions? Do I roleplay as Jen during videos? How do I choose what gets rundown vs run through? Trickerion ranking? Does Jen offer pro-tips? Rating games we get rid of? Game sommilier? This year\\'s Essen crop a letdown? What games do we keep? \"1 in / 1 out\"? Claustrophobia KS campaign observation? Big turn games? Best player boards? Best scifi? Hate drafting? Do publishers help find rules goofs? Do I re-record runthroughs? Essen crop a letdown, part II? Is my recording studio done? •••[01:59:55] Personal Q&A►►► Chickens in the states? British accent? Jen\\'s nickname for me? What were we happy and unhappy to return to in the states? What do we miss most about Malta? Top 3 vaction destinations? What do Jen and I have in common and how are we different? How does this improve our relationship? Any jigsaw puzzle love? Where do we still need to go in Europe? Projector advice? Best thing about the states, part VII? What character would we choose to be in any show? Best things to do in PNW? Updated thoughts about political landscape int he states? What have we done for health insurance? Climate change? Do we give each other boardgames for Xmas? What are we doing for Xmas this year? Jen\\'s wisdom of the month? •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RTT-Episode-42-eer7cb',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 11660,\n",
       "   'published': '11/18/2018'},\n",
       "  {'uid': '2f78280a-8a47-52cb-a3c6-3318944b432f',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO9863490099.mp3',\n",
       "   'title': 'RTT Episode 41',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Essen Spiel 2018 is this week! SHOW NOTES: •••[00:02:02] Top 10 Most Anticipated Games►►► Teotihuacan, Underwater Cities, Carpe Diem, Coimbra, Between 2 Castles of Mad King Ludwig, Gugong, Key Flow, Blackout: Hong Kong, Forum Trajanum, Pandemic Fall of Rome •••[00:18:10] 85 More Games!!!►►► Jungli-La, Wok Star, Big Dig, Moorea, Cosmic Factor, Okavango, Great City of Rome, Sengal-senggol Gang Damai, Honga, Ruthless, Legendary Encounters X-Files, Dicium, Catalyst, Now Boarding, Claim Kingdoms, Hardback, Deckscape, Skylands, Pandemic 10th Anniversary Edition, Fugitive, Chronicles of Frost, Fog of Love, Spring Meadow, Tribes, Paper Tales, Sunflower Valley, Factory Funner, Tales of Glory, Roll for Adventure, Scorpius Freighter, Fine Sand, Roll to the Top, Carson City Card Game, Tramways Engineers Workbook, Rolling Ranch, Forgotten City, Stone Age Jubilee Edition, Hokkaido, Gingerbread House, Crisis at Steamfall, The Boldest, Walking in Burano, Smartphone Inc, Cerbria Card Game, Steamrollers, Thief's Fortune, Spy Club, Passing Through Petra, Shadows: Amsterdam, Futuropia, Discovery: Era of Voyage, Manitoba, Scarabya, Kanban 2nd Edition, Reef, Arraial, Valparaiso, Planet, A4 Quest, Fertility, Realm of Sand, Orbis, Captains of the Gulf, Firenze, Fuji, Robin Hood and the Merry Men, Magnastorm, Escape Tales, CO2: Second Chance, Railroad Ink, Solenia, Blue Lagoon, Prehistory, Brass Birmingham & Lancashire, Holding On, Treasure Island, Endeavor: Age of Sail, Dice Settlers, The River, Reykholt, Newton, Chronicles of Crime, Everdell, Detective: Modern Crime, Architects of the West Kingdom •••[01:33:10] Expansions for 35 games►►► Santa Maria, Field of Green, Kitchen Rush, Tramways, Welcome To, Space Race, Paper Tales, Chronicles of Crime, Factory Funner, Roll to the Top, Altiplano, Great Western Trail, The Networks, This War of Mine, First Class, Fog of Love, Legend of Andor, Dixit, Agricola, Caverna, Isle of Skye, Dice Town, Reef, Chronicles of Frost, Lost Expedition, Tybor the Builder, Concordia, Merlin, Skylands, Keyflower, El Dorado, K2, Clank, 7 Wonders, Forum Trajanum •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RTT-Episode-41-eer7de',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 6539,\n",
       "   'published': '10/23/2018'},\n",
       "  {'uid': '02b78c12-2ff4-5237-ac45-8bf542ad752a',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO3788114681.mp3',\n",
       "   'title': 'RTT Episode 40',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Back in the saddle again! SHOW NOTES: •••[00:01:58] Games of Interest►►► Altiplano: The Traveler, Carcassonne: Safari, Castle Rampage, Chronicles of Crime: Welcome to Redview, City of Rome, Clank!: Gold & Silk, Claustrophobia 1643, Comanauts, Concordia Venus, Deckscape: Mystery of Eldorado, Defenders of the Realm 2nd Ed, Discover: Lands Unknown, Dominion: Renaissance, Fine Sand, Fuji, Futuropia, Ghosts of the Moor, Gingerbread House, Honga, K2: Lhotse, Lovelace & Babbage, Machi Koro Legacy, Magnastorm, Passing Through Petra, Perseverance: Castaway Chronicles, Project Elite 2nd Edition, Spell Smashers, The Ancient World 2nd Edition, The One Hundred Torii, The River, Trollfjord, Tybor the Builder: Im Auftrag des Konigs, New Unlock! adventures, Valparaiso, Vampire: The Masquerade - Heritage, Hokkaido, Claim Kingdoms, Dicium, Outlaws in a Strange Land, Pandemic: Fall of Rome, Rolnicy, Stone Age 10th Anniversary, Merlin: Arthur Expansion •••[00:48:10] Game Q&A►►► Finger pointing? Agricola vs Caverna? Slickerdrips? BGG expansion classifications? Spirit Island? Heavy co-ops? Games that *need* to be made? Competition for Gloomhaven? Jen's perfect game? Typical day on BGG? BGG lease fave feature? Dealing with sore loser children? Any Gloomhaven recently? Ideal Gloomhaven custom components? PAX West? Sasquatch? Why TV over boardgames? How are Rundowns being received? Is The Mind a game? Rahdo solo? Thoughts on the rise of boardgame popularity? More details about our Pandemic Legacy 2 experience? How's it going post move? Break during gaming? Too small components? Ideal boardgame designer interview? Top 10 worker placement updates? Why does SR:CF beat Gloomhaven on my rankings? Pics of our painted Gloomhaven minis? How close have I come to quitting RRT? Game chatter? Gateway to CoB? Thriftstore finds? •••[01:56:35] Personal Q&A►►► Why didn't we have kids? Star Trek vs Star Wars? Malta sights to see? Therapy? Our dog history? Travel insurance? Best DC movie? Seen Infinity War? Our fave car ever? Anything new going on? Seen Solo? Universal Studios Wizarding World tour? Best fictional place to visit? Jen's words of wisdom? •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RTT-Episode-40-eer7eo',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 9764,\n",
       "   'published': '9/23/2018'},\n",
       "  {'uid': 'df9a6313-dbd1-54c6-8b66-de2ff1686e3a',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO6361270310.mp3',\n",
       "   'title': 'RTT Episode 39',\n",
       "   'subtitle': None,\n",
       "   'summary': \"A Gencon Quickie! SHOW NOTES: •••[00:01:30] Top 10 To Get►►► Chimera Station, Tiny Epic Defenders 2nd Edition, Welcome To, Kashgar: Merchants of the Silk Road, Warsaw: City of Ruins, Carson City: The Card Game, Detective, Coimbra, Merlin, Forbidden Sky •••[00:14:25] 60 More Games to Check Out►►► Legendary Encounters: X-Files, Woodlands, Dragon Master, Amun Re: The Card Game, Jungli-La, Import/Export, Fantastiqa Rival Realms, Mesozooic, Catalyst, Professor Treasure's Secret Sky Castle, Wok Star 3rd Edition, Railways of the World, Race to the New Found Land, Kaosmos, Multiuniversum, Fortune City, Kick-Ass: The Board Game, Deckscape: Heist in Venice, Talisman: Legendary Tales, Shadows: Amsterdam, Mercado, Lucky's Misadventures, Superhot: The Card Game, Maiden's Quest, Now Boarding, Gearworks, Hardback, Railroad Rivals, The Big Score, Luxor, Shadowrun: Sprawl Ops, Sailing Toward Osiris, Rising 5, Scarbya, Railroad Ink, The Game, Kitchen Rush, Lost Cities: Rivals, Carthago, Speakeasy Blues, Minerva, Steamrollers, Tiny Epic Zombies, Spring Meadow, Paper Tales, Blue Lagoon, Carson City: Big Box, Newton, EXIT: (new titles), Altiplano, Gizmos, Rise of Queensdale, Everdell, The Mind, Reef, Century: Eastern Wonders, Brass, Reckoners, Root, Palm Island •••[01:11:27] Expansions to Get►►► Big Score: Crack the Safe, Sailing Toward Osiris: Governors & Envoys, Mottainai: Wutai Moutnain, Mystic Vale: Twilight Garden, Paper Tales: Beyond the Gates, Near & Far: Amber Mines, The Captain is Dead: Lockdown, Clank! The Mummy's Curse, Roll Player: Monsters & Minions, Kingdominio: Age of Giants, Clank! In! Space! Apocalypse!, Scythe: Rise of Fenris •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RTT-Episode-39-eer7fc',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 4519,\n",
       "   'published': '7/31/2018'},\n",
       "  {'uid': '610bc4dc-ea29-5cbe-ad50-0dea24cf557a',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO2136436841.mp3',\n",
       "   'title': 'RTT Episode 38',\n",
       "   'subtitle': None,\n",
       "   'summary': \"So much to talk about... SHOW NOTES: •••[00:00:54] Games of Interest►►► A Thief's Fortune, 5-Minute Marvel, Clank! In! Space! Apocalypse! Roll Player Adventures, Solenia, Shadowrun Crossfire: Prime Runner's Edition, Dragonfire: Heroes of the Wild, High Rise, Troyes 2, Roll Player: Fiends & Familiars, Tale of Ord, Legend of Andor: Verschollenen Legenden, EXIT the Game, 3rd series, Mesozooic, New Frontiers, Roll for Adventure, Snowdonia Delxue, Sleeping God •••[00:25:12] Top10 Revisits►►► Boardgame Boards, Part II & Roll and Writes •••[00:59:52] Game Q&A►►► UKGE recap? First player choosing? How to learn new games? How to teach Burgundy? Theme of Chess? Go? Checkers? Too much theme in modern gaming? How to consume lots of rules? Project Elite's future? Learning Dungeon Petz? Pandemic pre-Legacy? Music while gaming? Yspahan? D&D history? Season's theme? In the zone while at conventions? Most thematic Feld? Rosenberg? Kiesling? Knizia? How to theme dry euros? Dragonfire ranking? Dragonfire vs Gloomhaven? How much time does RRT take? No boardgames or no TV? More optimisitc in the podcast than the final thoughts? Seperate the art from the artist? Roverboat? Jen's glass art as chess set? Runthroughs from Malta still? Isle of Skye Journeyman? •••[01:56:01] Personal Q&A►►► Gloucester cheese roll? Saul vs Breaking bad? The push? Camper vanning? Awesome possum? Snacking while gaming? Fave clothing? Map of RRT viewers? Quiet time? Jen, why London? How handy are we? Local food recommendations? Jen's words of wisdom? •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RTT-Episode-38-eer7gk',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 8541,\n",
       "   'published': '7/8/2018'},\n",
       "  {'uid': 'bbdba53b-da62-5118-8e6d-b8c1c8cb9f56',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO5950376291.mp3',\n",
       "   'title': 'RTT Episode 37',\n",
       "   'subtitle': None,\n",
       "   'summary': \"And thus begins our 4th year of podcasting! SHOW NOTES: •••[00:01:00] Games of Interest►►► Homesteaders: New Beginnings, Key Flow, 5 Minute Dungeon: Curses! Foiled Again!, Escape Tales: The Awakening, Lost Cities: Rivals, Spring Meadow •••[00:09:22] Top10 Board Game Boards Part I Revisit •••[00:31:11] Game Q&A►►► New table in the future? Zombie running? Youtube ads? Yahtzee killers? Co-op conversion to solo? RTT music selection process? Feudum? Bad rules ever ruin the game? Giving 0's on BGG? What 3 games sum up modern boardgaming? Modern videogaming? Pandemic or Agricola: which game to design an expansion for? Perfect euro length? More finding theme in dry soulless euros? What gateway would make the best Legacy game? Game of the month segment? How to best learn from the rules? Boardgame burnout from RRT? Do we care who wins? •••[01:17:35] Personal Q&A►►► Vlogs? Celebrity chef faves? Ever been to Boston? What about Rahdo meetups? Sushi love? What movie have we watched the most? Why New Zealand? What about Australia? Not much of a reader? How does my on-air personality different from off air? Rahdo vs Jen: best driver? Best sense of humor? Jen's maiden name? Rahdo vs Jen: how often do we fight? Could Jen handle Handmaid's Tale? How're we feeling about the move so far? Fave movies: western? horror? gangster? comedy? Marvel universe? 3 new TV series to recommend? Carebear names?\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RTT-Episode-37-eer7ht',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 7692,\n",
       "   'published': '5/31/2018'},\n",
       "  {'uid': '0c88cbad-d086-5657-bfa9-ec6b27bba854',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO1891103841.mp3',\n",
       "   'title': 'RTT Episode 36',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Is this the final RTT??? (spoiler alert: it isn't) SHOW NOTES: help Rahdo run @ http://patreon.com/rahdo or http://paypal.rahdo.com https://www.crowdfunder.co.uk/uganda-village-board-game-convention/ •••[00:01:03] Games of Interest►►► Barage, Underwater Cities, Railroad Revolution: Railroad Evolution, Santa Maria: American Kingdoms, Dragonfire: Moonshae Storms, Dale of Merchants Collection, Villages of Valeria: Landmarks, From Batavia, On Tour •••[00:09:20] Top10 Scifi Revisit •••[00:31:00] Game Q&A►►► Fave boardgame content creators? Rahdo rolling back moves? Historical thematic impact? How to cull? Claustrophobia 2.0? Any grail games? Modern games in the 70's? What if Jen didn't like games? Accomplishments and regrets for RRT? Perfect podcast co-host? Rapid fire game association? Principled games? Advantages of RRT in the USA? Lighter games with my mom? Updates to the must-have list? Gaming convention in Uganda? What games need expansions? More minis, less gameplay? What TV show to be a game? •••[01:17:42] Personal Q&A►►► What shows are we watching these days? How to watch US TV abroad? Enjoying time away from RRT? Any tenant stories? Last Jedi thoughts? Jen's EQ past? Preferred RPG archetypes? Jen's words of wisdom for the month? •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RTT-Episode-36-eer7im',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 6459,\n",
       "   'published': '4/30/2018'},\n",
       "  {'uid': 'ca93eea7-317d-5256-9f8d-51aa8ffcf2f8',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO9680846478.mp3',\n",
       "   'title': 'RTT Episode 35',\n",
       "   'subtitle': None,\n",
       "   'summary': \"On the road again... SHOW NOTES: •••[00:01:10] Games of Interest►►► Agricola: Bubulcus Deck, Carson City: The Card Game, Pandoria, Altiplano: Sunny Days, Mystic Vale: Twilight Garden, Fae, Atlantis Rising 2nd Edition, Plunderous, Way of the Panda, Gloomhaven: Forgotten Circles •••[00:21:20] Top10 Revisits►►► Simultaneous Action Selection, Travel •••[00:40:50] Game Q&A►►► Rahdo Runs Through Travel Show? Prestidigitation? Spirit Island not rated? UK games transfered to US? Games stored in the US? Recording the podcasts? Solo cheating? How many games were culled? Thrash n Roll survived? IE vs EG? Above & Below & Near & Far & expansions? RRT prevents us from enjoying sandbox? Best US state for gaming? Next next step games? •••[01:15:15] Personal Q&A►►► Conflicting music tastes between Rahdo & Jen? How to deal with an overtime MIA spouse? How is early retirement working out? How to keep going on solo projects? RRT isolating? RRT mugs dishwashable? Z Nation? Rahdo Runs Through Seattle? Jen's wisdom of the month? •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RTT-Episode-35-eer7k2',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 6093,\n",
       "   'published': '4/9/2018'},\n",
       "  {'uid': '2a1739a7-fa14-5c2d-b859-194365cc202e',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO5974435534.mp3',\n",
       "   'title': 'RTT Episode 34',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Big mailbag month! •••[00:00:40] Games of Interest►►► Newton, Arraial, Carpe Diem, Embark, Gizmo, Okavango, Fleet: The Dice Game, Humanitas, Isle of Skye: Expansion 2, The Networks: Telly Time, Quest for El Dorado: Heroes and Demons, Dragonfire: Corruption in Calisham, Dragonfire: Sea of Swords, 7 Wonders: Armada, This War of Mine: Tales from the Ruined City, Rice Dice, Architects of the West Kingdom, Primus, Scientia •••[00:15:35] Game Q&A►►► Lignum thoughts? Splotter thoughts? Area Control for care bears? Best trade/negotiations games? Shelf organization? Harry Potter Miniatures Game? Visting Rahdo central? How will Seattle change our gaming? Rahdo relaxes through? More US conventions in our future? Prodigal Club + Last Will? How's Charterstone the 2nd time through? Pandemic Legacy 2 sandboxey? Fave Gloomhaven characters? How will Seattle change our gaming II? Where's Alter Ego & Reborn from Flame? Games that feature disabilities? Controlling multiple characters in co-op? Changing structure of runthroughs, over the years? Jen/Rahdo disagreeing on games? Jen's dislike for social deduction? How's Escape hold up for Jen? Going to UKGE this year? •••[01:11:30] Personal Q&A►►► Household holiday traditions? What are we most looking forward to in the states? Olympia over Seattle? What about the political climate in the US? Last Jedi thoughts? Man in the High Castle thoughts? Best documentary? Ever returning to England? What are we most looking forward to in the Pac NW? Expat adjustments? How loud is Rahdo IRL? Rahdo fire sale? New gaming table? What about the chickens? Dog passports? Miss most about Malta? Miss least about Malta? Jen's investing advice? Interim fundraising options? Fave Harry potter book and movie? Reacclimating to the US? Rahdo on hold dates? Rahdo runs through US protests? Where to grow old? Jen's monthly words of wisdom? •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RTT-Episode-34-eer7m7',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 8536,\n",
       "   'published': '3/7/2018'},\n",
       "  {'uid': '35142bb5-0287-53dd-8169-42505e8273d4',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO9881689421.mp3',\n",
       "   'title': 'RTT Episode 33',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Big news!!! SHOW NOTES: •••[00:00:50] 2018 Games of Interest►►► Race to the New Found Land, Forum Trajanum, Lost Cities: To Go, Forbidden Skye, Posthuman Saga, Deckscape: Heist in Venice, TIME Stories: The Handal Project, The Captain is Dead: Lockdown, Clank! The Mummy's Curse, Fields of Green: Grand Fair, Paper Tales: Beyond the Gates, Viceroy: Time of Darkness, Valeria: Card Kingdoms - Shadowvale, Great Western Trail: Rails to the North, Luxor, Coimbra, Holding On: The Troubled Life of Billy Kerr •••[00:25:40] Top 10 Revist►►► Best produced games •••[00:45:10] Game Q&A►►► BIG ANNOUNCEMENT!!! Why cover kickstarter games? Fave boardgame accessory? Game stress? Relaxing games? What game setting would we design? Fave game friday? Pet gaming experiences? Wendake? Good solo games? Freedom vs Taihoku? Uboot fave role? Rahdo promos? •••[01:16:35] Personal Q&A►►► Changing the RRT selection process? Soulmates? Jen's wisdom of the month? •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RTT-Episode-33-eer7nb',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 5111,\n",
       "   'published': '2/1/2018'},\n",
       "  {'uid': '300c89c8-e326-543b-ab22-ba67498618e7',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO8698211461.mp3',\n",
       "   'title': 'RTT Episode 32',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Happy New Year! Remember, no matter where you go... there you are :) SHOW NOTES: 2018 Geeklist: https://boardgamegeek.com/geeklist/234086/rahdo-runs-through-2018-games-interest •••[00:00:45] 2018 Games of Interest►►► (games mentioned in previous podcasts), (games getting reprinted/updated), (games I've already run through), (expansions), Castell, Curio, Dark Souls Card Game, Gandhi, Good Dog Bad Zombie, King's Watch, Lucky's Misadventures, Maiden's Quest, Palm Island, Reavers of Midgard, Reykholt, Safe House, Seize the Bean, Tiny Epic (unannounced), Vadoran Gardens •••[00:27:10] Top 10 Revist►►► 2017, Not Filming, Gateways, Next Steps •••[00:56:55] Game Q&A►►► Dungeon Pets Lite? Memorable Essen? Essen food & evenings? Weekly Rahdo Youtube Hangout? Up and coming boardgame dev scenes? Games I want to play just once? Relationships with designers? How do I teach games to Jen? What happened with the Henry table raffle? Thanksgiving in Malta (oops, personal question slipped in)? Older games getting shortchanged? Aeon's End Legacy? Updated Gloomhaven thoughts? Impact of my Final Thoughts on developers? Top games on a plane? Post Pandemic? Agricola Revised Edition? •••[01:33:40] Personal Q&A►►► Jen's glass pricing? Us in 5 years? Non Trek TV Scifi? Metric system? Proust questionnaire? •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RTT-Episode-32-eer7op',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 7589,\n",
       "   'published': '1/6/2018'},\n",
       "  {'uid': 'e0b924f7-62fd-5617-a576-c1c1cb22e569',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO6431700280.mp3',\n",
       "   'title': 'RTT Episode 31',\n",
       "   'subtitle': None,\n",
       "   'summary': \"A slow post Essen month... SHOW NOTES: •••[00:02:25] Games Q&A►►► Lunch time games at my last job? High rank but low play count for Troyes? Mystery K&K game? Randomness in Feast for Odin? Starting Pandemic Legacy 2 with a new group? Tikal vs Explorers of the North Sea? AP cure? Best and worst things about Essen Spiel? How can carebears enjoy drafting? Regrettable game sales? •••[00:54:30] Non-Games Q&A►►► What's a Xwejni? Starting a new chapter in life on ETSY? Star Trek Discovery? Star Trek Continues? What is Star Trek? Videogame crunch? Jen's parting words of wisdom? •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RTT-Episode-31-eer7pv',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 5479,\n",
       "   'published': '11/21/2017'},\n",
       "  {'uid': 'be6727c6-64be-530b-a32d-2b110d5758fd',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO4177833755.mp3',\n",
       "   'title': 'RTT Episode 30',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Essen-a-go-go! SHOW NOTES: •••[00:04:13] Essen Games of Interest►►► Guilds, Wibbell++, IUNU, The King's Abbey, Thrashing Dice: Assassin Edition, Karuba the Card Game, Quests of Valeria, Edge of Humanity, Pit Crew, Villages of Valeria, Rising 5, Origami, After the Virus, Carthago: Merchants & Guilds, Dragonsgate College, Nations: The Dice Game, Escape Room: Das Spiel - Virtual Reality, Enchanters, Rescue Polar Bears: Data & Temperature, My Story, Bali, Unicornus Knights, Isle of Trains, Vengeance, Exodus Fleet, Flick 'em Up: Dead of Winter, Import/Export, Master' Trials: Wrath of Magmaroth, Space Race: The Card Game, Scott Pilgrim's Precious Little Card Game, Fantasy Defense, Paperback, Pioneer Days, Paper Tales, CV Pocket, Amun-Re: The Card Game, The Captain is Dead, Deadline, Yokohama, Flatline, Reworld, Instanbul: The Dice Game, Fugitive, Deckscape: Test Time, The Sanctuary: Endangered Species, Feudalia, Flip Ships, The Lost Expedition, Harvest, Petrichor, Fog of Love, Chimera Station, Anachrony, A Column of Fire, Barenpark, The Networks, Sentient, Keyper, Fast Forward Series, Riverboat, Tiny Epic Quest, Raiders of the North Sea, Dinosaur Island, Professor Evil and the Citadel of Time, Otys, Castles of Burgundy: The Dice Game, London (2nd edition), Kitchen Rush, Exit: Das Spiel series, The Palace of Mad King Ludwig, Pulsar 2849, Codenames Duet, Majesty: For the Realm, Tybor the Builder, Heaven & Ale, Unlock! Mystery Adventures, Lisboa, Clank! In! Space!, Rajas of the Ganges, Indian Summer, Whistle Stop, Nusfjord, Azul, Noria, Ex Libris, Altiplano, Agra, Queendomino, Gaia Project, Clans of Caledonia •••[02:12:47] Essen Top 10►►► Tale of Pirates, This War of Mine, Santa Maria, Hunt for the Ring, Transatlantic, Loot Island, Merlin, Gloomhaven, Charterstone, Pandemic Legacy 2 •••[02:43:08] Essen Expansions of Interest►►► Import/Export expansions, Dale of Merchants: Systematic Eurasian Beavers, Rhodes: The Colossus, various Valeria expansions, Nimbee: The Bee's Knees, various Catacombs expansions, Fantasy Defense: The Stone King, Tiny Epic Galaxies Beyond the Black, Petrichor: Flowers, Flick em Up! Dead of Winter - Sparky, Peloponnes: Heroes and Colonies, Kingdom Builder: Harvest, Alban Viard expansions, Taluva Extension, Anachrony expansions, Legends of Andor expansions, Agricola: Artifex Deck, Dixit Harmonies, Task Kalar: Etherweave, Azul: Joker Tiles, Pursuit of Happiness: Community, Mystic Vale: Mana Storm, Port Royal: The Adventure Begins, Snowdonia expansions, A Feast for Odin promo, Nations: The Dice Game - Unrest, Lisboa Heavy Cardboard Promo, Orleans promos, Isle of Skye: Journeyman, Concordia: Egypt/Crete, 7 Wonders Anniversary Packs, OMG: Escape to Canyon Brook, Lorenzo il Magnifico: House of Renaissance, Voyages of Marco Polo: Agents of Venice •••[03:10:52] Essen Demos of Interest►►► Mistfall: Chronicles of Frost, Overbooked, Dice Settlers, Fantastiqa Rival Realms, Kung Fu Panda: The Board Game, MourneQuest, Monster Lands, Dawn of Peacemakers, Teotihuacan: City of the Gods, Space Race: The Card Game - Interkosmos, Endeavor (Second Edition), Railways of Nippon, UBOOT: The Board Game, SteamRollers, Tiny Epic Defenders: The Dark War, Batman: The Boardgame, Dice Hospital, A Nice cut of Tea, Networks: Executives, Unlock! Demos, TIME Stories: Santo Tomas de Aquino •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RTT-Episode-30-eer7rp',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 12658,\n",
       "   'published': '10/21/2017'},\n",
       "  {'uid': '8d528231-e4e3-5459-8f9b-7de2fb87cb8d',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO5282978028.mp3',\n",
       "   'title': 'RTT Episode 29',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Normal, for now! SHOW NOTES: •••[00:00:29] Games of Interest►►► Dice Settlers, Chronicles of Frost, Merlin, Flick 'em Up!: Dead of Winter, Azul, The Grizzled: Armistice Edition, Raxxon, AuZtralia, 7 Wonders Anniversary Pack, Fast Foward series, Teotihuacan: City of Gods, Power Grid: Fabled Expansion, Eminent Domain: Oblivion, Queendominio, Panic Mansion, Isle of Skye: Journeyman, Dominion: Nocturne, After the Virus, Amun-Re: The Card Game, Dragonfire Expansions, Die Gefahrten des Marco Polo, Concordia: Aegyptus/Creta, Pandemic: Rising Tide, Bali, Altiplano, Nusfjord, Noria, Agricola: Artifex Deck, D-Day Dice 2nd Edition, Chocolatiers, Carthago: Merchants & Guilds, Space Race: Interkosmos, Oh My Goods!: Escape to Canyon Brook, Indian Summer, Stuffed Fables, Tybor der Baumeister, Castles of Burgundy: The Dice Game, Sorcerer City, Loot Island, Istanbul: Das Wurfelspiel, Karuba: Das Kartenspiel, The 7th Continent: What Goes Up, Must Come Down •••[00:42:00] Top10 Revists►►► Most played & 2.0'd •••[01:00:51] Boardgame Q&A►►► Can't wait to play again? Tanto Cuore? Reviewers not getting theme? Lose your cool? Strip Agricola? In-game handicapping? Mechanic according to OED? Upcoming innovations? Memory inconsistency? Spiel17 tshirts? Refilm older runthroughs? When is it a spoiler? When is it owned or prev. owned? How do I rank games? Where will Jen & I be at Essen? Jen's take on Dice Forge? Post Essen video? Palaces of Mad King Ludwig? Sunset Over Water? •••[02:04:11] Non-Boardgame Q&A►►► My brother? Best voice impression? Sorkin ranking? April 21st? Do I read these question emails? Weather in Malta in Autumn? Essen at Essen (Va Piano!)? •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RTT-Episode-29-eer7sq',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 9255,\n",
       "   'published': '10/5/2017'},\n",
       "  {'uid': '51f012f7-b4fb-552f-8e83-5557a85cf806',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO7069514315.mp3',\n",
       "   'title': 'RTT Episode 28',\n",
       "   'subtitle': None,\n",
       "   'summary': \"A Q&A BLOWOUT!!! SHOW NOTES: •••[00:01:22] Game Q&A►►► How do I get rid of games? Ever binned a game? Moving with games? LeiriaCon 2018? Kennerspiel response this time? Fortunate gamer syndrome? Roll and move? Boardgames inspring videogames? Space for games? Working with kickstarter prototypes? Hidden games? What about the games trapped in Guildford? What percentage of games owned are review copies? Boardgaming online? Port Royal expansion info? Backing games on Kickstarter? Monster-free 2p games? Brink, the board game? Gloomhaven ranking? Agricola Family Edition? What's most enticing about a new game? What designer is next to get full coverage? Essen Spiel coverage? Most frustrating Unlock: The Formula Puzzle? Why no Merlin love last podcast? Essen Spiel plans? World Without End? •••[01:11:45] Non-game Q&A►►► Me & Jen as CV cards? Tracking finances? Running? Malta marriage equality? Murdered by a boardgame personality? Best Beatle post breakup? Knitting glass? Classic consoles? TV in Malta? Marital strife? Will Trump last 4 years? Brexit disaster? Our first records? 3 fave Disney and Pixar films? Shouldn't we all be vegetarians? Typical day? Fave childhood memories? Biggest phobias? Picking up games at Essen? Updated RRT logo? Jen's quote of the month? Moana? Our wedding? Paleo snacks? Rahdo Walks Through? •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RTT-Episode-28-eer7tp',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 11110,\n",
       "   'published': '9/8/2017'},\n",
       "  {'uid': '1606daa2-a7f3-5136-a433-9ecf8b4fca9b',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO6458345006.mp3',\n",
       "   'title': 'RTT Episode 27',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Gencon 5-0! SHOW NOTES: •••[00:03:25] Gencon Games of Interest►►► Kettou, Dungeon Hustle, Destination Neptune 2nd Edition, Valerian: Alpha Missions, Paramedics: Clear, Outpost: Siberia, Dicey Peaks, Dragon Island, Bohnanza: The Duel, Rick & Morty Deckbuilding Game, Delve, Okey Dokey, Klondike Rush, Vengeance, Deadline, Witches of the Revolution, King's Will, Unicornus Knights, Lost Expedition, Apocrypha, Port Royal, One Deck Dungeon 1.5, Barenpark, Sword & Sorcery, Fugitive, Anachrony, Mint Works, Hotshots, Lisboa, Caverna: Cave vs Cave, Bunny Kingdom, Scott Pilgrim's Precious Little Card Game, The Fox in the Forest, Legendary: Buffy the Vampire Slayer, Custom Heroes, This War of Mine, Raiders of the North Sea, Flick em Up: Dead of Winter, Flip Ships, Sentient, Tiny Epic Quest, Century: Golem, Professior Evil & the Citadel of Time, Magic Maze, Century Spice Road, Kingdomino, Ex Libris, Sagrada, Whistle Stop, First Martians, Photosynthesis •••[01:36:30] Gencon Top10►►► 10th Anniversary Feld Games, Spirit Island, Escape/EXIT/Deckscape, Valletta, Edge of Humanity, Quest for El Dorado, (unannounced title), Aeon's End: War Eternal, Codenames Duet, Dragonfire •••[01:59:30] Gencon Expansions►►► Spirit Island: Branch & Claw, Nefarious: Becoming a Monster, Catacombs: Wyverns of Wylemuir, Dragonfire: Heroes of the Sword Coast, Aeon's End: The Void, Aeon's End: The Outer Dark, Quadropolis: Public Services, Automobiles: Racing Season, Valeria: Card Kingdoms - Flame & Frost, TIME Stories: Lumen Fidei, Between Two Cities: Captials, Nations: The Dice Game - Unrest, Orleans: Trade & Intrigue •••[02:16:25] Gencon Demoable Games►►► Dice Hunt, Metal Dawn, Black Souls, Konja, The Big Score, Samurai Gardener, Way of Panda, Stygian Society, Hand of Fate: Ordeals, Dice Hospital, Cowboy Bebop, London, Richard the Lionheart, 1001 Odysseys, Legends of Sleepy Hollow, Diceborn Heroes, Ancestree, Hero Realms Ruins of Thandar, Firefly: Brigands & Browncoats, Doctor Who: Time of the Daleks, The Walking Dead: No Sanctuary, Riverboat, Shared Dream, Catacombs Conquest, Victoriana, Railways of Nippon, Cerebria, Unlock demos, Museum, Epoch: The Awakening, Fog of Love, Agra, Detective: City of Angels, Tiny Epic Defenders: Dark War, Catacombs & Castles, Mottainai: Wutai Mountain, Magic Maze: Maximum Security, Edge of Darkness, Big Trouble in Little China, Codenames: Marvel, Codenames: Disney, One Deck Dungeon: Forest of Shadows, The Networks: Executives, Isle of Skye: Journeyman, The Hunt for the Ring, Dinosaur Island, Thunderstone Quest, Palace of Mad King Ludwig, Grimm Forest, Founders of Gloomhaven, Pandemic Legacy: Season 2 •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RTT-Episode-27-eer7ue',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 10337,\n",
       "   'published': '8/15/2017'},\n",
       "  {'uid': 'ba2259f4-4bdf-5a32-9867-4e46ee709105',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO4414862744.mp3',\n",
       "   'title': 'RTT Episode 26',\n",
       "   'subtitle': None,\n",
       "   'summary': \"3 and a half hours?!? SHOW NOTES: •••[00:00:42] Games of Interest►►► Dungeon Roll: Henchmen, Kokoro: Avenue of the Kodama, The Master' Trials: Wrath of Magmaroth, Valerian: The Alpha Missions, Riverboat, Pulsar 2849, Heaven & Ale, Lorenzo il Magnifico: Houses of Renaissance, Ancestree, Tiny Epic Defenders: The Dark War, Edge of Darkness, Unlock! Mystery Adventures, Escape Room: Das Spiel - Virtual Reality, Santa Maria, Rajas of the Ganges, CV Pocket, Mystic Vale: Mana Storm, Enchanters, Agra, Black Angel, Majesty: For the Realm, Deckscape: The Fate of London, Carcassonne for Two, Crisis at Steamfall •••[00:36:14] Top10 Revists►►► Elegant Games, Game AIs, Western Games, Dice Games, Co-op Fantasy/Adventure Cardgames, Restaurant Games •••[01:25:33] Boardgame Q&A►►► Rahdo endorsements, part II? Rahdo at conventions in 2017? Kennerspiel winners, 2011-2017? Rosenberg game similarities? Glen More issues? Pandemic: Legacy 2nd time through? Best game of 2017 so far? Best sci-fi card game? Large print boardgames? Expansions = DLC? Best Pandemic expansion? Board game thesis? Self-handicapping? New Feld game? Aeon's End vs Shadowrun Crossfire? •••[02:20:51] Non-Boardgame Q&A►►► Higher education? Jen's fave Tim Ferriss guests? Rahdo Sings Through? 2nd favourite food? Rise of popular Rahdo, part II? Hospitals in Malta? Paleo lifestyle? Losing a pet? Playing with celebs/historical figures? Grain Brain? Grain free dogs? RRT Survivor? RRT Amazing Race? Always Sunny? Ice cream vs custard? Swimming pooches? Fave movies? How does Jen pick her books? Pokemon Go? Jen's music? Glass glue? Classified song? •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RTT-Episode-26-eer7vu',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 12598,\n",
       "   'published': '7/10/2017'},\n",
       "  {'uid': '27013486-727a-5fbf-a660-f2390847a3d5',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO5898081109.mp3',\n",
       "   'title': 'RTT Episode 25',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Origins & Son Geeklist: https://boardgamegeek.com/geeklist/221946/origins-game-fair-2017-preview Kynseed KS: https://www.kickstarter.com/projects/405964313/kynseed-a-whimsical-sandbox-rpg-adventure SHOW NOTES: •••[00:00:50] Origins Games of Interest►►► The Fox in the Forest, Attack on Titan: Last Stand, Railways of Nippon, Samara, Barenpark, Pinball Showdown, The Lost Expedition, Century: Spice Road, Pit Crew, Haspelknecht: Ruhr Valley, Okey Dokey, (New York Slice), Deadline, Caverna: Cave vs Cave, Flatline •••[00:30:38] Origins Demos Top 10►►► Whistlestop, Unearth, Hotshots, Witches of the Revolution, Palace of Mad King Ludwig, Networks: Executives, Hero Realms: Ruin of Thandar, Codenames Duet, That's a Question, Hunt for the Ring •••[00:49:10] Boardgame Q&A►►► Recent non RRT games? Heavy boxes? Other language subtitles? How much repeat play? RRT endorsements? Rise to Nobility? Too Many Bones? Master Labyrinth? Games for kids? Who to attack? Gloomhaven unlocked characters? Gloomhaven sticker reset? Isaac Childress' next game? Pandemic story? What do FLGS's needs? Shadowrun Crossfire vs Gloomhaven? Myth franchise sale impact? Capital vs Minerva? •••[01:18:28] Non-Boardgame Q&A►►► God and the afterlife? 26th wedding anniversary? Homebodies? Rahdo memory? Best youtube channels? Dog walking and dog parks? Glass working practices? Youtube annotations? Rahdo fame? Spelling of Jen's name? Birth of Rahdo? Too many eggs? Jen's stage fright? Implicit vs explicit? American ice cream? Jen's dream game? What state to move to? Kynseed? •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RTT-Episode-25-eer80s',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 7247,\n",
       "   'published': '6/3/2017'},\n",
       "  {'uid': '0e16c6aa-38b9-54b2-a2f9-836fd1f05806',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO9740617299.mp3',\n",
       "   'title': 'RTT Episode 24',\n",
       "   'subtitle': None,\n",
       "   'summary': \"RTT year 2, it's a wrap! SHOW NOTES: •••[00:00:31] Games of Interest►►► Morels Foray, Paperback: Expansion, Peloponnes: Heroes and Colonies, Runebound: Unbreakable Bonds, Reworld, D&D: Dragonfire, Between Two Cities: Capitals •••[00:18:34] Top10 Revists►►► 2016, one more time! •••[00:35:20] Boardgame Q&A►►► No retail copies for me? Top 10 mechanical mechanics? What type of games do we struggle with? Design bugbears? Quadropolis variability? What's so great about Roll for the Galaxy? PnP much? Best source for news? BGG improvements? Boardgame VR? Jen making over games with glass? Boardgame narrative? True sandboxes? Top 100 crossovers? Retheme cash grabs? Geek categorization? How did our tastes grow? Favourite gamey feeling? Are gateways really gateways? •••[01:17:41] Non-Boardgame Q&A►►► Chicken talk! Maltese waters? More chicken talk! Jen on Goodreads? What made Jen and I so open with each other and in public? Skillet cookin'? •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RTT-Episode-24-eer81r',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 6621,\n",
       "   'published': '5/6/2017'},\n",
       "  {'uid': 'e3014029-bc85-5732-b419-0441ea589439',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO5428629399.mp3',\n",
       "   'title': 'RTT Episode 23',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Top 10x4 SHOW NOTES: •••[00:01:05] Games of Interest►►► Codenames Duet, Flip Ships, Helionox Deluxe Edition, Hardback, Klondike Rush, Kitchen Rush, Pursuit of Happiness: Community, Palace of Mad King Ludwig, Sentient, Catacombs: Wyverns of Wylemuir, Brass: Birmingham •••[00:27:05] Top10 Revists►►► Felds, Rule Breakers, Deluxe Reprint Needed, Tardis Games •••[00:50:11] Boardgame Q&A►►► Game design vocabulary? Best themes for euro mechanics? Rahdo awards? Take that against AI? How do I classify my BGG collection? Innovation in boardgames vs videogames? Components vs gameplay? How to remember rules? Needed rule tweaks? Fave Dominion stuff? Fave Agricola stuff? •••[01:33:05] Non-Boardgame Q&A►►► Non boardgame mastery? Maltese dishes? First jobs? College majors? Languages spoken? How's RRT doing? Frugal living? What does an American expat miss? Chocolate stroopwafel? Fave animals? Jen's fave glass piece? •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RTT-Episode-23-eer831',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 8080,\n",
       "   'published': '4/4/2017'},\n",
       "  {'uid': 'af05bb1d-b851-5ec5-a69d-148ec2c03b28',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO1658819913.mp3',\n",
       "   'title': 'RTT Episode 22',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Jen's back!!! SHOW NOTES: Escape room nightmare: https://youtu.be/YQSe19aX9Vw?t=43m10s •••[00:01:35] Games of Interest►►► Empyreal: Spells & Steam, Caverna: Höhle gegen Höhle, Codenames: Disney & Marvel Editions, Mottainai: Wutai Mountain, UBOOT: The Board Game, The Expanse, TIME Stories: Estrella Drive & Brothers of the Coast, Aeon's End: War Eternal, Otys, Custom Heroes, Raid on Taihoku •••[00:22:15] Boardgame Q&A►►► Top 5 verbs? Co-op settings? Dream IP? Further Legacy clarification? How to figure out if a game will be good? Honeymoon games? Too many reprints? Multiple characters per player? Auto-succeed die rolls? Perfect co-op dungeon crawl? Which boardgame reviewer do I want to play with? Fresh ideas? What to reprint? Most simpatico boardgame reviewer? Non-BGG online boardgame resources? Best year for boardgames? RTT guests? When will top10 get an update? How can I cover Gloomhaven? To sleeve or not to sleeve? Impulse purchases? First Pandemic play for non-gaming spouse? Rococco jewelry box? Ideal future TIME Story settings? Best & worst components? How to get family more excited about gaming? Game coverage timing? Do I ever finish the runthrough? Percentage of successful kickstarters? My impact on kickstarters? Preferred backup colours? First Feld? Gamechanging mechanisms? Jen's feelings about Jack the Ripper? Seeland modules? Roll & writes? Dice Tower Con? Dream boardgame? Sirlin games? How did I get Dogs: the boardgame? Off market games? Pfister's standing? Limited moves a design strength or flaw? Gloomhaven alternative? More co-ops... what does it mean? Societal standing of games? Mechanisms first or theme first? Dominion over Trains? •••[01:43:20] Non-Boardgame Q&A►►► 2016 & 2017, really the worst? Escape room experiences? France trip? How do I deal with the negativity thrown at RRT? C'mon, 2016 wasn't that bad, really? How is the real me different than Rahdo? Me as John Wick? My 3 worst habits, according to Jen? When will we leave Malta? A day in the life of me and Jen? Different sleep patterns impact on marriage? Grocery shopping? Programming languages? Westworld? Malta mules? Unpacking? Funniest movie? Medical situation in Malta? Beer situation in Malta? Storm situation in Malta? College tips? Auditory processing disorder? What about Scuttle? •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RTT-Episode-22-eer846',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 9922,\n",
       "   'published': '3/14/2017'},\n",
       "  {'uid': 'a9db4d21-9cd2-582d-bf40-4c22e77b0a51',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO8399595382.mp3',\n",
       "   'title': 'RTT Episode 21',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Flying solo this month, which is why it's so late! SHOW NOTES: •••[00:00:50] Games of Interest►►► Pandemic Legacy Season 2, Notre Dame 10th Anniversary, In the Year of the Dragon 10th Anniversary, The City of Kings, Aeon's End: Eternal War, Clank! Sunken Treasures, Card City 2, Die Gärten von Versailles, Detective: City of Angels, Valletta, Bear Park, El Dorado, Mystic Vale: Das Tal der Magie & der Wildnis, Pit Crew, Port Royal: The Adventure Begins, Professor Evil and the Citadel of Time, Quadropolis: Public Services, Seventh Cross, Santo Domingo, Thrash n Roll: Amplified, Steam Ship Company, CO2 2nd edition, Brasil, Loot Island •••[00:51:05] BGG Top 100-50 Countdown •••[01:38:05] Top 10 Revisit: My first games •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RTT-Episode-21-eer84u',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 9042,\n",
       "   'published': '2/13/2017'},\n",
       "  {'uid': 'f4aa5837-f6c9-5abc-a9d9-365bdcdd7b51',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO2703120160.mp3',\n",
       "   'title': 'RTT Episode 20',\n",
       "   'subtitle': None,\n",
       "   'summary': '2017 is upon us!!! SHOW NOTES: 2017 Games of Interest Geeklist: https://boardgamegeek.com/geeklist/218452/rahdo-runs-through-2017-games-interest Top 25 Most Anticipated Games: https://www.youtube.com/watch?v=kj5PHRTQJrI TIME Stories \"Rahdo 2p\" variant: https://www.boardgamegeek.com/article/22413568#22413568 •••[00:01:54] 2017 Games of Interest►►► On Mars, Alter Ego, First martians, Edge of Humanity, Fugitive, Zombies Run!, Dragonsgate College, Brasil, Brass, Trashing Dice, Arcology, Chimera Station, Clockwork Islands, Sagrada, Spirit Island, Apocrypha Adventure Card Game, Legacy: Time Surge, Kingsburg 2nd Edition, harvest, The Captain is Dead, Jump Drive, 5 Minute Dungeon, Perfect Storm, Fog of Love, Skyways, Island of Doctor Necreaux: Second Edition, Tiny Epic Quest, COG, Element & Idols, Exodus Fleet, Reborn From Flame, Yamatai, Mines of Olnak, Thunderstone Quest, Railways of Nippon, Catacombs & Castles, 100 Swords Expansions, Shadowrift Skittering Darkness, Haspelknecht: Ruhr Valley, Kingdom Builder Harvest, Temporum Alternate Realities, Tiny Epic Galaxies: Beyond the Black, Mysterium 2nd Expansion, Automobiles Racing Season, Nations the Dice Game: Unrest, Hero Realms: Ruins of Thandar, Roll Player: Monsters & Minions, TIME Stories Expedition Endurance & Lumen Fidei •••[01:27:15] 2016 Games of Interest Revisit►►► Acute Care, Shadowrift: Eve of the Sickle Moon, Feudum, Dungeon Scroll, Perfect Storm, Brasil, Islebound, 7th Continent, TIME Stories Prophecy of Dragons, Eminent Domain: Exotica, Manhattan Project Energy Empire, Explorers of the North Sea, Dreamwell, The Networks, Fog of Love, Rising 5, Solarius Mission, Roll Player, Guilds of London, Quadropolis, Lisboa, Legend of Andor: Chada & Thorn, Legends of Andor: Journey to the North, Star Trek Frontiers, Gloomhaven •••[01:50:44] Boardgame Q&A►►► Knizia\\'s LotR experiences? BGG top 200? Kingdom Death Monster? TIME Stories variant? My boardgaming history? Conventions? Legacy mechanism? Feld love? Taluva? •••[02:18:22] Non-Boardgame Q&A►►► Holiday plans? New Years resolutions? Maltese radio & TV? RRT malta? Games for celebs? •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RTT-Episode-20-eer862',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 9310,\n",
       "   'published': '1/2/2017'},\n",
       "  {'uid': 'eb48fcfb-7eec-5f9f-b90e-a84e6af676aa',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO2161253827.mp3',\n",
       "   'title': 'RTT Episode 19',\n",
       "   'subtitle': None,\n",
       "   'summary': 'Count downs... SHOW NOTES: •••[00:01:56] Top 10 Revisits►►► Disagreements, Regrets, and Pre-2009 •••[00:47:00] BGG Top 50 eval •••[01:29:33] Boardgame Q&A►►► Artistic impact? Crunchy co-ops? Dice supercut? •••[01:46:20] Non-Boardgame Q&A►►► Malta castle? Free time? Olive oil? Mongol history? Culture shock? •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RTT-Episode-19-eer875',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 7696,\n",
       "   'published': '12/8/2016'},\n",
       "  {'uid': '8a1f3863-20bc-5b51-aa7b-c83eed50db5a',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO3499082914.mp3',\n",
       "   'title': 'RTT Episode 18',\n",
       "   'subtitle': None,\n",
       "   'summary': \"A return to normalcy! SHOW NOTES: (HUGE thanks to Nick Lamb for helping clean up Jen's audio on this one!) Miwi Copycat video: https://www.youtube.com/watch?v=tJU3iakFNj8 Aye Dark Overlord event at Gencon: https://www.youtube.com/watch?v=3DWEm54yxcU Essen Preview Geeklist tool: http://tabletoptogether.com/essen-spiel/index.php •••[00:01:33] New Games of Interest►►► Jump Drive, Temporum: Alternate Realities, A Dog's Life, Skyways, The Stygian Society, Zombies, Run! The Boardgame, Shadowrift: Skittering Darkness, Dominion Update Pack, Anduine: First City in the West, Tribes •••[00:16:49] Top 10 Revisits►►► Tile Laying Games, Pirate Games, Games I Wish I Could Play More •••[00:33:45] Boardgame Q&A►►► What alteration to a game from my feedback and I most proud of? What traits can we identify in each other that pegs us as boardgame lovers? Rahdo Runs Through Scythe? Any Rahdo impersonators? Any RRT helpers besides Paulo (and Thomas Giles)? A runthrough of Rahdo Runs Through? Anything in Essen we recommend checking out? Cash at Essen Spiel? How to digest the Essen Spiel preview geeklist? Emotional Runthroughs? Changing direction of the industry? Controversial theme? Post game rituals? Game component fever? Agricola Revised or Classic? Monopoly runthrough? Why is Terraforming Mars too mean? RTT filesize? Funky interlude music? Top 50 BGG runthrough? Mechs vs Minions feedback? Rahdo domain name? Life post Rahdo Runs Through? •••[01:33:07] Non-Boardgame Q&A►►► My brother's misadventures? Days Gone from Eidetic? Time for a Syphon Filter comeback? Which game I've worked on would I revisit? Tricks to early retirement? Theater background? Have boardgame companies tried to hire me? Competitive videogame scene? Adjusting to life in the UK? Most memorable 30 minutes of our lives? •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RTT-Episode-18-eer88k',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 10157,\n",
       "   'published': '11/7/2016'},\n",
       "  {'uid': '69f60f04-89c3-59f4-9998-04ea418dd88b',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO5513470627.mp3',\n",
       "   'title': 'RTT Episode 17',\n",
       "   'subtitle': None,\n",
       "   'summary': \"SPIEL 2016 PREVIEW!!! SHOW NOTES: Eric Martin's Spiel Preview Geeklist: https://boardgamegeek.com/geeklist/193588/spiel-2016-preview Louise McCully's Spiel Promo Geeklist: https://boardgamegeek.com/geeklist/212177/essen-spiel-2016-specials-freebies-promos-and-othe Enter Jen's Spiel 2016 giveaway at: http://www.jenefer.net •••[00:04:21] Most Anticipated Games #45-11►►► Power Grid: The Card Game, Motion Pictures: movies out of cardboard, Die Baumeister des Colosseum, Chariot Race, forestaurant, Kepler 3042, Terraforming Mars, Martians A Story of Civilization, Honshu, Kingsburg 2nd Edition, Dream Home, Habitats, Morpheus, Fabled Fruit, The Daedalus Sentence, Codenames: Pictures, Treasure Lair, Risky Adventure, Taluva Deluxe, Meduris, London Dread, Legendary Inventors, Robinson Crusoe, Capital, Barcelona: The Rose of Fire, Rhein: River Trade, Nautilion, A Feast for Odin, (Cottage Garden), Lorenzo il Magnifico, Ulm, Touria, Doodle China, Pandemic Iberia, First Class: Unterwegs im Orient Express, Solarius Mission •••[01:14:18] Jen's Essen Plans and Top 10 Most Anticipated Gamess►►► The Colonists, The Golden Sails, 4 Gods, Gluck Auf: Das grosse Kartenspiel, Order of the Guilded Compass, Railroad Revolution, Great Western Trail, La Granja: The Dice Game no siesta, Key to the City - London, The Oracle of Delphi •••[01:32:00] Most Anticipated Expansions►►► Abenteuerland: Konig und Prinzessin, Aeon's End: The Depths, Alchemists: King's Golem, Ancient Terrible Things: The Lost Chapter, Clinic: Medical Dossier 3, Istanbul: Brief & Siegel, Mysterium: Hidden Signs, Mystic Vale: Vale of Magic, Networks: On the Air, Oh My Goods: Longsdale in Aufruhr, Orleans: Handel & Intrige, Pandemic: the Cure - Experimental Meds, Peloponnes Card Game: Patronus, Port Royal Unterwegs!, Russian Railroads: American Railroads, Simurgh: Call of the Dragonlord, Small City: Big Tiles, Taschkent Erweiterung •••[01:53:24] Spiel debuts already covered by Rahdo Runs Through►►► Aeon's End, Alchemidus, Anachrony, At the Gates of Loyang, Ave Roma, Clank!, Colony, Commissioner Victor, Crisis, Dale of Merchants 2, Days of Ire, Dungeon of Fortune, Fantahzee: Hordes & Heroes, Fields of Green, Guilds of London, Heir to the Pharaoh, In the Name of Odin, Jorvik, Kingdomino, Kodama: The Tree Spirits, Mask of Anubis, Morocco, Mystic Vale, Mythe, Oceanos, Perdition's Mouth, Perfumer, Rattle Battle Grab the Loot Angry Ocean, Roll for the Galaxy: Ambition, Round House, Schotten Totten, Squirrel Rush, The Networks, Tramways, (Vinhos Deluxe Ediiton), Virus, Yokohama •••[02:31:05] Demo-only Spiel Games►►► Guilds, Sword & Sorcery, Dungeon Heroes Manager, Iunu, Mines of Olnak, Perfect Crime, Save the President, Save the World, Museum, Nemesis, Kung Fu Panda the Board Game, Tiny Epic Galaxies Beyond The Black, Tiny Epic Quest, Glory: A Game of Knights, Rising 5, Edge of Humanity, Gloomhaven •••[02:50:47] Most Anticipated Promos►►► Anachrony 10 card promo pack, Ave Roma packs, Brettspiel Adventskalender 2016, Codenames Pictures promo tiles, Colony promo pack, Dale of Merchants Systemaic Eurasian Beavers, Deutscher Spielepreise 2016 Goodie Box, Dominion Sauna, Fields of Green: Crop Circle, Goons of New York, Guilds of London Essen Guilds promo, Inhabit the Earth tile rack, Keyflower: Keymelequin, Kodama playable goodies, Lorenzo il Magnifico Leader cards, Mysterium Meeple, Quadropolis Ludo Fact, Rattle Battle Grab the Loot metal coins and Port Scuffle, Rrobinson Crusoe Poachers scenario, Round House promo cards and tiles, Russian Railroads American Railroads, Singe Card Game, Snowdonia Season promo cards, Terraforming Mars launch kit promo, Vinhos Deluxe Edition packs •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RTT-Episode-17-eer8a2',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 10668,\n",
       "   'published': '10/4/2016'},\n",
       "  {'uid': 'b9417d66-78a8-5c01-83a8-1e58629101e1',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO9880465874.mp3',\n",
       "   'title': 'RTT Episode 16',\n",
       "   'subtitle': None,\n",
       "   'summary': 'Q&A-PALOOZA!!!! SHOW NOTES: •••[00:02:26] Game/RTT Questions►►► Rahdo-designed boardgame? More advent calendar/Malta travelogue vids? Kickstarter preferential treatment? Conflict vs game harshness? Voters override me? Revising older games? Top 5 games that need more thumbs? KS stretch goals on the up and up? Oldie game-day? Will we be Essen 2016? •••[00:31:22] Non-Game/RTT Questions►►► What\\'s it like being a videogame designer? Jen\\'s aversion to guns in games? Fave ice cream? \"If money was no object...?\" Fave weather? Jen\\'s key to business success? Best book/fave author? Ever heading to China? Survivor fan chat? Jen\\'s childhood? Top places visited? Top places yet to be visited? Excited about visiting Portugal? Most impactful recent book? Jen\\'s fave color of glass to work? Who\\'s best at (various things) - me or Jen? Brexit & RRT? Why did I retire from making games? Thoughts on No Man\\'s Sky? Best places to eat in downtown Seattle? Pokemon GO? Are games a worthwhile endeavor? How\\'s the pup search going? Ever fostered dogs? •••[01:56:03] Repeat Questions from Podcast 14►►► Rulebook rules? Total RRT playtime? Eurotrash? Ever change my mind? What themes are over/under represented? Sexy mini\\'s? In-jokes in boardgames? LeiriaCon 2017? Do oldies hold up? The Rahdo Effect? Production values of RRT vs WIP? Best and worst things about doing RRT? Best historical time period? Best example of some game genres? Ranking obsession? Ranking validity? Game obsession post RRT? Games Jen likes more than me? Boardgame journalism ethics? Top 10 topics? •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RTT-Episode-16-eer8dg',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 11423,\n",
       "   'published': '9/1/2016'},\n",
       "  {'uid': '10d13485-ceed-5ed6-b6d1-c105d103a04f',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO2521148989.mp3',\n",
       "   'title': 'RTT Episode 15',\n",
       "   'subtitle': None,\n",
       "   'summary': \"GENCON!!!! SHOW NOTES: W Eric Martin's excellent preview geeklist: https://www.boardgamegeek.com/geeklist/198728/gen-con-2016-preview •••[00:04:30] What to buy?►►► Goons of New York 1901, Lotus, Medici, Grimslingers, America, Welcome Back to the Dungeon, IKI, Karuba, RA, Telsa V Edison: Powering Up, Burano, Guilds of London, Great Dinosaur Rush, Saloon Tycoon, Valley of the Kings: Last Rights, Dreamwell, Arcane Academy, Bill & Ted's Excellent Boardgame, Agility, In the Name of Odin, Mysterium Hidden Signs, The King's Abbey, Sunrise City: Nights, Terraforming Mars, Codenames: Pictures, Simurgh, Oceanos, Fantahzee: Hordes & Heroes, Shakespeare: Backstage, Epic Resort: Villain's Vacation, Millennium Blades: Promo Pack #2, Legends of Andor: Call of the Skralls, Clank!, Beyond Baker Street, Mansions of Madness: Second Edition, Via Nebula, Kraftwagen V6, Pursuit of Happiness, Dominion Empires, London Dread, Islebound, Rattle Battle Grab the Loot: Angry Ocean, Vast: The Crystal Caverns, Covert, The Goonies Adventure Card Game, Harry Potter Hogwarts Battle, Project: Elite & Adrenaline, Order of the Gilded Compass, Castles of Burgundy The Card Game, The Networks, Mystic Vale, Pandemic: Reign of Cthulhu •••[01:54:25] What to demo?►►► Mint Works, Loony Quest, Conan, Defense Grid: The Board Game, Born to Serve, One Deck Dungeon, Showtime!, The Ninth World, StarFall, Museum, 1001 Odysseys, Haspelknecht, Dream Home, The Kings Abbey: Lethal Steel, Motion Pictures, Coldwater Crown, Legendary Inventors, Medici: The Card Game, Lunarchitects, Crisis, Fugitive, Shadowrift, Spirit Island, 4 Gods, Tiny Epic Galaxies: Beyond the Black, Tiny Epic Quest, Sagrada, Alchemists: Golem Expansion, Legends of Andor: Journey to the North, Attack on Titan: Deck Building Game, Apocrypha Adventure Card Game, Manhattan Project: Energy Empire, Rising 5: Runes of Asteros, Colony, Black Orchestra, The Walking Dead: No Sanctuary, The Stygian Society, Gloomhaven •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RTT-Episode-15-eer8ea',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 9855,\n",
       "   'published': '7/31/2016'},\n",
       "  {'uid': '2208ee36-97e8-5b6c-b87f-273e4649e8d2',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO8168484316.mp3',\n",
       "   'title': 'RTT Episode 14',\n",
       "   'subtitle': None,\n",
       "   'summary': 'SOOOO many questions! SHOW NOTES: •••[00:00:25] Games of Interest►►► Hero Realms, Targi Expansion, Angry Ocean, Walking Dead: No Sanctuary, Fabled Fruit, The Bird Told Me To Do It, Mines of Olnak, Legends of Andor: Dark Heroes, Lorenzo the Magnificent •••[00:28:30] Top 10 2p Only Games Revisited •••[00:38:01] Q&A►►► How many games a week? LOAD controversy? Hybrid games? Rethinking dismissed games? What themes would Jen like to see? Scantily clad minis? How to keep collection under control? Most played games? \"In the know\" games? Overproduced games? LeiriaCon? Do old faves still stand up? The Rahdo effect? Watch it played? What would RRT videosgames look like? What kind of conflict do we avoid? Jen\\'s mic? Standard boardgame review format? Most viewed vids? Best and worst things about RRT? Fave historical period for games? Best games to represent various mechanisms? Why so much ranking? How can I rank with so few plays? Can I leave the cult of the new? Update on Jen\\'s top10? How to get into boardgame graphic design? Why no good boardgames in mainstream stores? What\\'s gaming like in Germany? What were our \"next step\" games? How to help AP? Gateway to Agricola? Treasure hunting games? Does Jen disagree about games with Rahdo? Are game reviewers too tight with game publishers? Conflict heavy top 10? Table Top audience? •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RTT-Episode-14-eer8fc',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 9720,\n",
       "   'published': '7/16/2016'},\n",
       "  {'uid': '0ee1f174-8ec7-58ae-8101-8beedb57b31a',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO8926704588.mp3',\n",
       "   'title': 'RTT Episode 13',\n",
       "   'subtitle': None,\n",
       "   'summary': \"2 weeks late, but hopefully worth the wait! SHOW NOTES: •••[00:00:38] Games of Interest►►► Pandemic: Iberia, Sagrada, Shakespeare: Backstage, Tavern's Tales, Shadowscape, Pioneer Days, Myth: Dark Frontier, Tiny Epic Galaxies: Beyond the Black, Perfect Crime, Order of the Guilded Compass, Fields of Green, Descent: Road to Legend, Rocky Road a la Mode, The Pirate Republic, Deus: Egypt, Tiny Epic Quest, Clank! •••[00:30:52] Top 10 Mechanisms Revisited •••[00:40:42] Q&A►►► Hybridized RPGs? Original goals of RRT? Dice Tower Awards? LotR games? Kickstarter impact on FLGS's? Design my own game? Kingdom Builder expansions? Orleans Expansion setup? What makes a great rulebook? What would end RRT? Game age ratings? Pet related game disasters? Games for cats & dogs? Game calibration? Impact of game promos? •••[02:03:21] Q&A Personal Side►►► Living on a boat? Cat lover? Rightie or Leftie? Roller coasters? Top 20 TV Shows? Brexit? •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RTT-Episode-13-eer8g9',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 10789,\n",
       "   'published': '6/12/2016'},\n",
       "  {'uid': 'ed5cd580-2943-5118-b409-be9ce40550fd',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO4257221675.mp3',\n",
       "   'title': 'RTT Episode 12',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Final episode of the first year o' podcasting! Send your questions to questions@rahdo.com SHOW NOTES: •••[00:00:27] Games of Interest►►► La Granja: No Siesta, Virus, Legends of Andor: the Last Hope, Codename: Pictures, Charterstone •••[00:14:28] Top 10 Revisits►►► Exploration & Solo games •••[00:35:49] Dice Tower & GAMA Trip Report •••[01:40:12] Q&A►►► Fairness of big vs small publishers on Kickstarter? How do I learn rules & relearn so fast? Suburbia expansions? Jen's glass? Rahdo origin? Scientific skepticism? Star Trek Frontiers? 2p auction games? Boardgames for a videogame design class? Videogame design class assignments? TIME Stories? Laserdiscs? All things being equal, a boardgame or videogame design career? How can I make so many violent videogames yet be such a cardboard carebear? Game teaching? How to play against an experienced opponent? Can love of theme win out over player conflict? Potty mouth? Jen the shark? •••[02:51:25] Q&A Personal Side►►► Scientific skepticism part II? Hillary or Bernie? Fave songs? •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RTT-Episode-12-eer8ha',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 13331,\n",
       "   'published': '5/2/2016'},\n",
       "  {'uid': 'fc6573f0-7995-5595-a9ad-c1dea0f52160',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO4966001460.mp3',\n",
       "   'title': 'RTT Episode 11',\n",
       "   'subtitle': None,\n",
       "   'summary': 'A very emotional podcast SHOW NOTES: 2016 Rahdo Runs Through Kickstarter campaign: http://2016.rahdo.com •••[00:02:42] Q&A►►► Lionhead closure? Seating position? Enough playthroughs to review? Certainty of atheist view? •••[00:27:25] Taloula :( •••[00:33:30] Q&A Continued►►► Gaming with The Dice Tower? Dominion for carebears? Among the Stars expansions? My videogame job description? Where do I shoot? Opinion swap during runthroughs? How does Paulo work? How was Bend? •••[01:18:03] Kickstarter update & More Taloula :( •••[01:25:57] New Games of Interest►►► Colony, Via Nebula, Attack on Titan: Deck Building Game, The Last Ruin, Tentacles of Time, Trashing Dice, Kingdom Builder Harvest, High Treason: The Trial of Louis Riel, Valley of the Kings: Last Rites •••[01:38:12] Top10 Recaps►►► Pickup & Deliver, Economic •••[01:53:48] Kickstarter Contest!! •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RTT-Episode-11-eer8ic',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 7185,\n",
       "   'published': '4/13/2016'},\n",
       "  {'uid': '338c69ed-030a-5f2a-a689-5f8aa4b7bbea',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO9479797852.mp3',\n",
       "   'title': 'RTT Episode 10',\n",
       "   'subtitle': None,\n",
       "   'summary': \"SHOW NOTES: •••[00:01:03]New Games of Interest►►► Airlines, Dice Stars, Oceanos, The Great Chariot Race,The Golden Sails, Bohemian Villages, COGS, Star Trek Panic, Great Western Trail, Terraforming Mars, Epic Resort Villain's Vacation, Catacombs and Castles, The Grizzled: At Your Orders, TIME Stories: Expedition Endurance, Mask of ANUBIS, Mystic Vale •••[00:18:20] Q&A►►► !!!Submit questions to questions@rahdo.com!!! Jen's response to Freedom: Underground Railroad? Rahdo reckless record? Livestreaming everything? What comes after Malta? Dominion attack cards? Expanding light filler games? Asmodee retail channel changes? Fave music? Point salad vs sandbox? Game burnout? Grandma's Boy authenticity? Thoughts on game variants? Plans for the next RRT kickstarter? New Agricola? A new Spiel des Jahres category? •••[02:00:30] Top10 Kickstarter Games Recap •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RTT-Episode-10-eer8ja',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 7937,\n",
       "   'published': '3/9/2016'},\n",
       "  {'uid': 'd7124346-c066-5933-bb8f-7d66f1bd1fdf',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO5184592853.mp3',\n",
       "   'title': 'RTT Episode 9',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Six Top 10s + Pandemic: Legacy - game or expansion? SHOW NOTES: 2016 Games of Interest Geeklist: https://boardgamegeek.com/geeklist/201740/rahdo-runs-through-2016-games-interest Boardgame Pricing Utility: http://www.spielboy.com/GeekPrices.php Pandemic Legacy: the expansion thread (warning: spoilers) https://www.boardgamegeek.com/thread/1518368/legacy-4th-pandemic-expansion-spoilers-course London Walking Map http://content.tfl.gov.uk/walking-tube-map.pdf •••[00:00:42]New Games of Interest►►► Aeon's End, Retreat to Darkmoor, Fight for Olympus, Oracle of Delphi, Castles of Burgundy the Card Game, Grim Heroes, Brettspiel Easter Basket, Dale of Merchants 2, Bear Valley, Survival: Frogs of SE Australia, Agility, Knit Wit, Touria, Medici, Spirit Island, First Martians: Adventures on the Red Planet, Pandemic Reign of Cthulhu, Dominion: Empires, Coal Barons The Big Card Game, Istanbul: Brief & Siegel, Heir to the Pharaoh •••[00:37:28] Q&A►►► The Nintendo Story?, Dixit a themeatic game? How successful was my videogame career? Ever going back to work? Jen jealous of virtual Jen? Would we miss Malta? Love for Gold West? Out of print games? How important is having local gamers to play with? Fave anime? Boardgame bubble? Boardgame conventions worth it? Different types of attackey games? Advice for teaching games? Where do we vote? How to use Boardgamegeek.com? Best of London? Revisiting older games? Fave podcasts? Boardgames too expensive? Best EU online boardgame retailer? •••[02:13:00] Top10 Recaps►►► Civilizations, Surprises, Best of 2016, Anticipated of 2016, Videogames, Expansions •••[02:50:49] Pandemic Legacy: The Expansion •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RTT-Episode-9-eer8kj',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 11460,\n",
       "   'published': '2/6/2016'},\n",
       "  {'uid': 'fc6b254f-7a2b-5d46-9f4f-fe059bd4cc46',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO2165923444.mp3',\n",
       "   'title': 'RTT Episode 8',\n",
       "   'subtitle': None,\n",
       "   'summary': \"2016 Preview + Mega Q&A!!! SHOW NOTES: 2016 Games of Interest Geeklist: https://boardgamegeek.com/geeklist/201740/rahdo-runs-through-2016-games-interest 2016 Top 25 Most Anticipated Games: https://www.youtube.com/watch?v=BACAdkMhNzI •••[00:03:16] 49 Additional Games of Interest for 2016►►► Dragon Keepers, The Last Bastion, Quest for the Open Tavern, Sails to Steam, Simurgh: Call of the Dragonlord, The Expansive Hospital, Cabriole, ZNA, Valeria: Card Kingdoms, Villages of Valeria, Quests of Valeria, Arkwright, Millennium Blades, The Manhattan Project: Chain Reaction, Kingdom Builder: Marshlands, Covert, Welcome to Centerville, London Dread, Ein Fest für Odin, Cuisine a la Card, Unpublished Prototype, Vinhos Deluxe Edition, The Banner Saga: Warbands, Lunarchitects, Tiny Epic Western, Dingo's Dreams, Back to the Future: An Adventure Through Time, Clockwork Islands, Hitler Must Die, Tramways, Victorian Masterminds, In The Name of Odin, Dragonsgate College, Big Easy Business, Rokoko: Jewelry Box, The Exodus Fleet, Legacy: Time Surge, Saving Time, HOPE, Four Gods, Admiral of the Black, Elder Sign: Omens of Ice, Five Minute Delivery, 100 Swords: The Darkness Dungeon Builder Set, The Island of Doctor Necreaux: Second Edition, Beyond Baker Street, Fire of Eidolon, The North Sea Runesaga, This War of Mine: The Board Game •••[01:21:09] Q&A►►► Game industry labor ethics? Boundaries for Legacy mechanisms? Digital boardgames? TV shows & Movies that should be games? How's Shadowrun: Crossfire going? MTG helped us buy a house? What was my job at Nintendo? Surprising games? Equipment? What games should get the Legacy treatment? Gaming with designers? TMI? Mold? Table cloth? Caverna variants? What games do we wish we could play more? Favourite TV shows? Co-op videogames? Hard to get expansions? Game production troubles? The last designer? My crazy ratings? Games for the holidays? Seattle the best? Best Agricola expansion? Game buying in Malta? Other boardgame personalities? What makes a gamer a gamer? House rules? Smartphones at the table? Am I going to design a game? Soul crushing travel? Rahdo Runs Through, the convention? A day in the life? What's too sandboxey? Working on the worst videogame of all time? What happened to Spirits of the Rice Paddy? JJ Trek, really? Did the Force Awaken? •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RTT-Episode-8-eer8li',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 14078,\n",
       "   'published': '1/6/2016'},\n",
       "  {'uid': 'b123f0da-34a9-56b0-baa3-fd7afd0ab0fc',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO9725035269.mp3',\n",
       "   'title': 'RTT Episode 7',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Post BGG.con Show! SHOW NOTES: My BGG.con Runthrough Video: https://www.youtube.com/watch?v=iksdjeA6_fA •••[00:01:37] Travel Stories, part I►►► Dallas via Moscow •••[00:12:13] Games!►►► Roller Derby Final Jams (https://www.facebook.com/groups/219406578216672/) and the five Action Phase Prototypes •••[00:18:24] Pandemic Legacy stuff►►► (my variant thread: https://www.boardgamegeek.com/thread/1467497/13th-month-spoilers), •••[00:25:31] Pandemic Secret Project •••[00:28:08] Seafall •••[00:36:06] Chronicles: Origins •••[00:50:00] Travel Stories, part II►►► First spot of trouble •••[00:51:00] More Games ►►► HIDE, Skyliners, Fuse, 9th World: Numenera, Quadropolis, The Opulent, (Movie Making game - can't remember name) •••[01:14:36] The lovely people of BGG.con •••[01:25:05] Travel Stories, part III►►► Getting to Mom's •••[01:29:47] Online Guest Appearances►►► https://www.youtube.com/watch?v=YQSe19aX9Vw https://www.youtube.com/watch?v=3bJigI7OoCY https://www.youtube.com/watch?v=cE7pdT5_T_4 •••[01:31:10] Even more games!►►► Noblemen, Pagoda, Abyss •••[01:40:51] Travel Stories, Part IV►►► Leaving Mom's •••[01:45:20] Final games►►► Between Two Cities, Flick 'Em Up, Codenames •••[01:55:11] Travel Stories, Part V►►► Getting to New York, Saturday Night Live - live!, 36+ of travel hell •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RTT-Episode-7-eer8mv',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 9085,\n",
       "   'published': '12/20/2015'},\n",
       "  {'uid': 'eeff5055-f4e3-55db-9c29-c337535fab6a',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO6262949607.mp3',\n",
       "   'title': 'RTT Episode 6',\n",
       "   'subtitle': None,\n",
       "   'summary': \"The Post Essen show! SHOW NOTES: •••What Have We Been Playing? (00:00:58)►►► Broom Service, Fog of Love, Steam Ship Company, Nations the Dice Game expansion, Guilds of London, Fest Fur Odin, Hengist, Mysterium, [microfilms], Pandemic Legacy, 504 •••Q&A (00:31:55)►►► Multiplayer solitaire? How do i channel my inner-Jen? Gender specific boardgames? Boardgame storage: vertical or horizontal? So, no kids for Rahdo & Jen? What's the secret to a happy marriage? (please send your questions to questions@rahdo.com but ask for game recommendations at http://guild.rahdo.com) •••Essen Observations (01:13:12)►►► Run Rahdo, run! Packing tips! Fist bumps! Jen's booth! Travel misadventures! •••Top 10 Recap (01:29:00)►►► Games that need an expansion •••Wrapping it up (01:37:16)►►► BGG.con is coming! Boardgame advent calendar! •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RTT-Episode-6-eer8nn',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 6120,\n",
       "   'published': '11/3/2015'},\n",
       "  {'uid': '19d4154e-13b7-532e-a434-c6df93fba989',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO8487993108.mp3',\n",
       "   'title': 'RTT Episode 5',\n",
       "   'subtitle': None,\n",
       "   'summary': \"ESSEN SPIEL 2015!!! SHOW NOTES: [Jen's website to enter Essen Spiel contest: http://www.jenefer.net] •••Owned and/or Already Ranthrough! (00:04:12) •••Promos (01:02:47) •••Demoable Only (01:10:23) •••To Buy or Not to Buy (01:34:40) •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RTT-Episode-5-eesqpo',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 15099,\n",
       "   'published': '9/29/2015'},\n",
       "  {'uid': '39f2c6f2-93c0-5afd-923c-e8da17ca9b0b',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO4352034984.mp3',\n",
       "   'title': 'RTT Episode 4',\n",
       "   'subtitle': None,\n",
       "   'summary': \"CATCHUP! SHOW NOTES: •••What Have We Been Playing? (00:00:40)►►► prime time, the networks •••Games of Interest (00:10:13)►►► nations dynasties, galaxy trucker missions, russian railroads german railroads, theseus hunters, automobiles, lunarchitects, burano, peloponnes card game, runebound 3rd edition, fury of dracula 3rd edition, warhammer quest the card game,pursuit of happiness, inhabit the earth, treasure hunter, dingo's dreams, brettspiel adventskalendar, aya, grand austria hotel, hengist, morocco, adventure land •••Q&A (00:41:40)►►► underrated game designers, rare game finds, the peter molyneux of boardgames, my top10, ethical content in boardgames, prototypes, the movies, real life runthroughs, more prototypes, dice tower overlap, playtesting •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com •••Top 10 Recaps (01:18:30)►►► must have games, interaction without violence\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RTT-Episode-4-eer8on',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 7315,\n",
       "   'published': '9/2/2015'},\n",
       "  {'uid': '7b3f05fd-2fbb-5bfc-8d9c-7ad9d4eb29ed',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO3949908337.mp3',\n",
       "   'title': 'RTT Episode 3',\n",
       "   'subtitle': None,\n",
       "   'summary': \"GENCON! GENCON! GENCON!!! SHOW NOTES: •••What to buy at Gencon 2015? (00:03:26)►►► apocalypse chaos, ryu, catan traveler edition, meteor, champions of midgard, star trek 5 year mission, medieval academy, flick em up, one deck dungeon, space cadets away missions, extra extra, lanterns: the harvest festival, princess bride games, wrath of dragons, tragedy looper midnight circle, steam works, dungeon of fortune, nefarious, welcome to the dungeon, king's armory, fidelitas, among the stars revival, new york 1901, suburbia 5*, eminent domain microcosm, the grizzled, codenames, gold west, heroes wanted stuff of legend, rattle battle grab the loot, cthulhu realms, shadowrift archfiends, stockpile, trambahn, valley of kings afterlife, isle of skye, spirits of the rice paddy, kraftwagen, mottainai, artifacts inc, mysterium, tides of time, viceroy, queen's architect, la granja •••What to demo at Gencon 2015? (01:49:06)►►► poseidon's kingdom, fury of dracula, castles of mad king ludwig secrets, castle panic dark titan, tumult royal, steam time, looting atlantis, darkrock ventures, favour of the pharoah, trickerion, the networks, shadow over westminster, extraordinary voyages, consequential, 1001 odysseys, storm hollow, snow tails, attack on titan, ninja camp, spirit island, fuse, odyssey wrath of posdeidon, mistfall, lunarchitects, thunderbirds, legends of andor, dice city, above & below, roll for the galaxy ambition, gloomhaven •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RTT-Episode-3-eer8p9',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 10010,\n",
       "   'published': '7/28/2015'},\n",
       "  {'uid': '484ff88a-7f67-5a42-83cc-519894380bdf',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO8880402351.mp3',\n",
       "   'title': 'RTT Episode 2',\n",
       "   'subtitle': None,\n",
       "   'summary': 'Too many new games! Questions (plus) Answers! Engine building games broken down! SHOW NOTES: •••What Have We\\'ve Been Playing? (00:01:40)►►► Elysium, Voyages of Marco Polo, Specter Ops, Cthulhu Realms, Flip City, Dungeon of Fortune, Bottlecap Vikings •••Games of Interest (01:09:55)►►► Legends of Andor: Chada & Thorn, The Loser\\'s Club, Unnamed Castles of Burgundy Sequel, Council of Four, Rattle Battle Grab the Loot, Dice City, Shadowrift 2nd Edition, Legacy Time Surge, Shadowrun Crossfire High Caliber Ops, Villages of Valeria, Minerva, Shakespeare, Apollo XIII, Octo Dice •••Q&A (01:40:02)►►► How often do we play games? Do we ever play \"mean\" games? Do we miss playing with more than 2? Am I going to design my own game? Would I take a prototype to a publisher or Kickstarter? How does the boardgame industry compare to the videogame industry? How did you relocate from the US to Malta? More questions? Send your fragen to questions@rahdo.com! •••Top 10 Revisited (02:16:35)►►► Engine building games! Original top10 video: https://www.youtube.com/watch?v=KAKtwJa9J4s •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com',\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RTT-Episode-2-eer8q1',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 9432,\n",
       "   'published': '7/5/2015'},\n",
       "  {'uid': 'cd9bcaf5-8ee6-58a6-b8ce-817be415abb9',\n",
       "   'audio_url': 'https://traffic.megaphone.fm/APO9614149546.mp3',\n",
       "   'title': 'RTT Episode 1',\n",
       "   'subtitle': None,\n",
       "   'summary': \"Dominion, a thematic game! How to start a boardgame cafe! Filler Games galore! SHOW NOTES: •••What Have We've Been Playing? (00:01:54)►►► Dead Men Tell No Tales, New York 1901, Stockpile, Kraftwagen, Parfum, Queen's Architect •••Games of Interest (00:23:05)►►► 7th Continent, Oracle of Delphi, Solar 3X, Manhattan Project Chain Reaction, Carson City Horses & Heroes, Signorie, Samara, Centerville •••Q&A (00:36:10)►►► Send your fragen to questions@rahdo.com! •••Victory Point Cafe Interview (00:36:54)►►► Check out the kickstarter at https://www.kickstarter.com/projects/vpcafe/victory-point-cafe-berkeleys-first-board-game-cafe •••Thematic Review (00:57:37)►►► Dominion... that's right! Dominion! •••Top 10 Revisited (01:07:11)►►► Filler games! Original top10 video: https://www.youtube.com/watch?v=6mo9cg3IwbI •••Help Rahdo run @ https://patreon.com/rahdo •••Send your questions to questions@rahdo.com\",\n",
       "   'url': 'https://anchor.fm/rahdo/episodes/RTT-Episode-1-eer8qr',\n",
       "   'author': 'Richard Ham',\n",
       "   'duration_s': 5416,\n",
       "   'published': '5/31/2015'}]}"
      ]
     },
     "execution_count": 7,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "feed_data"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 8,
   "id": "f4210f1e",
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "(418467, 40)\n"
     ]
    },
    {
     "data": {
      "text/plain": [
       "id                                                                           2\n",
       "url                                   https://anchor.fm/s/19ccb320/podcast/rss\n",
       "title                                                      Rahdo Talks Through\n",
       "last_update                                                2023-01-07 13:38:53\n",
       "link                                                 https://patreon.com/rahdo\n",
       "last_http_status                                                           200\n",
       "dead                                                                         0\n",
       "content_type                                application/rss+xml; charset=utf-8\n",
       "itunes_id                                                           1000016089\n",
       "original_url                          https://anchor.fm/s/19ccb320/podcast/rss\n",
       "itunes_author                                                      Richard Ham\n",
       "itunes_owner_name                                                  Richard Ham\n",
       "explicit                                                                     0\n",
       "image_url                    https://d3t3ozftmdmh3i.cloudfront.net/staging/...\n",
       "itunes_type                                                           episodic\n",
       "generator                                                      Anchor Podcasts\n",
       "newest_item_pubdate                                        2023-01-06 16:35:44\n",
       "language                                                                    en\n",
       "oldest_item_pubdate                                        2015-05-31 03:00:00\n",
       "episode_count                                                              324\n",
       "popularity_score                                                             1\n",
       "priority                                                                     1\n",
       "created_on                                                 2020-08-06 22:21:27\n",
       "update_frequency                                                             1\n",
       "chash                                         f9fce8424a9918be9182c2d67fc51c16\n",
       "host                                                                 anchor.fm\n",
       "newest_enclosure_url            https://traffic.megaphone.fm/APO3125371687.mp3\n",
       "uid                                       655b4e1a-4deb-56a2-9256-cad10f099410\n",
       "description                  A podcast all about boardgames, hosted by Rich...\n",
       "category1                                                              leisure\n",
       "category2                                                                games\n",
       "category3                                                                     \n",
       "category4                                                                     \n",
       "category5                                                                     \n",
       "category6                                                                     \n",
       "category7                                                                     \n",
       "category8                                                                     \n",
       "category9                                                                     \n",
       "category10                                                                    \n",
       "newest_enclosure_duration                                                 1029\n",
       "Name: 0, dtype: object"
      ]
     },
     "execution_count": 8,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "print(df.shape)\n",
    "df.iloc[0]"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "id": "aff163e6",
   "metadata": {},
   "outputs": [],
   "source": []
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "id": "47a37bfd",
   "metadata": {},
   "outputs": [],
   "source": []
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "id": "f0e0b7e8",
   "metadata": {},
   "outputs": [],
   "source": []
  }
 ],
 "metadata": {
  "kernelspec": {
   "display_name": "Python 3 (ipykernel)",
   "language": "python",
   "name": "python3"
  },
  "language_info": {
   "codemirror_mode": {
    "name": "ipython",
    "version": 3
   },
   "file_extension": ".py",
   "mimetype": "text/x-python",
   "name": "python",
   "nbconvert_exporter": "python",
   "pygments_lexer": "ipython3",
   "version": "3.8.13"
  }
 },
 "nbformat": 4,
 "nbformat_minor": 5
}
