Skip to content

Instantly share code, notes, and snippets.

View ofiesh's full-sized avatar

Nathanial Ofiesh ofiesh

View GitHub Profile
var $stockCount,
$leadTimeText,
$stockZero,
$availabilityVaries,
$freeShipping,
pageMessaging = {
'hideUnavailableByLocation': function(){},
'showUnavailableByLocation': function(){}
};
@ofiesh
ofiesh / git-loglive
Last active December 11, 2015 16:09 — forked from tlberglund/git-loglive
#!/bin/bash
while :
do
clear
git --no-pager log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%ci) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative --all -${1-20}
sleep ${2-10}
done