Archive for the 'Uncategorized' category

Custom RSS feeds for BUILD 2011 videos

September 17, 2011 11:26 am

Now that //build/ is over, lots of people want to download the sessions they missed because there was an ocean of stuff being presented and you couldn’t possibly catch it all live.

One way to do this is to use a PowerShell script (I found one here).

Here’s the script code in case you don’t want to follow the link:

cd "C:\build11"
[Environment]::CurrentDirectory=(Get-Location -PSProvider FileSystem).ProviderPath
$a = ([xml](new-object net.webclient).downloadstring("http://channel9.msdn.com/Events/BUILD/BUILD2011/RSS/wmvhigh"))
$a.rss.channel.item | foreach{
    $url = New-Object System.Uri($_.enclosure.url)
    $file = $url.Segments[-1]
    $file
    if (!(test-path $file))
    {
        (New-Object System.Net.WebClient).DownloadFile($url, $file)
    }
}

One problem with this might be that you don’t want all videos. So you’d have to filter the RSS feed that the script pulls down. There’s no documentation on how to do that, but a little experimentation shows that you can do this:

http://channel9.msdn.com/Events/BUILD/BUILD2011/RSS/wmvhigh?t=.net%2Bframework

The available filters (for the t parameter) are:

.NET%2BFramework

Access%2BControl

Applications

ASP.NET

Assessment%2Band%2BDeployment Kit

Async

C#

C++

Certification

Charms

Cloud

Compliance

Continuous%2BAvailability

Data

Database

Debugging

DirectX

Drivers

Elasticity

Expression%2BBlend

Files

Games

Graphics

HTML5%2Band%2BJavaScript

Hyper-V

IHV

Keynote

Manageability

Media

Metro%2Bstyle%2Bapps

Metro%2Bstyle%2Bdevice%2Bapps

Networking

Odata

OEM

Parallel%2BComputing

Performance

Power

Pre-Recorded

Printing

Remote%2BDesktop

REST

Roaming

Scalability

Security

Sensors

Silicon

SQL

Storage

Touch

UI

Platform

User%2BExperience

Virtualization

Visual%2BBasic

Visual%2BStudio

WCF

Web

Windows%2BAzure

Windows%2BPhone

Windows%2BRuntime

Windows%2BStore

Wireless

Workflow

XAML

If you’re just interested in the slides, use a query like this:

http://channel9.msdn.com/Events/BUILD/BUILD2011/RSS/slides?t=.net%2Bframework

In general, the query can be constructed like this:

http://channel9.msdn.com/Events/BUILD/BUILD2011/RSS/
[type]?t=[tag]&term=[free text]

Where [type] can be one of: wmv, wmvhigh, mp4, slides

You can add multiple t arguments.

So if you’re interested in slides related to “client” topics, this might be your query:

http://channel9.msdn.com/Events/BUILD/BUILD2011/RSS/slides?t=async&t=charms&t=expression%2Bblend&t=files&t=games&t=metro%2Bstyle%2Bapps&t=metro%2Bstyle%2Bdevice%2Bapps&t=touch&t=ui%2Bplatform&t=user%2Bexperience&t=windows%2Bphone&t=windows%2Bruntime&t=windows%2Bstore&t=xaml

Apple’s new Cupertino campus: Wow!

June 7, 2011 11:14 pm

Here are some still images from a recent presentation Steve Jobs gave to the Cupertino City council. Amazing stuff. Sorry about the low res quality, these came off of the 240p video at http://www.youtube.com/watch?v=gtuz5OmOh_M

Old_And_New_Campus
Old and new campus land

New Campus Buildings
New campus building

New Campus Aerial View
New campus aerial shot

New Campus Aerial View 2
New campus aerial shot

New Campus Aerial View 3
New campus aerial shot

New Campus View 1
New campus view

New Campus View 2
New campus view

Landscape Current
Landscaping current

Landscape Future
Landscaping future

New Campus View 3
Campus view

Trees Current
Trees current

Trees Future
Trees future

New Campus View 4
New campus view

New Campus Buildings Detail
New campus building details

New Campus Statistics
New campus statistics

New Campus View 5
New campus view

New Campus View 6
New campus view of cafeteria

New Campus Aerial View 4
New campus aerial view

Thoroughly impressive. Wow.

HP TouchSmart PC product design videos on YouTube

January 2, 2009 11:27 am

For anyone who is curious about what kind of audience the HP TouchSmart IQ500/800 series was designed for, you may find these two videos interesting. You get a bit of the story behind the market research, the user panel that was put together, and how the design evolved. I’m not sure how long these videos will stay up, so if you’re curious, better watch them soon.

 

  

 

[Shameless plug: Looking for an easy way to comprehensively caption/comment your digital photos? Try Simple Photo Tagger, the fast and efficient solution for working through piles of pictures.]

Akismet spam filtering is brilliant (testing scheduled posting)

May 31, 2008 4:45 pm

To date I’ve had about 8500 spam comments on this blog. Installing Akismet from the first day was a really good move in hindsight. I can only hope that one day I get as many real comments as spam comments. That’ll be the day!

Anyway, this is really just a post to test whether my hosting company has the right stuff in place to allow scheduled posting, so I can queue up posts and have them show up when I mean to (and not a minute sooner). Sorry to bore you with this one. Move along, nothing to see here, move along.