Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| // Download all assets from https://developer.apple.com/wwdc/videos | |
| // Warning: might take up a lot of disk space | |
| NodeList.prototype.toArray = function () { | |
| return Array.prototype.slice.call(this); | |
| }; | |
| [].concat.apply([], document.querySelectorAll("li.session").toArray().map(function(session){ | |
| var sessionID = session.id.match(/^\d+/)[0]; | |
| var title = session.querySelector(".title").innerText; |
| @mixin replace-text-with-svg($svg-name, $png-name: $svg-name) { | |
| @include replace-text-with-dimensions($png-name + ".png"); | |
| background-image: none, image-url($svg-name + ".svg"); | |
| } |