View rpi-gpio-epaper-example.js
This file contains 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()) |
View rpi-gpio-epaper-full-picture.js
This file contains 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() { |
View steps.txt
This file contains 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 |
View gist:3f50c37351bffca47814
This file contains 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
var http = require('http'), | |
cheerio = require('cheerio'), | |
express = require('express'); | |
module.exports = plugin; | |
function plugin(grunt) | |
{ | |
grunt.registerTask('dbushell_server', 'dbushell.com', function() { |
View gist:beb25b8352ed896d85d4
This file contains 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
var stylesheets = Array.prototype.slice.call(document.querySelectorAll('link[href*=".css"]')) | |
var sheets = document.styleSheets; | |
function pollSheets() { | |
var i, j, load_count = 0; | |
for (i = 0; i < stylesheets.length; i++) { | |
for (j = 0; j < sheets.length; j++) { | |
// check if stylesheet exists in document.styleSheets | |
if (sheets[j].href && sheets[j].href.indexOf( stylesheets[i].href ) > -1) { |
View gist:fec0ba804e4f06c46d4d
This file contains 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
$(document).on('click', '[data-href]', function(e) | |
{ | |
var t = e.target; | |
if (t && t.nodeType === 1 && t.nodeName.toLowerCase() === 'a') { | |
return; | |
} | |
window.location.href = $(e.currentTarget).data('href'); | |
}); |
View gist:9afdcb229f15a3bbb0a4
This file contains 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
<?php | |
add_action('ninja_forms_display_js', 'dbushell__ninja_forms_display_js'); | |
add_action('ninja_forms_display_css', 'dbushell__ninja_forms_display_css'); | |
function dbushell__ninja_forms_display_js() | |
{ | |
if (is_admin()) { | |
return; | |
} |
View gist:6369330
This file contains 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; |
View htmlizr.js
This file contains 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) |
View gist:5186122
This file contains 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) |
NewerOlder