View .csscomb-concentric-sort-order.json
{ | |
"sort-order": [ | |
"display", | |
"position", | |
"top", | |
"right", | |
"bottom", | |
"left", | |
"columns", | |
"column-gap", |
View exclude.sh
find `pwd` -type d -maxdepth 3 -name 'vendor' -o -name 'node_modules'| xargs -n 1 tmutil addexclusion |
View gulpfile.js
module.exports = function (grunt) { | |
require('matchdep').filterDev('grunt-*').forEach(grunt.loadNpmTasks); | |
var siphon = require('siphon-media-query'); | |
var fs = require('fs'); | |
var nl_css = fs.readFileSync('PATH/TO/foundation-emails.css').toString(); | |
var mq_css = siphon(nl_css); | |
// Filename for created template |
View svg_filters.svg

Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View Export each as SVG.js
// Fireworks JavaScript Command | |
// Exports current document state as SVG graphics format | |
// Install by copying to Fireworks/Configuration/Commands/ | |
// Run via the Commands menu in Fireworks | |
// Aaron Beall 2010-2011 | |
// Version | |
var VERSION = "0.6.1"; | |
// Params |
View install_gettext.sh
#!/usr/bin/sh | |
# Scipt for installing mcrypt.so extension for PHP 5.3.13 (default PHP for OS X 10.8 Mountain Lion) | |
mkdir /tmp/gettext | |
cd /tmp/gettext | |
curl --location --progress-bar http://us.php.net/get/php-5.3.13.tar.gz/from/nl.php.net/mirror | tar -zx | |
brew update |
View errors_tpl.html
<small class="error" ng-message="minlength" validate-minlength>Please enter at least {{requiredMinLength}} characters</small> |
View outline.css
html, body, div, span, applet, object, iframe, | |
h1, h2, h3, h4, h5, h6, p, blockquote, pre, | |
a, abbr, acronym, address, big, cite, code, | |
del, dfn, em, img, ins, kbd, q, s, samp, | |
small, strike, strong, sub, sup, tt, var, | |
b, u, i, center, | |
dl, dt, dd, ol, ul, li, | |
fieldset, form, label, legend, | |
table, caption, tbody, tfoot, thead, tr, th, td, | |
article, aside, canvas, details, embed, |
View karma.conf.js
(function ( module ) { | |
'use strict'; | |
module.exports = function( config ) { | |
config.set({ | |
basePath : '../', | |
urlRoot: '/base/', |
View countdown.js
/** | |
* | |
* Simple Countdown Function | |
* @param {num} duration - in Milliseconds | |
* @param {string} elemID - DOM Object ID to show the Countdown | |
* | |
*/ | |
function countdown(duration, elemID) { | |
var start = Date.now( ); |
NewerOlder