Skip to content

Instantly share code, notes, and snippets.

View ezza's full-sized avatar

Erin Francis ezza

  • Chargefox
  • Melbourne AU
View GitHub Profile
@ezza
ezza / Kona one20
Created October 19, 2009 03:29 — forked from joho/Kona one20
Frame sizes 19"
Frame tubing Kona Race Light Scandium Butted, 5" Travel
Rear Shock Fox Float RP2
Fork RockShox Recon 335 120mm
Headset TH
Crankarms Shimano XT (3)
Chainrings 44/32/22
B/B Shimano
Pedals Shimano XTR
Chain Shimano XT (3)
// ==UserScript==
// @name G+ Hangouts Autojoin
// @description Automatically click the join button when loading a hangout
// @include https://plus.google.com/hangouts/_/*
// @match https://plus.google.com/hangouts/_/*
// @version 0.1.0
// ==/UserScript==
(function(){
@ezza
ezza / git-stash-grep
Last active December 28, 2015 02:09 — forked from hartym/git-stash-grep
Add to bashrc so you can stashgrep term
# added to ~/.bashrc
stashgrep() {
for i in `git stash list --format="%gd"`; do
git stash show -p $i | grep -H --label="$i" "$1"
done
}
# usage:
# stashgrep zip
# returns
@ezza
ezza / gist:bedaae613be47fe4a6835a08a647668c
Created December 22, 2016 01:31 — forked from jacobh/gist:9884192
LIFX build status light
require 'LIFX'
require 'net/http'
require 'json'
# LIFX setup
green = LIFX::Color.green saturation: 1
red = LIFX::Color.red saturation: 1
white = LIFX::Color.white
off_color = LIFX::Color.white brightness: 0