Skip to content

Instantly share code, notes, and snippets.

View resource11's full-sized avatar

Kathleen McMahon resource11

View GitHub Profile
@tatianamac
tatianamac / tatiana-mac-speaker-rider.md
Last active March 24, 2024 12:22
Tatiana Mac's Speaker Rider

Speaker Rider

by Tatiana Mac

Last updated 14 April 2021

What is a speaker rider?

As speaking comes with immense privilege, I have crafted a speaker rider to set expectations and boundaries around my engagement. I am grateful to all the conference organisers who have brilliantly hosted me. I would love to continue to exercise this privilege to speak at conferences, and use this privilege to make the landscape more accessible and beneficial to tech's most historically excluded and marginalised communities.

Considerations

😫 I provide a lot of explanations for those of you who never had to consider these things. Most thoughtful conferences I've attended check most of these boxes intrinsically, particularly when conference runners are experienced speakers. They get it.

@marcysutton
marcysutton / accessible-uis.md
Last active June 25, 2018 14:32
Accessible UIs - State of A11y

How to accessibility!

Definition of done

Education

  • Awareness
  • Design and UX
@gaand
gaand / max.md
Created October 5, 2015 19:15
Max
var max = function max() {
  // grab the first number to compare against
  // this will be undefined if arguments is empty
  var maxValue = arguments[0];
  // loop through the remaining numbers
  for (var i = 1; i < arguments.length; i++) {
    // if the current element is greater
    // than the maxValue
 if (arguments[i] &gt; maxValue) {