Arden Vul GM Source Index

Canonical index of DF Whiterock posts tagged Arden Vul.

Generated from Blogger feed on 2026-03-22 00:45 UTC; total posts: 74.

Session Recaps / Summaries

Meta / Rules / Setting Posts

Maintenance / Regeneration

To refresh this index from the live blog feed:

python3 - <<'PY'
import requests
from datetime import datetime, UTC
 
base='https://dfwhiterock.blogspot.com/feeds/posts/default'
start=1
entries=[]
while True:
    r=requests.get(base,params={'alt':'json','max-results':'150','start-index':start},timeout=30)
    r.raise_for_status()
    feed=r.json()['feed']
    batch=feed.get('entry',[])
    if not batch:
        break
    entries.extend(batch)
    if len(batch) < 150:
        break
    start += 150
 
rows=[]
for e in entries:
    cats=[c['term'] for c in e.get('category',[])]
    if 'Arden Vul' not in cats:
        continue
    title=e['title']['$t']
    url=next((l['href'] for l in e.get('link',[]) if l.get('rel')=='alternate'),None)
    published=e.get('published',{}).get('$t','')[:10]
    rows.append((published,title,url))
rows.sort()
 
print(f"Generated {len(rows)} Arden Vul links @ {datetime.now(UTC).strftime('%Y-%m-%d %H:%M UTC')}")
for d,t,u in rows:
    print(f"- {d} — [{t}]({u})")
PY

After regeneration, paste/update this file and keep links sorted by date.

Source