Skip to content

Instantly share code, notes, and snippets.

View sdeering's full-sized avatar

Sam Deering sdeering

View GitHub Profile
@sdeering
sdeering / gist:8437725
Created January 15, 2014 14:55
Some .bashrc git alias commands
#-------------------------------------------------------------
# Git Alias Commands
#-------------------------------------------------------------
alias g="git status"
alias ga="git add"
alias gaa="git add ."
alias gau="git add -u"
alias gc="git commit -m"
alias gca="git commit -am"
alias gb="git branch"
@sdeering
sdeering / gist:8035033
Created December 19, 2013 06:00
Use grunt connect to make the karma test coverage directory browseable.
coverage: {
options: {
// required for output on index.html base filepath
base: __dirname + 'test/coverage/',
// required to override base to make the directory browseable
directory: __dirname + 'test/coverage/',
port: '5555',
keepalive: true
}
}
@sdeering
sdeering / tmux.conf
Created November 28, 2013 09:36
My Tmux Config Linux
# remap prefix to Control + a
set -g prefix C-a
unbind C-b
bind C-a send-prefix
# force a reload of the config file
unbind r
bind r source-file ~/.tmux.conf
# quick pane cycling
@sdeering
sdeering / gist:7459482
Created November 14, 2013 01:07
URL Params
/*
http://www.jquery4u.com/snippets/url-parameters-jquery/
*/
$.urlParam = function(name){
var results = new RegExp('[\\?&]' + name + '=([^&#]*)').exec(window.location.href);
return results[1] || 0;
}
@sdeering
sdeering / gist:7459478
Created November 14, 2013 01:06
Capture iPad device change (IOS7) tested.
//capture ipad device change (IOS7) tested.
function doOnOrientationChange()
{
// alert(window.orientation);
switch(window.orientation)
{
case 0:
case 90:
// alert('portrait');
$('html').removeClass('landscape').addClass('portrait');
@sdeering
sdeering / gist:7153714
Last active December 26, 2015 12:49
Basic Node.js Crypto Cipher Encryption Example
var cryptojs = require('crypto')
, salt = "<client app salt token>"
, keyIterations = 1000 //number of interations to generate your key
, keyLength
, key
, password
, cipher
, msg = "<what you want to encrypt>"
, encryptedMsg;