Skip to content

Instantly share code, notes, and snippets.

@dannyow
Created October 8, 2013 16:28
Show Gist options
  • Save dannyow/6887387 to your computer and use it in GitHub Desktop.
Save dannyow/6887387 to your computer and use it in GitHub Desktop.
wwdc 2013 videos printed as CSV (session name, number) in browser's JS console.
var l = document.querySelectorAll("li.session ul.thumbnail");
var f = function(e){ console.log(e.querySelector('.thumbnail-title').innerText+"\t"+e.querySelector('.thumbnail-id').innerText.split(' ')[1]);}
for(var i=0; i<l.length; i++){ f(l[i]) }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment