Outline of ideas, concepts to cover, potential projects to write.
- Book with a video for each chapter.
A list of Sketch plugins hosted at GitHub, in no particular order.
| // Convert Excel dates into JS date objects | |
| // | |
| // @param excelDate {Number} | |
| // @return {Date} | |
| function getJsDateFromExcel(excelDate) { | |
| // JavaScript dates can be constructed by passing milliseconds | |
| // since the Unix epoch (January 1, 1970) example: new Date(12312512312); |
| // http://paulirish.com/2011/requestanimationframe-for-smart-animating/ | |
| // http://my.opera.com/emoller/blog/2011/12/20/requestanimationframe-for-smart-er-animating | |
| // requestAnimationFrame polyfill by Erik Möller. fixes from Paul Irish and Tino Zijdel | |
| // MIT license | |
| (function() { | |
| var lastTime = 0; | |
| var vendors = ['ms', 'moz', 'webkit', 'o']; |
| # These are my notes from the PragProg book on CoffeeScript of things that either | |
| # aren't in the main CS language reference or I didn't pick them up there. I wrote | |
| # them down before I forgot, and put it here for others but mainly as a reference for | |
| # myself. | |
| # assign arguments in constructor to properties of the same name: | |
| class Thingie | |
| constructor: (@name, @url) -> | |
| # is the same as: |