XNA UK User Group
A helping hand for bedroom coders throughout the land.
Gamefest 2007 Slides and Audio

Dave posted a list of the published talks from this years Gamefest. Unfortunately his email program mangled the links so that you end up being sent to Microsoft's web mail instead. Being too impatient to wait for someone to fix the links, I whipped up a little IronPython script to get the job done.

You can see the script here and links are below. As Dave says they may not all actually be available yet and I've only tested a couple.

import clr
clr.AddReference("System.Web")

from System.IO import StreamReader, StreamWriter
from System.Net import WebRequest
from System.Web import HttpUtility
from System.Text.RegularExpressions import Regex

req = WebRequest.Create("http://letskilldave.com/archive/2007/10/13/gamefest-2007-slides-and-audio-recordings-well-most-of-them.aspx")

reader = StreamReader(req.GetResponse().GetResponseStream())
html = reader.ReadToEnd()
reader.Close()

rx = Regex(r'URL=(http\%3a\S*).*<FONT color=#0000ff>(.*)</FONT></SPAN></A>')
matches = rx.Matches(html)

links = ('<li><a href="%s">%s</a></li>' % (HttpUtility.UrlDecode(m.Groups[1].Value), m.Groups[2]) for m in matches)

writer = StreamWriter('links.html')
for l in links:
    writer.WriteLine(l)
writer.Close()

Gamefest Talks: 


Posted Sat, Oct 13 2007 6:30 PM by leaf
Filed under: