Skip to content

Instantly share code, notes, and snippets.

View metavida's full-sized avatar

Marcos Wright-Kuhns metavida

View GitHub Profile
@metavida
metavida / gist:f2357363776a3153ecd5
Last active August 29, 2015 14:11 — forked from JulianRamirez/gist:a76e41c2691ee00f3851
Remove pgp checks (since many folks don't have it by default) and remove silly whitespace :-)
cd /tmp
curl -o git-2.2.1.tar.gz "https://www.kernel.org/pub/software/scm/git/git-2.2.1.tar.gz"
curl -o git-2.2.1.tar.sign "https://www.kernel.org/pub/software/scm/git/git-2.2.1.tar.sign"
tar zxvf git-2.2.1.tar.gz
cd git-2.2.1
./configure
@metavida
metavida / 1_zoom_title.js
Last active December 29, 2015 06:29 — forked from anonymous/zoom_tweet.js
A WIP, 5 minute intro to programming (via JavaScript)
document.getElementById('content-main-heading')
document.getElementById('content-main-heading').style.zoom //=> "1"
document.getElementById('content-main-heading').style.zoom = 2
document.getElementById('content-main-heading').style.zoom //=> "2"
var myZoomyTitle = document.getElementById('content-main-heading')
myZoomyTitle.style.zoom //=> "2"
myZoomyTitle.style.zoom = 1
jQuery(myZoomyTitle).animate({zoom: 2})