I hereby claim:
- I am jcontonio on github.
- I am jcontonio (https://keybase.io/jcontonio) on keybase.
- I have a public key ASDn5nJgcIZkqDAUDe1-bHcUQVla3RtwaW0fW6GE_Ff7ago
To claim this, I am signing this object:
#!/bin/bash | |
PARAMS=('-m 6 -q 70 -mt -af -progress') | |
if [ $# -ne 0 ]; then | |
PARAMS=$@; | |
fi | |
cd $(pwd) |
I hereby claim:
To claim this, I am signing this object:
// Web server does this, hits an endpoint | |
// { type: 'saml', strategy: company.strategy } | |
var company = Company.findByDomain(__domain); | |
if (company) { | |
var strategy = company.strategy; | |
} |
# EditorConfig helps developers define and maintain consistent | |
# coding styles between different editors and IDEs | |
# .editorconfig | |
root = true | |
[*] | |
# Change these settings to your own preference | |
indent_style = space |
// For your user settings in Sublime Text 3 | |
{ | |
"word_separators": "./\\()\"'-:,.;<>~!@#$%^&*|+=[]{}`~?" | |
} |
/** | |
* equalheight.jquery.js | |
* Make row elements all the height of the tallest item in the row | |
* | |
* Created by Jay Contonio on 2010-09-02. | |
* Modified on 2011-02-24 to add row functionality | |
* | |
* @example for rows with two columns @link http://fcc.gov/rulemaking (whenever it launches) | |
* $('.column').equalheight(2); | |
*/ |
/** | |
* Loads an XML document and broadcasts events on success or failure | |
* @author Jay Contonio | |
* @constructor | |
* @requires jQuery @link http://jquery.com/ | |
* @param {String} xmlDocument The path to an XML document | |
*/ | |
var XML = function(xmlDocument) | |
{ | |
// Load the XML document, broadcasting an event on success of failure |
/** | |
* HFCCarousel | |
* @fileoverview Carousel script to show content based on a paging set of thumbnails | |
* @author Jay Contonio - jcontonio.com | |
* @requires @link https://gist.github.com/810260 | |
* @requires HFC Carousel Drupal module (could be easily adapted elsewhere) | |
* @see HFCSlider | |
* @example http://sabin.org/ | |
*/ |
/* | |
* HFCSlider | |
* | |
* @author Jay Contonio - jcontonio.com | |
* @constructor | |
* @example (as seen on @link:http://sabin.org/) | |
var settings = { | |
'controller': this, | |
'mask': this._carouselContainer.find('.thumbnails .mask'), |
# Run me with: $ watchr watchr.rb | |
def run(cmd) | |
puts(cmd) | |
system(cmd) | |
end | |
def run_all_tests | |
cmd = "ruby run_specs.rb -f n -c" | |
run(cmd) | |
end |