├── .gitignore ├── .htaccess ├── CNAME ├── Procfile ├── README.md ├── Rakefile ├── _config.yml ├── _development_config.yml ├── _includes ├── _footer.html ├── _footer_meta.html ├── _head.html ├── _js_includes.html └── _navigation_main.html ├── _layouts ├── default.html └── post.html ├── _posts ├── 2013-12-24-vim-project-setup.html ├── 2014-04-10-vim-edit-output-from-external-command.html ├── 2014-05-14-svg-and-vim.html ├── 2014-09-12-workflow-unedited-1.html ├── 2014-09-13-vim-delete.html ├── 2014-09-21-npm-publish-workflow.html ├── 2014-09-22-designing-in-the-browser.html ├── 2014-09-24-responsive-photo-grid-under-5-minutes.html ├── 2014-09-30-hsla-and-vim.html ├── 2014-10-17-cloning-repos.html ├── 2015-01-22-download-file-under-cursor.html ├── 2015-02-05-css-omnicompletion.html ├── 2015-02-05-entering-insert-mode.html ├── 2015-03-03-type-scale-macro.html ├── 2015-03-04-how-to-quit-vim.html ├── 2015-03-05-intro-to-mnml.html ├── 2015-03-15-select-class-css.html ├── 2015-03-16-select-element-html.html ├── 2015-05-23-vim-fugitive-gbrowse.html ├── 2015-05-24-finding-the-type-scale.html ├── 2016-08-09-starting-a-project-with-tachyons.html └── 2016-08-10-building-components-with-tachyons-vol-1.html ├── _resources └── favicons.ai ├── _sass ├── _grid.scss ├── _normalize.scss ├── _queries.scss ├── _styles.scss ├── _type.scss ├── _variables.scss └── nkd.scss ├── css ├── nkd.css └── nkd.min.css ├── favicon.icns ├── favicon.ico ├── gulpfile.js ├── img └── header.jpg ├── index.html ├── package.json ├── touch-icon-ipad-precomposed.png ├── touch-icon-ipad-retina-precomposed.png ├── touch-icon-iphone-precomposed.png └── touch-icon-iphone-retina-precomposed.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/screencasts/HEAD/.gitignore -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/screencasts/HEAD/.htaccess -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | http://designbytyping.com 2 | -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/screencasts/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/screencasts/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/screencasts/HEAD/Rakefile -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/screencasts/HEAD/_config.yml -------------------------------------------------------------------------------- /_development_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/screencasts/HEAD/_development_config.yml -------------------------------------------------------------------------------- /_includes/_footer.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/_footer_meta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/screencasts/HEAD/_includes/_footer_meta.html -------------------------------------------------------------------------------- /_includes/_head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/screencasts/HEAD/_includes/_head.html -------------------------------------------------------------------------------- /_includes/_js_includes.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/_navigation_main.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/screencasts/HEAD/_layouts/default.html -------------------------------------------------------------------------------- /_layouts/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/screencasts/HEAD/_layouts/post.html -------------------------------------------------------------------------------- /_posts/2013-12-24-vim-project-setup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/screencasts/HEAD/_posts/2013-12-24-vim-project-setup.html -------------------------------------------------------------------------------- /_posts/2014-04-10-vim-edit-output-from-external-command.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/screencasts/HEAD/_posts/2014-04-10-vim-edit-output-from-external-command.html -------------------------------------------------------------------------------- /_posts/2014-05-14-svg-and-vim.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/screencasts/HEAD/_posts/2014-05-14-svg-and-vim.html -------------------------------------------------------------------------------- /_posts/2014-09-12-workflow-unedited-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/screencasts/HEAD/_posts/2014-09-12-workflow-unedited-1.html -------------------------------------------------------------------------------- /_posts/2014-09-13-vim-delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/screencasts/HEAD/_posts/2014-09-13-vim-delete.html -------------------------------------------------------------------------------- /_posts/2014-09-21-npm-publish-workflow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/screencasts/HEAD/_posts/2014-09-21-npm-publish-workflow.html -------------------------------------------------------------------------------- /_posts/2014-09-22-designing-in-the-browser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/screencasts/HEAD/_posts/2014-09-22-designing-in-the-browser.html -------------------------------------------------------------------------------- /_posts/2014-09-24-responsive-photo-grid-under-5-minutes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/screencasts/HEAD/_posts/2014-09-24-responsive-photo-grid-under-5-minutes.html -------------------------------------------------------------------------------- /_posts/2014-09-30-hsla-and-vim.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/screencasts/HEAD/_posts/2014-09-30-hsla-and-vim.html -------------------------------------------------------------------------------- /_posts/2014-10-17-cloning-repos.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/screencasts/HEAD/_posts/2014-10-17-cloning-repos.html -------------------------------------------------------------------------------- /_posts/2015-01-22-download-file-under-cursor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/screencasts/HEAD/_posts/2015-01-22-download-file-under-cursor.html -------------------------------------------------------------------------------- /_posts/2015-02-05-css-omnicompletion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/screencasts/HEAD/_posts/2015-02-05-css-omnicompletion.html -------------------------------------------------------------------------------- /_posts/2015-02-05-entering-insert-mode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/screencasts/HEAD/_posts/2015-02-05-entering-insert-mode.html -------------------------------------------------------------------------------- /_posts/2015-03-03-type-scale-macro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/screencasts/HEAD/_posts/2015-03-03-type-scale-macro.html -------------------------------------------------------------------------------- /_posts/2015-03-04-how-to-quit-vim.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/screencasts/HEAD/_posts/2015-03-04-how-to-quit-vim.html -------------------------------------------------------------------------------- /_posts/2015-03-05-intro-to-mnml.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/screencasts/HEAD/_posts/2015-03-05-intro-to-mnml.html -------------------------------------------------------------------------------- /_posts/2015-03-15-select-class-css.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/screencasts/HEAD/_posts/2015-03-15-select-class-css.html -------------------------------------------------------------------------------- /_posts/2015-03-16-select-element-html.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/screencasts/HEAD/_posts/2015-03-16-select-element-html.html -------------------------------------------------------------------------------- /_posts/2015-05-23-vim-fugitive-gbrowse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/screencasts/HEAD/_posts/2015-05-23-vim-fugitive-gbrowse.html -------------------------------------------------------------------------------- /_posts/2015-05-24-finding-the-type-scale.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/screencasts/HEAD/_posts/2015-05-24-finding-the-type-scale.html -------------------------------------------------------------------------------- /_posts/2016-08-09-starting-a-project-with-tachyons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/screencasts/HEAD/_posts/2016-08-09-starting-a-project-with-tachyons.html -------------------------------------------------------------------------------- /_posts/2016-08-10-building-components-with-tachyons-vol-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/screencasts/HEAD/_posts/2016-08-10-building-components-with-tachyons-vol-1.html -------------------------------------------------------------------------------- /_resources/favicons.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/screencasts/HEAD/_resources/favicons.ai -------------------------------------------------------------------------------- /_sass/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/screencasts/HEAD/_sass/_grid.scss -------------------------------------------------------------------------------- /_sass/_normalize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/screencasts/HEAD/_sass/_normalize.scss -------------------------------------------------------------------------------- /_sass/_queries.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/screencasts/HEAD/_sass/_queries.scss -------------------------------------------------------------------------------- /_sass/_styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/screencasts/HEAD/_sass/_styles.scss -------------------------------------------------------------------------------- /_sass/_type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/screencasts/HEAD/_sass/_type.scss -------------------------------------------------------------------------------- /_sass/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/screencasts/HEAD/_sass/_variables.scss -------------------------------------------------------------------------------- /_sass/nkd.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/screencasts/HEAD/_sass/nkd.scss -------------------------------------------------------------------------------- /css/nkd.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/screencasts/HEAD/css/nkd.css -------------------------------------------------------------------------------- /css/nkd.min.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /favicon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/screencasts/HEAD/favicon.icns -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/screencasts/HEAD/favicon.ico -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/screencasts/HEAD/gulpfile.js -------------------------------------------------------------------------------- /img/header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/screencasts/HEAD/img/header.jpg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/screencasts/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/screencasts/HEAD/package.json -------------------------------------------------------------------------------- /touch-icon-ipad-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/screencasts/HEAD/touch-icon-ipad-precomposed.png -------------------------------------------------------------------------------- /touch-icon-ipad-retina-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/screencasts/HEAD/touch-icon-ipad-retina-precomposed.png -------------------------------------------------------------------------------- /touch-icon-iphone-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/screencasts/HEAD/touch-icon-iphone-precomposed.png -------------------------------------------------------------------------------- /touch-icon-iphone-retina-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmrs/screencasts/HEAD/touch-icon-iphone-retina-precomposed.png --------------------------------------------------------------------------------