Skip to content

Instantly share code, notes, and snippets.

Tumbling
Hollow jumps
RO's
Power hurdle RO whip rebound 2x
RO 3x handsprings
RO 3x whips
RO 2 hand 2 whip 2 hand
2x 6 whips
RO 5-1 dbl tuck
Pass 1
Parents,
We need to get a count of how many kids are attending nationals. Please click the following link(s) corresponding to which nationals your athlete will be attending. Only athletes who are submitted through this form will be entered for nationals so please make sure to either submit the form yourself or contact the front desk as soon as possible.
2015 Level 5-7 National Championships: http://goo.gl/forms/S1Po4i8eP1
2015 Level 8-Elite National Championships: http://goo.gl/forms/YwdwQqGWRM
Thank you!
@AustinW
AustinW / Skill list
Last active August 29, 2015 14:10
Skill list for our skill chart. 70 skills
-- Forward skills --
Barani ballout
Front Full
Rudi
Rudi ballout
1 3/4 front
Barani out tuck
Barani out pike
Barani out ballout
Rudi out tuck
@AustinW
AustinW / gist:0ff962f699c293666a75
Created June 9, 2014 02:23
Change Mac address
alias generateMac="openssl rand -hex 6 | sed 's/\(..\)/\1:/g; s/.$//'"
alias currentMac="ifconfig en0 | grep ether" #b8:f6:b1:16:4d:bd
alias defaultMac="echo b8:f6:b1:16:4d:bd"
alias changeMac="sudo airport -z && sudo ifconfig en0 down && sudo ifconfig en0 up && sleep 2 && sudo ifconfig en0 ether $1"
alias newMac="sudo airport -z && changeMac $(generateMac) && currentMac"
@AustinW
AustinW / helpers.js
Created April 18, 2014 20:49
Ember Math Helper
Ember.Handlebars.helper('math', function(operand1, operator, operand2) {
var result;
switch (operator) {
case '+':
result = operand1 + operand2;
break;
case '-':
result = operand1 - operand2;
@AustinW
AustinW / README
Last active August 29, 2015 13:57
CPSC 351 - Assignment 2
CPSC 351 Assignment 2
Authors: Ryan Ott, Ben Hoelzel, Austin White (section 1)
Programming language used: C++
Execution:
$ make
$ ./receiver
--- Separate window ---
@AustinW
AustinW / geohash_test.php
Created March 21, 2013 22:29
Testing GeoHash library
<?php
class GeoHash {
private $hash;
private $latitude;
private $longitude;
private $precision;
@AustinW
AustinW / gist:5139274
Last active December 14, 2015 19:49
Geo searching
CREATE DEFINER=`root`@`localhost` FUNCTION `geo_distance_miles`(in_lat decimal(10,6), in_lon decimal(10,6), latitude decimal(10,6), longitude decimal(10,6)) RETURNS decimal(10,3)
DETERMINISTIC
RETURN
(
(
ACOS(
SIN(in_lat * PI() / 180) * SIN(latitude * PI() / 180) + COS(in_lat * PI() / 180) * COS(latitude * PI() / 180) * COS((in_lon - longitude) * PI() / 180)
) * 180 / PI()
) * 60 * 1.1515
);