Skip to content

Instantly share code, notes, and snippets.

View mtthwhggns's full-sized avatar

Matthew Higgins mtthwhggns

View GitHub Profile
@mtthwhggns
mtthwhggns / wcag-a.md
Last active March 5, 2019 10:34
WCAG 2.1 Checklist Templates

Perceivable

Text Alternatives

  • Non-text Content

Time-based Media

  • Audio-only and Video-only (Prerecorded)
  • Captions (Prerecorded)
@mtthwhggns
mtthwhggns / a.md
Created October 24, 2017 11:34
WCAG

Perceivable

Text Alternatives

  • Non-text Content

Time-based Media

  • Audio-only and Video-only (Prerecorded)
  • Captions (Prerecorded)
@mtthwhggns
mtthwhggns / wcag-a.md
Last active February 21, 2017 17:47
WCAG Checklists

Perceivable

Text Alternatives

  • Non-text Content

Time-based Media

  • Audio-only and Video-only (Prerecorded)
  • Captions (Prerecorded)
@mtthwhggns
mtthwhggns / privacy.md
Created November 8, 2015 09:57
Privacy Policy

This app uses information about you and the events you are attending. The information is only displayed anonymously. This is a demo for a hack day, so feel free to submit information that's not accurate, and don't assume that the data shown is accurate at the moment.

Keybase proof

I hereby claim:

  • I am mtthwhggns on github.
  • I am mtthwhggns (https://keybase.io/mtthwhggns) on keybase.
  • I have a public key whose fingerprint is 5FE1 8AA3 6550 EA8B 1A22 9F1A A643 EEA6 E717 8164

To claim this, I am signing this object:

@mtthwhggns
mtthwhggns / lengths.js
Last active August 29, 2015 14:18
Bootstrap Length Field Replacement
// A hastily thrown-together tool which replaces a field, with the class 'length-field' with a field that allows the user to choose their own units (mm, cm, m, km, in, ft, yd, mi), while saving the result in mm.
// The input group relies on Bootstrap for the layout at present.
// I'd really like to return to this at some point and neaten things up a bit.
$('.length-field').each(function(){
var cur_unit = "mm";
var cur_multiplier = 1;
var original_units = {
"mm": 1,
"cm": 10,