Skip to content

Instantly share code, notes, and snippets.

@mgvez
mgvez / jquery.abstractButton.js
Created November 20, 2012 22:05
Abstract jQuery button animation plugin
/**
A simple class to animate button rollovers with GreenSock GSAP.
Modified from its original version so as not to be loaded by require.js.
Author: Martin Vézina 2012 http://la-grange.ca
requires :
jQuery (http://jquery.com)
GSAP (http://www.greensock.com)
@trey
trey / happy_git_on_osx.md
Last active October 9, 2025 17:52
Creating a Happy Git Environment on OS X

Creating a Happy Git Environment on OS X

Step 1: Install Git

brew install git bash-completion

Configure things:

git config --global user.name "Your Name"

git config --global user.email "you@example.com"