Skip to content

Instantly share code, notes, and snippets.

42021 silly gunzTarPerm extractEntry node_modules/eslint-plugin-jsx-a11y/lib/rules/href-no-hash.js
42022 silly gunzTarPerm extractEntry node_modules/eslint-plugin-jsx-a11y/lib/rules/mouse-events-have-key-events.js
42023 silly gunzTarPerm extractEntry node_modules/eslint-plugin-jsx-a11y/lib/rules/no-access-key.js
42024 silly gunzTarPerm extractEntry node_modules/eslint-plugin-jsx-a11y/lib/rules/no-marquee.js
42025 silly gunzTarPerm extractEntry node_modules/eslint-plugin-jsx-a11y/lib/rules/no-onchange.js
42026 silly gunzTarPerm extractEntry node_modules/eslint-plugin-jsx-a11y/lib/rules/no-static-element-interactions.js
42027 silly gunzTarPerm extractEntry node_modules/eslint-plugin-jsx-a11y/lib/rules/heading-has-content.js
42028 silly gunzTarPerm extractEntry node_modules/eslint-plugin-jsx-a11y/lib/rules/onclick-has-focus.js
42029 silly gunzTarPerm extractEntry node_modules/eslint-plugin-jsx-a11y/lib/rules/click-events-have-key-events.js
42030 silly gunzTarPerm extractEntry node_modules/eslint-plugin-jsx-a11y/
@jbach
jbach / brew --config
Created April 29, 2014 18:01
Error: invalid attribute: version
$ brew --config
HOMEBREW_VERSION: 0.9.5
ORIGIN: https://github.com/Homebrew/homebrew
HEAD: b12444ba6e1ac1d596a70ff4c777d9386d0791ac
HOMEBREW_PREFIX: /usr/local
HOMEBREW_CELLAR: /usr/local/Cellar
CPU: quad-core 64-bit sandybridge
OS X: 10.9.2-x86_64
Xcode: 5.1.1
CLT: 5.1.0.0.1.1396320587

Keybase proof

I hereby claim:

  • I am jbach on github.
  • I am jbach (https://keybase.io/jbach) on keybase.
  • I have a public key whose fingerprint is E560 CE24 DECA 56B8 E594 54C1 8809 73A9 D003 64EF

To claim this, I am signing this object:

// by Douglas Bonneville | bonfx.com
// http://bonfx.com/gorgeous-random-color-scheme-gradient-generator-for-photoshop
// preferences
app.preferences.rulerUnits = Units.PIXELS
// constants
var lenWidth = 500
var quad = lenWidth/2;
@jbach
jbach / uri.js
Created September 6, 2012 06:14 — forked from jlong/uri.js
URI Parsing with Javascript
var parser = document.createElement('a');
parser.href = "http://example.com:3000/pathname/?search=test#hash";
parser.protocol; // => "http:"
parser.hostname; // => "example.com"
parser.port; // => "3000"
parser.pathname; // => "/pathname/"
parser.search; // => "?search=test"
parser.hash; // => "#hash"
parser.host; // => "example.com:3000"
@jbach
jbach / getscript.js
Created September 4, 2012 17:20
getScript() - load scripts asynchronously w/375 bytes of code - e.g. `getScript(src, cb)`
// # getScript()
// more or less stolen from jquery core and adapted by paul irish
function getScript(url,success) {
var head = document.getElementsByTagName("head")[0], done = false;
var script = document.createElement("script");
script.src = url;
// Attach handlers for all browsers
script.onload = script.onreadystatechange = function(){
if (!done && (!this.readyState || this.readyState == "loaded" || this.readyState == "complete") ) {