Skip to content

Instantly share code, notes, and snippets.

View awayken's full-sized avatar

Miles Rausch awayken

View GitHub Profile
@awayken
awayken / Run web.sh
Created April 18, 2011 05:47
Launch Awayken.com
sudo /etc/init.d/httpd start
/**
* @constructor Animate
* @param {HTMLElement} el the element we want to animate
* @param {String} prop the CSS property we will be animating
* @param {Object} opts a configuration object
@awayken
awayken / Install Tomcat.sh
Created April 18, 2011 05:07
Install Awayken.com
# Tomcat 5.5.x
tar -xf apache-tomcat-5.5.33.tar.gz
mv apache-tomcat-5.5.33 /usr/tomcat
su [password]
yum -y install gcc kernel-devel kernel-headers
cd /media/[VirtualBox Disk]
sh VBoxLinuxAdditions.run
@awayken
awayken / fiddle.css
Created October 28, 2010 15:25 — forked from zalun/fiddle.css
jsFiddle Demo
body {
font-family: Helvetica, Verdana
}
p {
padding: 7px 10px;
}
#demo {
border: 1px solid #999;
}
@awayken
awayken / Skip the iPhone URL Bar.js
Created August 9, 2010 01:31
Skip the iPhone URL Bar
setTimeout(function () {
window.scrollTo(0, 1);
}, 1000);