Skip to content

Instantly share code, notes, and snippets.

View ninjasort's full-sized avatar
💻
Working remotely

Cameron ninjasort

💻
Working remotely
View GitHub Profile
{
"scripts": {
"beefy": "beefy main.js:bundle.js 3000 --live --index=./index.html --open"
}
}
@ninjasort
ninjasort / utils.js
Last active August 29, 2015 14:18
utils
/**
* Parses query string and returns object
* @param {string} string ?a=b&c=d
* @return {object} {a: b, c: d}
*/
function parseQueryString(string) {
var obj = {};
var keyValues = string.slice(string.indexOf('?') + 1).split('&');
for(var i = 0; i < keyValues.length; i++) {
var parts = keyValues[i].split('=');
@ninjasort
ninjasort / blog.js
Created February 5, 2015 01:29
Rendering React templates in a Keystone View
var keystone = require('keystone');
var async = require('async');
var _ = require('underscore');
var React = require('react');
// install node-jsx
require('node-jsx').install({extension: '.js', harmony: true});
// require React component and use React.createFactory to configure it later
var BlogPage = React.createFactory(require('../../components/blogPage'));
@ninjasort
ninjasort / mixins.scss
Created January 26, 2015 04:25
Sass Mixins
@mixin back-drop() {
position: absolute;
width: 100%;
height: 100%;
margin: auto;
top: 0;
bottom: 0;
right: 0;
left: 0;
z-index: 100;
@ninjasort
ninjasort / gulpfile.js
Last active September 1, 2019 20:43
Gulp Workflow - Sass, Uglify, Express, Copy, Bourbon, Neat, BrowserSync
var gulp = require('gulp'),
gutil = require('gulp-util'),
uglify = require('gulp-uglify'),
header = require('gulp-header'),
filter = require('gulp-filter'),
concat = require('gulp-concat'),
browserSync = require('browser-sync'),
sass = require('gulp-sass'),
bodyParser = require('body-parser'),
express = require('express'),
@ninjasort
ninjasort / jquery-hover-feedback.js
Last active August 29, 2015 14:06
jquery hover feedback fix
/*
<div class="box"></div>
When hovering over this simple box div, the class "big" will be added to the box.
It will be animated over 300ms with a easeInOutQuint easing function. The problem
occurs when you quickly mouse in and out of the element. It will continue to build up
animations in a queue. To stop the queue, we must pass a complete callback that will
fire after a single animation has been run. When it finally does end, the existing queue
of animations on the element will be stopped, and the last animation will play one last time,
as a final animation. Passing false as the first argument will keep the animation queue available
@ninjasort
ninjasort / package.json
Created September 6, 2014 17:59
Gulp Stack
{
"devDependencies": {
"gulp-sass": "latest",
"gulp-uglify": "latest",
"gulp-coffee": "latest",
"gulp-concat": "latest",
"gulp-connect": "latest",
"gulp-livereload": "latest",
"gulp-util": "latest",
"node-bourbon": "latest",
@ninjasort
ninjasort / sass-toolbox.scss
Created September 6, 2014 04:18
sass-toolbox
/*
* Sass Toolbox
* A useful collection of Sass functions and mixins
* http://zerosixthree.se/8-sass-mixins-you-must-have-in-your-toolbox/
*/
// rem font-size with pixel fallback
@function calculateRem($size) {
$remSize: $size / 16px;
@return $remSize * 1rem;
@ninjasort
ninjasort / jp.js
Created June 24, 2014 04:17
JP Directive
'use strict';
angular.module('judasPriest.directives')
.directive('judasPriest', ['$window',
function ($window) {
return {
restrict: 'C',
link: function (scope, el, attrs) {
// canvas els
@ninjasort
ninjasort / _cs-dob.html
Last active August 29, 2015 14:02
CrowdSurge Date of Birth Directive
<ng-form name="date_of_birth" class="form-inline cs-dob" ng-class="{'has-error': date_of_birth.$invalid && submitted}">
<div class="form-group">
<select name="month" class="form-control" ng-model="dob.month" ng-options="n for n in [] | range:1:12" required>
<option value="">MM</option>
</select>
</div>
<div class="form-group">
<select name="day" class="form-control" ng-model="dob.day" ng-options="n for n in [] | range:1:31" required>
<option value="">DD</option>
</select>