Skip to content

Instantly share code, notes, and snippets.

View kgust's full-sized avatar

Kevin Gustavson kgust

  • Vanderbilt University Medical Center
  • Nashville, Tennessee USA
View GitHub Profile
@rudelyunethical
rudelyunethical / test.feature
Created October 1, 2012 23:04
Ruby On Rails: Initial feature @cucumber
Feature: Testing Configuration
In order to have a base for my new application
As a developer
I want to test the configuration settings for this application
Scenario: Test Home Page
Given I am on the home page
Then I should see "home"
@jnejunior
jnejunior / css
Created October 1, 2012 22:46
CSS reset Eric Meyer
html, body, div, span, applet, object, iframe, table, caption,
tbody, tfoot, thead, tr, th, td, del, dfn, em, font, img, ins,
kbd, q, s, samp, small, strike, strong, sub, sup, tt, var,
h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr,
acronym, address, big, cite, code, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend {
vertical-align: baseline;
font-family: inherit;
font-weight: inherit;
font-style: inherit;
@BrettBukowski
BrettBukowski / gist:3814745
Created October 1, 2012 22:03
Quick reflection for PHP classes
/**
* Provides quick reflection, usually so that the caller can access private
* methods and properies in a single pass.
*
* If called with a single String classname, then the \ReflectionClass of
* that class is returned.
* Accepts any number of additional Strings that are names of properties or
* methods to make accessible and return. Methods should be prefixed with 'method:'.
* The return value is an array containing the mapped reflection class and the properties / methods.
*
@soundanalogous
soundanalogous / jquery.ba-tinypubsub.js
Created October 1, 2012 21:15 — forked from cowboy/HEY-YOU.md
jQuery Tiny Pub/Sub: A really, really, REALLY tiny pub/sub implementation for jQuery.
/* jQuery Tiny Pub/Sub - v0.7 - 10/27/2011
* http://benalman.com/
* Copyright (c) 2011 "Cowboy" Ben Alman; Licensed MIT, GPL */
(function($) {
var o = $({});
$.subscribe = function() {
o.on.apply(o, arguments);
@gvinter
gvinter / gist:3814470
Created October 1, 2012 21:15
Simple CSS3 Spinner
<style type="text/css" media="screen">
.bar1 {
-moz-transform:rotate(0deg) translate(0, -40px);
-webkit-transform:rotate(0deg) translate(0, -40px);opacity:0.12;
}
.bar2 {
-moz-transform:rotate(45deg) translate(0, -40px);
-webkit-transform:rotate(45deg) translate(0, -40px);opacity:0.25;
}
.bar3 {
@michalsen
michalsen / gist:8625e0736d1c9fb4a564
Last active August 29, 2015 14:05
#FVCP Sep2014
/**
* Notes and various links mentioned in
* FVCP and FVDrupalCamp 2014
* on web page speed, testing and loading
*/
Developer Tools in browser.
Load page under Network
Can save load meta data as HAR file (rt click / save as HAR with content)