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()) |
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() { |
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 |
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() { |
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) { |
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'); | |
}); |
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; | |
} |
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; |
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) |
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