Such a fun time was had at Mix 11 this last week in Vegas. I only saw a few talks as I was busy presenting, but now as I sit at home on my first day back, I say to myself, Self, how can I get all the Mix videos at once?
First, you can watch all the videos online at http://channel9.msdn.com/Events/MIX/MIX11
Second, you can get them via RSS. Most major browsers are hiding the RSS button these days, but the discovery metadata is all still there. In IE9, for example, if you show the Command Bar, you can see the RSS Feeds for the Mix site:
What's all this awesomeness? Oh, yes, it's the Mix talks via RSS with enclosures, just as you've always wanted. Now you can list the thousand ways that you might retrieve these lovely files and abuse Microsoft's bandwidth while hoarding knowledge on your multi-terabyte personal SAN.
Direct links to the Mix RSS feeds that include Enclosures:
- Mix 11 Default RSS
- Mix 11 MP4 Low RSS
- Mix 11 MP4 High RSS
- Mix 11 WMV RSS
- Mix 11 WMV High RSS
- Mix 11 MP3 Audio RSS
So now you can get them with iTunes or Zune, or PowerShell, 'cause that's bad-ass. Yes, you can use Curl also, nyah.
$feed=[xml](New-Object System.Net.WebClient).DownloadString("http://channel9.msdn.com/Events/MIX/MIX11/RSS")
foreach($i in $feed.rss.channel.item) {
$url = New-Object System.Uri($i.enclosure.url)
$url.ToString()
$url.Segments[-1]
(New-Object System.Net.WebClient).DownloadFile($url, $url.Segments[-1])
}
Or, you can subscribe in iTunes from Advanced|Subscribe to Podcast, assume, of course, you want iTunes in your life.
Or, in Zune (which is a good Podcast Downloader even if you don't have a Zune) you can go to Collection|Podcasts and click Add A Podcast:
Another nice, lightweight Podcast Download is the Open Source "Juice!" from http://juicereceiver.sourceforge.net/
Go get them! Here's the presentations that Web Platform and Tools Team (ASP.NET, IIS, etc) presented:
- Knockout JS: Helping you build dynamic JavaScript UIs with MVVM and ASP.NET
- Deconstructing Orchard: Build, Customize, Extend, Ship
- Pragmatic JavaScript, jQuery & AJAX with ASP.NET
- Scaffolding – ASP.NET, NuGet, Entity Framework Code First and More
- An Overview of the MS Web Stack of Love
- ASP.NET MVC 3 @:The Time is Now
- Bigger, Faster, Stronger: Optimizing ASP.NET Applications
- Web Forms: Reports of my Death are Greatly Exaggerated
Enjoy!
© 2011 Scott Hanselman. All rights reserved.