Skip to content

Instantly share code, notes, and snippets.

View dcalhoun's full-sized avatar

David Calhoun dcalhoun

View GitHub Profile
@dcalhoun
dcalhoun / spin-jquery.js
Created August 7, 2012 15:58
Spin.js jQuery Function
jQuery.fn.spin = (opts) ->
if opts != false
opts =
className: 'js-spinner'
lines: 13
length: 5
width: 3
radius: 7
speed: 1.2
trail: 50
@dcalhoun
dcalhoun / gist:5208401
Created March 20, 2013 21:02
WordPress queries shortcut for SequelPro.
UPDATE wp_options SET option_value = replace(option_value, '${1:OLD_SITE_URL}', '${2:NEW_SITE_URL}') WHERE option_name = 'home' OR option_name = 'siteurl';
UPDATE wp_posts SET guid = replace(guid, '$1','$2');
UPDATE wp_posts SET post_content = replace(post_content, '$1', '$2');
UPDATE wp_postmeta SET meta_value = replace(meta_value, '$1', '$2');
@dcalhoun
dcalhoun / cs-pattern-library.md
Last active December 18, 2015 14:28
Centresource Pattern Library List

Centresource Pattern Library Guide

Below are elements that are expected to be in a Photoshop pattern library file.

Typography

  • Headers (h1 - h5)
  • Paragraphs
  • Lead Copy
  • Unordered List
# colorize
export CLICOLOR=1
#export LSCOLORS=exfxCxDxbxegedabagacad
DIR=ex
SYM_LINK=fx
SOCKET=Cx
PIPE=Dx
EXE=cx
BLOCK_SP=eg
@dcalhoun
dcalhoun / _icon.css.scss
Last active August 29, 2015 13:56
Custom icons loop.
// Position icon background image
@mixin icon($index, $y: 0, $width: 80px) {
background-position: #{($index * -$width)} $y;
}
// WebKit
window.matchMedia('(min-width: ' + document.width + 'px)').matches // true
// Every other browser engine
window.matchMedia('(min-width: ' + document.width + 'px)').matches // false
// Somewhat outdated explanation
// http://www.sitepoint.com/rwd-scrollbars-is-chrome-better/
@dcalhoun
dcalhoun / gulpfile.js
Last active April 13, 2019 05:57
Task for using Grunticon with Gulp thanks to grunticon-lib.
var gulp = require('gulp'),
q = require('q'),
path = require('path'),
fs = require('fs'),
Grunticon = require('grunticon-lib');
gulp.task('icons', function () {
var deferred = q.defer(),
iconDir = 'app/images/icons/',
options = { enhanceSVG: true };
@dcalhoun
dcalhoun / bug.txt
Created April 30, 2015 02:37
Console log
[Error] Blocked a frame with origin "https://cdn3.doubleverify.com" from accessing a frame with origin "http://www.espnfc.com". The frame requesting access has a protocol of "https", the frame being accessed has a protocol of "http". Protocols must match.
execMultipleAds (t2tv7.html, line 21)
exec (t2tv7.html, line 23)
loadTag2Tag (t2tv7.html, line 25)
global code (t2tv7.html, line 26)
[Error] Blocked a frame with origin "https://cdn3.doubleverify.com" from accessing a frame with origin "http://tpc.googlesyndication.com". The frame requesting access has a protocol of "https", the frame being accessed has a protocol of "http". Protocols must match.
execMultipleAds (t2tv7.html, line 21)
exec (t2tv7.html, line 23)
var gulp = require('gulp'),
$ = require('gulp-load-plugins')(),
browserSync = require('browser-sync'),
runSequence = require('run-sequence'),
del = require('del');
var paths = {
app: 'app',
html: 'app/**/*.html',
styles: 'app/styles/**/*.scss',
@dcalhoun
dcalhoun / default.js
Last active October 22, 2023 12:26
Gulp organization with Gulp 4.0, Babel, and require-dir
'use strict';
import gulp from 'gulp';
import config from '../config';
import browserSync from 'browser-sync';
gulp.task('default', gulp.parallel('html', 'scripts', 'styles', 'server', () => {
gulp.watch(config.paths.html.all, gulp.parallel('html', gulp.series('html', browserSync.reload)));
gulp.watch(config.paths.scripts.all, gulp.parallel('scripts', browserSync.reload));
gulp.watch(config.paths.styles.all, gulp.parallel('styles', browserSync.reload));