This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /*! | |
| * requires jQuery | |
| * usage: | |
| * Scroller.to({ offset: 100 }); | |
| * Scroller.to({ target: $('#main') }); | |
| * | |
| * advanced usage (with additional easing function not provided here) | |
| * Scroller.to({ target: $('#main'), delay: 500, multiplier: 1.5, easing: 'easeOutQuad' }); | |
| */ | |
| var Scroller = (function() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const fs = require('fs'); | |
| const path = require('path'); | |
| const PNG = require('pngjs').PNG; | |
| const EPD = require('rpi-gpio-epaper'); | |
| function readImage(imagePath) { | |
| return new Promise((resolve, reject) => { | |
| fs | |
| .createReadStream(imagePath) | |
| .pipe(new PNG()) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const fs = require('fs'); | |
| const PNG = require('pngjs').PNG; | |
| const EPD = require('rpi-gpio-epaper'); | |
| function readImage(imagePath) { | |
| return new Promise((resolve, reject) => { | |
| fs | |
| .createReadStream(imagePath) | |
| .pipe(new PNG()) | |
| .on('parsed', function() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // http://jasonwyatt.tumblr.com/post/10481498815/how-to-correctly-debounce-a-javascript-function | |
| function debounce(fn, debounceDuration) | |
| { | |
| debounceDuration = debounceDuration || 100; | |
| return function(){ | |
| if(!fn.debouncing){ | |
| var args = Array.prototype.slice.apply(arguments); | |
| fn.lastReturnVal = fn.apply(window, args); | |
| fn.debouncing = true; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /*! | |
| * | |
| * Copyright (c) David Bushell | @dbushell | http://dbushell.com/ | |
| * | |
| */ | |
| var fs = require("fs"), | |
| path = require("path"); | |
| module.exports = function(grunt) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /*! | |
| * | |
| * Copyright (c) David Bushell | @dbushell | http://dbushell.com/ | |
| * | |
| */ | |
| var fs = require("fs"), | |
| path = require("path"); | |
| module.exports = function(grunt) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $('input[type="date"]').each(function() | |
| { | |
| var picker = new Pikaday({ field: this }); | |
| $(this).data('pikaday', picker); | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Easy steps for cloning a live WordPress site for local development with MAMP. Am I missing anything? | |
| 1. add new MAMP server | |
| 2. download all files | |
| 3. export MySQL database | |
| 4. import SQL to MAMP via command line: | |
| /Applications/MAMP/Library/bin/mysql --host=localhost -uroot -p dbname < ~/Downloads/database.sql | |
| 5. update: wp-config.php |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // add to functions.php in your WordPress theme | |
| add_filter('upload_mimes', 'my_upload_mimes'); | |
| function my_upload_mimes($mimes = array()) | |
| { | |
| $mimes['svg'] = 'image/svg+xml'; | |
| return $mimes; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Diagonal Stripe Background with CSS and SVG | |
| */ | |
| body { | |
| padding: 0; | |
| margin: 0; | |
| } | |
| #content { |
NewerOlder